vala-lang/vala-lint

Ignore variable names in DBus interfaces

Closed this issue · 3 comments

So maybe instead of #118 what we really want is to ignore variable naming convention checks in DBus interfaces since we don't have control over someone else's API and it seems like it's pretty common for naming conventions to break the linter.

Example here: https://github.com/elementary/wingpanel-indicator-power/pull/121/files

Vala transforms foo_bar_baz into FooBarBaz as recommended by D-Bus so it's safe to lint this

Exceptions can be handled using [DBus (name = "CRAZYDBusMethodNaMiNG")]

Ah okay so then I'll close this