Skip to content

Commit 5b29f65

Browse files
vr009oleg-jukovec
authored andcommitted
Makefile: add codespell target
Added codespell target for checking typos in repo. Added codespell config file.
1 parent 3d3ec70 commit 5b29f65

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.codespellrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[codespell]
2+
skip = */testdata,./LICENSE,./datetime/timezones.go
3+
ignore-words-list = ro,gost,warmup
4+
count =
5+
quiet-level = 3

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,8 @@ fuzzing:
134134
@echo "Running fuzzing tests"
135135
go clean -testcache
136136
go test -tags "$(TAGS)" ./... -run=^Fuzz -v -p 1
137+
138+
.PHONY: codespell
139+
codespell:
140+
@echo "Running codespell"
141+
codespell

0 commit comments

Comments
 (0)