1---
2$schema: https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json
3version: '0.2'
4# Allows things like stringLength
5allowCompoundWords: true
6
7# Read files not to spell check from the git ignore
8useGitignore: true
9
10#  Language settings for C
11languageSettings:
12  - caseSensitive: false
13    enabled: true
14    languageId: c
15    locale: "*"
16
17# Add a dictionary, and the path to the word list
18dictionaryDefinitions:
19  - name: freertos-words
20    path: '.github/.cSpellWords.txt'
21    addWords: true
22
23dictionaries:
24  - freertos-words
25
26# Paths and files to ignore
27ignorePaths:
28  - 'dependency'
29  - 'docs'
30  - 'ThirdParty'
31  - 'History.txt'
32