File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3535 python-version : " 3.10"
3636 - run : pip install mypy
3737 - run : mypy --install-types --non-interactive
38+
39+ pylint :
40+ runs-on : ubuntu-latest
41+ steps :
42+ - uses : actions/checkout@v6
43+ - uses : actions/setup-python@v6
44+ with :
45+ python-version : " 3.12"
46+ - run : pip install pylint
47+ - run : pylint --verbose --fail-under=10 --rcfile .pylintrc cmake_file_api
Original file line number Diff line number Diff line change 1+ [MESSAGES CONTROL]
2+ disable =
3+ c-extension-no-member,
4+ consider-iterating-dictionary,
5+ consider-using-f-string,
6+ invalid-name,
7+ line-too-long,
8+ logging-fstring-interpolation,
9+ missing-class-docstring,
10+ missing-function-docstring,
11+ missing-module-docstring,
12+ R0801,
13+ raise-missing-from,
14+ redefined-builtin,
15+ redefined-outer-name,
16+ too-few-public-methods,
17+ too-many-arguments,
18+ too-many-instance-attributes,
19+ too-many-locals,
20+ too-many-positional-arguments,
21+ unspecified-encoding,
22+ unused-argument,
You can’t perform that action at this time.
0 commit comments