File tree 5 files changed +9
-10
lines changed
5 files changed +9
-10
lines changed Original file line number Diff line number Diff line change
1
+ [flake8]
2
+ import-order-style = pep8
3
+ application-import-names = yamllint
4
+ ignore = W503,W504
Original file line number Diff line number Diff line change 21
21
- name : Set up Python
22
22
uses : actions/setup-python@v5
23
23
- run :
24
- pip install ruff sphinx rstcheck[sphinx] doc8
24
+ pip install flake8 flake8-import-order sphinx rstcheck[sphinx] doc8
25
25
- run : pip install .
26
- - run : ruff .
26
+ - run : flake8 .
27
27
- run : doc8 $(git ls-files '*.rst')
28
28
- run : rstcheck --ignore-directives automodule $(git ls-files '*.rst')
29
29
- run : yamllint --strict $(git ls-files '*.yaml' '*.yml')
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ Pull Request Process
23
23
24
24
.. code :: bash
25
25
26
- ruff .
26
+ flake8 .
27
27
28
28
If you added/modified documentation:
29
29
Original file line number Diff line number Diff line change @@ -26,8 +26,9 @@ dynamic = ["version"]
26
26
[project .optional-dependencies ]
27
27
dev = [
28
28
" doc8" ,
29
+ " flake8" ,
30
+ " flake8-import-order" ,
29
31
" rstcheck[sphinx]" ,
30
- " ruff" ,
31
32
" sphinx" ,
32
33
]
33
34
You can’t perform that action at this time.
0 commit comments