Skip to content

Commit 1312ed0

Browse files
committed
move codespell skill to config
1 parent bb06e5e commit 1312ed0

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.codespellrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[codespell]
2-
skip = ./node_modules*,./dist/*,./package-lock.json,./lib/srfi/*,./assets/UnicodeData.txt,./assets/CaseFolding.txt,./scripts/numerals.scm
2+
skip = build,coverage,node_modules*,./dist/*,package-lock.json,./lib/srfi/*,./assets/UnicodeData.txt,./assets/CaseFolding.txt,./scripts/numerals.scm

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COMMIT=`git rev-parse HEAD`
1111
URL=`git config --get remote.origin.url`
1212
UNICODE_ALL=https://unicode.org/Public/UNIDATA/UnicodeData.txt
1313
UNICODE_FOLD=https://www.unicode.org/Public/UCD/latest/ucd/CaseFolding.txt
14-
WORK_TREE=`git worktree list | cut -f1 -d' ' | grep -v "\`pwd\`$$" | xargs -I{} basename {} | tr $$'\n' ','`
14+
WORK_TREE=`git worktree list | cut -f1 -d' ' | grep -v "\`pwd\`$$" | xargs -I{} basename {} | tr $$'\n' ',' | sed 's/,$$//'`
1515

1616
MAKE=make
1717
GIT=git
@@ -132,7 +132,7 @@ coverage:
132132
$(NPM) run coverage
133133

134134
codespell:
135-
@$(CODESPELL) -S $(WORK_TREE)"package-lock.json,node_modules,build,coverage"
135+
@$(CODESPELL) -S $(WORK_TREE)
136136

137137
lint:
138138
$(ESLINT) src/lips.js lib/js/bookmark.js

templates/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ COMMIT=`git rev-parse HEAD`
1111
URL=`git config --get remote.origin.url`
1212
UNICODE_ALL=https://unicode.org/Public/UNIDATA/UnicodeData.txt
1313
UNICODE_FOLD=https://www.unicode.org/Public/UCD/latest/ucd/CaseFolding.txt
14-
WORK_TREE=`git worktree list | cut -f1 -d' ' | grep -v "\`pwd\`$$" | xargs -I{} basename {} | tr $$'\n' ','`
14+
WORK_TREE=`git worktree list | cut -f1 -d' ' | grep -v "\`pwd\`$$" | xargs -I{} basename {} | tr $$'\n' ',' | sed 's/,$$//'`
1515

1616
MAKE=make
1717
GIT=git
@@ -132,7 +132,7 @@ coverage:
132132
$(NPM) run coverage
133133

134134
codespell:
135-
@$(CODESPELL) -S $(WORK_TREE)"package-lock.json,node_modules,build,coverage"
135+
@$(CODESPELL) -S $(WORK_TREE)
136136

137137
lint:
138138
$(ESLINT) src/lips.js lib/js/bookmark.js

0 commit comments

Comments
 (0)