AtomLinter / linter-spell

Multilingual grammar-specific spell checking for Atom and linter using Ispell compatible interface such as GNU Aspell or Hunspell.
https://atom.io/packages/linter-spell
MIT License
14 stars 1 forks source link

Disable for some file #43

Closed mariogeiger closed 7 years ago

mariogeiger commented 7 years ago

Is there a way to diable the spell check in some particular file ?

I like the spell check in markdown files but what if I dont want it for a particular file ?

yitzchak commented 7 years ago

There is not a way to do this currently. I'll add it to the todo list.

Arcanemagus commented 7 years ago

You can do this from Linter itself:

  1. Open the Command Palette
  2. Run "Linter: Toggle Active Editor

All linting will be disabled on that file until you close and re-open it (or run the command again). If you would like to permanently disable all linters for a specific file you can add it to the ignore list in Linter.

yitzchak commented 7 years ago

@Arcanemagus Awesome. Thanks for the help.