yujinakayama / atom-lint

Obsolete: Generic code linting support for Atom
https://atom.io/packages/atom-lint
MIT License
111 stars 33 forks source link

Turn off specific linter #91

Closed vorou closed 9 years ago

vorou commented 9 years ago

I'm looking for a way to turn off CSSLint. Here's a piece of my config.cson:

'atom-lint':
  'ignoredNames': [
    '*.css'
  ]
  'csslint':
    'ignoredNames': [
      '*.css'
    ]

I've added css's to both global and csslint ignore, but it still lints CSS files. What am I doing wrong? Also, is there a more straightforward way to turn off a linter? 'enabled': false, or something.

yujinakayama commented 9 years ago

I think the pattern needs to be **/*.css.

Also, is there a more straightforward way to turn off a linter?

Not yet. I'll add support for it.

vorou commented 9 years ago

it worked out, thanks!