This is a linter-scspell plugin for Linter. It is an interface to scspell.
Linter package must be installed in order to use this plugin. If Linter is not installed, please follow the instructions here.
To use a plugin, you must ensure that scspell
is installed on your
system.
Install scspell by typing the following in a terminal:
pip install git+git://github.com/myint/scspell.git
Install plugin by typing:
$ apm install linter-scspell
You can configure linter-scspell as nearly all Atom modules by editing ~/.atom/config.cson (click Open Your Config
in Atom menu) or updating the Settings for this package.
You can specify an executable path if scspell is not installed at /usr/local/bin
. Example:
'linter-scspell':
'executablePath': '/path/to/scspell'
You can also specify a path to a custom dictionary:
'linter-scspell':
'overrideDictionary': '/path/to/dictionary.txt'
(Running scspell --export-dictionary=FILE
will give you the default dictionary, which can then be tweaked to your liking.)