diff options
author | Pete Higgins <pete@peterhiggins.org> | 2020-04-30 13:08:50 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-05-18 20:29:09 -0700 |
commit | 8d3acbf9e7cbb454e6b05c357ecaf3c40d9be055 (patch) | |
tree | c486d20b7d27bc31fd3c8342c9d52e0cf87a1807 /cspell.json | |
parent | a3908d26aa86e0d04bac2a87438e484311f1d763 (diff) | |
download | chef-8d3acbf9e7cbb454e6b05c357ecaf3c40d9be055.tar.gz |
Add skeleton cspell config.
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
Diffstat (limited to 'cspell.json')
-rw-r--r-- | cspell.json | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/cspell.json b/cspell.json new file mode 100644 index 0000000000..0f6d5ae18c --- /dev/null +++ b/cspell.json @@ -0,0 +1,18 @@ +// cSpell Settings +{ + // Version of the setting file. Always 0.1 + "version": "0.1", + // language - current active spelling language + "language": "en", + // words - list of words to be always considered correct + "words": [ + ], + // flagWords - list of words to be always considered incorrect + // This is useful for offensive words and common spelling errors. + // For example "hte" should be "the" + "flagWords": [ + "hte" + ], + "ignorePaths": [ + ] +} |