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

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoren Ptak <ptaksoren@gmail.com>2023-09-06 00:24:04 +0300
committerGitHub <noreply@github.com>2023-09-06 00:24:04 +0300
commit5fb9b50da8f1e02fa0c81ee43d7961c479ef5f12 (patch)
tree9793a4eaf8b469d7854a86e4e8d4c69bd4c12043 /cspell.config.yaml
parentd6bccb1f4ca18e4e339696e780d18334e3462710 (diff)
CI-CD Updates (#768)
* Use new version of CI-CD Actions * Use cSpell spell check, and use ubuntu-20.04 for formatting check * Format and spell check all files in the portable directory * Remove the https:// from #errors and #warnings as uncrustify attempts to change it to /* * Use checkout@v3 instead of checkout@v2 on all jobs ---------
Diffstat (limited to 'cspell.config.yaml')
-rw-r--r--cspell.config.yaml31
1 files changed, 31 insertions, 0 deletions
diff --git a/cspell.config.yaml b/cspell.config.yaml
new file mode 100644
index 000000000..911ce1d8f
--- /dev/null
+++ b/cspell.config.yaml
@@ -0,0 +1,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'