Skip to content

Commit

Permalink
Fix codespell.
Browse files Browse the repository at this point in the history
  • Loading branch information
kinow committed Aug 18, 2022
1 parent f3a35f3 commit 416fa59
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Reporting
If you are being harassed by a member of the CWL Project, notice that someone
else is being harassed, or have any other concerns, please contact the CWL
Leadership Team at [email protected]. If person who is harassing
you is on the team, they will recuse themselves from handling your incident. We
you is on the team, they will recurse themselves from handling your incident. We
will respond as promptly as we can.

This code of conduct applies to CWL Project spaces, but if you are being
Expand Down
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 416fa59

Please sign in to comment.