Skip to content

Commit

Permalink
chore(ide): update workflow and settings
Browse files Browse the repository at this point in the history
  • Loading branch information
wvenialbo committed Sep 4, 2024
1 parent 542ac57 commit 74694af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down
15 changes: 2 additions & 13 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,19 +92,7 @@
"--no-pretty",
"--check-untyped-defs",
],
"pylint.args": [
"--allow-reexport-from-package=true",
"--disable=C0114,C0115,C0116",
// C0114:missing-module-docstring
// C0115:missing-class-docstring
// C0116:missing-function-docstring
"--expected-line-ending-format=LF", //
"--generated-members=cv.*", //
"--load-plugins=pylint.extensions.magic_value", //
"--max-line-length=79", //
"--notes=FIXME,XXX,TODO,WARNING",
"--good-names=\"\"" //
],
"pylint.args": [],
// Python formatting tools settings
"autopep8.args": [
"--max-line-length=79",
Expand Down Expand Up @@ -320,6 +308,7 @@
"files.exclude": {
"**/__pycache__": true,
"**/.git": true,
"**/.github": true,
"**/.idea": true,
"**/.ipynb_checkpoints": true,
"**/.venv": true,
Expand Down

0 comments on commit 74694af

Please sign in to comment.