Skip to content

Commit e85f176

Browse files
kinowmr-c
andauthored
Fix codespell issues (#1715)
Co-authored-by: Michael R. Crusoe <[email protected]>
1 parent f3a35f3 commit e85f176

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ pydocstyle_report.txt: $(PYSOURCES)
111111
diff_pydocstyle_report: pydocstyle_report.txt
112112
diff-quality --compare-branch=main --violations=pydocstyle --fail-under=100 $^
113113

114-
## codespell : check for common mispellings
114+
## codespell : check for common misspellings
115115
codespell:
116116
codespell -w $(shell git ls-files | grep -v cwltool/schemas | grep -v cwltool/jshint/ | grep -v mypy-stubs)
117117

cwltool/run_job.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def main(argv: List[str]) -> int:
4242
"stdout_path": a string (or a null) giving the path that should receive the STDOUT
4343
"stderr_path": a string (or a null) giving the path that should receive the STDERR
4444
45-
The second argument is optional, it specifes a shell script to execute prior,
45+
The second argument is optional, it specifies a shell script to execute prior,
4646
and the environment variables it sets will be combined with the environment
4747
variables from the "env" key in the JSON dictionary from the first argument.
4848
"""

setup.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ include_trailing_comma = True
1313
force_grid_wrap = 0
1414
use_parentheses = True
1515
line_length = 88
16+
17+
[codespell]
18+
ignore-words-list=ORE,ore,RO,ro

0 commit comments

Comments
 (0)