Skip to content

Commit

Permalink
Fix codespell issues (#1715)
Browse files Browse the repository at this point in the history
Co-authored-by: Michael R. Crusoe <[email protected]>
  • Loading branch information
2 people authored and GlassOfWhiskey committed Sep 15, 2022
1 parent 333b582 commit db37413
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ pydocstyle_report.txt: $(PYSOURCES)
diff_pydocstyle_report: pydocstyle_report.txt
diff-quality --compare-branch=main --violations=pydocstyle --fail-under=100 $^

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

Expand Down
2 changes: 1 addition & 1 deletion cwltool/run_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def main(argv: List[str]) -> int:
"stdout_path": a string (or a null) giving the path that should receive the STDOUT
"stderr_path": a string (or a null) giving the path that should receive the STDERR
The second argument is optional, it specifes a shell script to execute prior,
The second argument is optional, it specifies a shell script to execute prior,
and the environment variables it sets will be combined with the environment
variables from the "env" key in the JSON dictionary from the first argument.
"""
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,6 @@ include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 88

[codespell]
ignore-words-list=ORE,ore,RO,ro

0 comments on commit db37413

Please sign in to comment.