Live video on the AT Protocol
at next 23 lines 740 B view raw
1version: "2" 2linters: 3 settings: 4 staticcheck: 5 checks: 6 - all 7 - -QF1003 # "could use tagged switch" 8 - -ST1003 # "should not use underscores in Go names" - indigo's code gen makes some 9 - -SA5008 # "unknown JSON option" doesn't care for the const stuff 10 - -ST1006 # receiver name should be a reflection of its identity; don't use generic names such as "this" or "self" (uniffi-bindgen-go uses this) 11 - -ST1005 # error strings should not be capitalized (uniffi-bindgen-go uses this) 12 disable: 13 - unused 14 exclusions: 15 generated: lax 16 presets: 17 - comments 18 - common-false-positives 19 - legacy 20 - std-error-handling 21formatters: 22 exclusions: 23 generated: lax