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 df05709 commit 12243c9Copy full SHA for 12243c9
scripts/spell-check-fix.cmd
@@ -0,0 +1,19 @@
1
+@ECHO OFF
2
+
3
+pip --version || pip3 --version
4
+IF %ERRORLEVEL% NEQ 0 (
5
+ cls
6
+ ECHO Please install Python from https://www.python.org/downloads/ and Pip following https://pip.pypa.io/en/stable/installation/
7
+ EXIT /B
8
+)
9
10
+cls
11
+codespell --version
12
13
+ ECHO Installing codespell
14
+ pip install codespell || pip3 install codespell
15
+) else (
16
+ ECHO Codespell already installed
17
18
19
+codespell -w -I scripts/resources/spell-check-ignore-list.txt --skip="*.svg,*.dxf,*.pdf" content
0 commit comments