Closed danreeves closed 7 years ago
afaict. It's not in the docs, but the NodeLinter isn't 🤷♀️
I got it from looking at SublimeLinter-contrib-xo: https://github.com/sindresorhus/SublimeLinter-contrib-xo/pull/6
Cool wasn't aware of this part of the API
FWIW the CI is failing because PEP rules D203 and D211 conflict; you'll have to disabled one.
Thanks @danreeves! Tagged as 3.1.2 should get picked up soon :)
Also invited as collaborator! 🎉
Standard not lint after upgrade to 3.1.2
Because of disable_if_not_dependency: true
, linter will be disabled all time, even cannot enable with Toggle Linter
It is need to add disable_if_not_dependency: false
to user setting or project setting to re-enable the linter.
only project with package.json
which dependent standard
will enable linter.
Shouldn't disable_if_not_dependency
be false
by default?
I prob missed it when my packages auto updated. Was mostly curious as to true being default. I like that it uses my local if I have one but seems odd imo to have the default to ignore global.
Maybe we should flip the default setting for disable_if_not_dependency
if this is tripping people up?
Yeah flipping the default may be less disruptive. It's your call @danreeves
Flip it please. This caught me out today!
I made a new release today flipping the default to False. Sorry for any trouble!
Is this all thats needed?