@@ -29,10 +29,10 @@ EXTRAS=
29
29
PYSOURCES =$(filter-out $(MODULE ) /parser/cwl_v% ,$(shell find $(MODULE ) -name "* .py") ) \
30
30
$(wildcard tests/* .py) create_cwl_from_objects.py load_cwl_by_path.py \
31
31
${MODULE}/parser/cwl_v1_?_utils.py docs/conf.py
32
- DEVPKGS =build diff_cover pylint pep257 pydocstyle 'tox<4' tox-pyenv \
32
+ DEVPKGS =build diff_cover pylint pep257 ruff 'tox<4' tox-pyenv \
33
33
wheel autoflake pyupgrade bandit auto-walrus \
34
34
-rlint-requirements.txt -rtest-requirements.txt -rmypy-requirements.txt
35
- DEBDEVPKGS =pep8 python-autopep8 pylint python-coverage pydocstyle sloccount \
35
+ DEBDEVPKGS =pep8 python-autopep8 pylint python-coverage ruff sloccount \
36
36
python-flake8 python-mock shellcheck
37
37
VERSION =v$(shell echo $$(tail -n 1 cwl_utils/__meta__.py | awk '{print $$3}' ) )
38
38
mkfile_dir := $(dir $(abspath $(lastword $(MAKEFILE_LIST ) ) ) )
@@ -45,8 +45,8 @@ all: dev
45
45
help : Makefile
46
46
@sed -n ' s/^##//p' $<
47
47
48
- # # cleanup : shortcut for "make sort_imports format flake8 diff_pydocstyle_report "
49
- cleanup : sort_imports format flake8 diff_pydocstyle_report
48
+ # # cleanup : shortcut for "make sort_imports format flake8 pydocstyle "
49
+ cleanup : sort_imports format flake8 pydocstyle
50
50
51
51
# # install-dep : install most of the development dependencies via pip
52
52
install-dep : install-dependencies
@@ -95,14 +95,7 @@ remove_unused_imports: $(PYSOURCES)
95
95
pep257 : pydocstyle
96
96
# # pydocstyle : check Python docstring style
97
97
pydocstyle : $(PYSOURCES )
98
- pydocstyle --add-ignore=D100,D101,D102,D103 $^ || true
99
-
100
- pydocstyle_report.txt : $(PYSOURCES )
101
- pydocstyle $^ > $@ 2>&1 || true
102
-
103
- # # diff_pydocstyle_report : check Python docstring style for changed files only
104
- diff_pydocstyle_report : pydocstyle_report.txt
105
- diff-quality --compare-branch=main --violations=pydocstyle --fail-under=100 $^
98
+ ruff check $^
106
99
107
100
# # codespell : check for common misspellings
108
101
codespell :
0 commit comments