Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cspell.config.yaml - github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 911ce1d8ff19731e4367deb2dc741699f4154f3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
$schema: https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json
version: '0.2'
# Allows things like stringLength
allowCompoundWords: true

# Read files not to spell check from the git ignore
useGitignore: true

#  Language settings for C
languageSettings:
  - caseSensitive: false
    enabled: true
    languageId: c
    locale: "*"

# Add a dictionary, and the path to the word list
dictionaryDefinitions:
  - name: freertos-words
    path: '.github/.cSpellWords.txt'
    addWords: true

dictionaries:
  - freertos-words

# Paths and files to ignore
ignorePaths:
  - 'dependency'
  - 'docs'
  - 'ThirdParty'
  - 'History.txt'