Ignore variable names in DBus interfaces
Closed this issue · 3 comments
danirabbit commented
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
tintou commented
Vala transforms foo_bar_baz
into FooBarBaz
as recommended by D-Bus so it's safe to lint this
tintou commented
Exceptions can be handled using [DBus (name = "CRAZYDBusMethodNaMiNG")]
danirabbit commented
Ah okay so then I'll close this