We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad6bc88 commit 31d166dCopy full SHA for 31d166d
.vscode/tasks.json
@@ -137,6 +137,9 @@
137
"options": {
138
"cwd": "${workspaceFolder}"
139
},
140
+ "windows": {
141
+ "command": ".\\scripts\\spell-check.cmd"
142
+ },
143
"group": "none",
144
"presentation": {
145
"reveal": "always",
scripts/spell-check.cmd
@@ -0,0 +1,12 @@
1
+@ECHO OFF
2
+
3
+codespell --version
4
+IF %ERRORLEVEL% NEQ 0 (
5
+ ECHO Installing codespell
6
+ pip install codespell || pip3 install codespell
7
+) else (
8
+ ECHO Codespell already installed
9
+)
10
+cls
11
+codespell -I scripts/resources/spell-check-ignore-list.txt --skip="*.svg,*.dxf" content
12
+ECHO Spell-check finished
0 commit comments