cspell.config.yaml 660 B

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