Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pylint configuration, fix linting issues, and update CI pipeline for Python #467

Merged
merged 51 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
45d1285
chore(pylint): add .pylintrc configuration file
kluge7 Sep 23, 2024
7727642
refactor: fix pylint warning W1510
kluge7 Sep 23, 2024
b17fd24
refactor: fix pylint warning C0116
kluge7 Sep 23, 2024
d6766cf
refactor: fix pylint warning C0411
kluge7 Sep 23, 2024
9f9cd12
refactor: fix pylint warning R1731
kluge7 Sep 23, 2024
47f38a0
refactor: fix pylint warning R1705
kluge7 Sep 23, 2024
9ba7724
refactor: fix pylint warning W1514
kluge7 Sep 23, 2024
90eacac
refactor: fix pylint warning C0200
kluge7 Sep 23, 2024
e4fb07f
refactor: fix pylint warning W0611
kluge7 Sep 23, 2024
d4e3331
refactor: fix pylint warning W0702
kluge7 Sep 23, 2024
8478f60
refactor: fix pylint warning C0121
kluge7 Sep 23, 2024
e49408b
refactor: fix pylint warning W0107
kluge7 Sep 23, 2024
f971a79
refactor: fix pylint warning R1714
kluge7 Sep 23, 2024
6953afc
refactor: fix pylint warning C0201
kluge7 Sep 23, 2024
3e24960
refactor: fix pylint warning C0303 and W0613
kluge7 Sep 23, 2024
73f7e1d
refactor: fix pylint warning W0621
kluge7 Sep 23, 2024
6349e1e
refactor: fix pylint warning R0402
kluge7 Sep 23, 2024
3296c3e
refactor: fix pylint warning W0212
kluge7 Sep 23, 2024
36bd73f
chore(pylint): update rule adjustments and formatting
kluge7 Sep 23, 2024
44f683e
style: format code with black
kluge7 Sep 23, 2024
5dae721
style: format imports with isort
kluge7 Sep 23, 2024
61a507c
ci: add isort and pylint to Python pipeline
kluge7 Sep 23, 2024
a0aa60e
Committing black-format changes
Sep 23, 2024
13c3e23
chore: add pyproject.toml for project configuration
kluge7 Sep 23, 2024
45e2919
ci: update order of pipeline jobs
kluge7 Sep 23, 2024
975ed60
ci: update pylint job and pylint rules
kluge7 Sep 23, 2024
154d2e6
ci: update which python versions pylint test
kluge7 Sep 23, 2024
fc9ebef
ci: update python pipeline to only run on pull_request
kluge7 Sep 23, 2024
002fb32
refactor: fix pylint warning C0103
kluge7 Sep 23, 2024
36699f4
chore: update linting and project configuration rules in .pylintrc an…
kluge7 Sep 23, 2024
d01b76b
Rename files to snake_case
kluge7 Sep 23, 2024
c5eff24
ci: add pipeline for grammar in comments
kluge7 Sep 24, 2024
d7cee00
refactor: fix spelling mistakes in comments
kluge7 Sep 24, 2024
399294c
ci: update job codespell_fix to continue on error
kluge7 Sep 24, 2024
369d7d6
refactor: fix spelling mistakes in comments
kluge7 Sep 24, 2024
cd305d5
ci: update pipeline codespell to only have one job
kluge7 Sep 24, 2024
377f8c1
refactor: fix variable naming issues and adjust imports as per review
kluge7 Sep 24, 2024
8497150
Committing codespell fixes
Sep 24, 2024
b01102a
refactor: spelling correction
Hallfred Sep 24, 2024
428ede3
ci: update CI file and job names for consistency
kluge7 Sep 24, 2024
f26643a
ci: update CI file for more clarity
kluge7 Sep 24, 2024
de9c3de
chore: add codespell configuration and ignore list
kluge7 Sep 24, 2024
99b8d20
chore: add type hints and return types
kluge7 Sep 25, 2024
6dc658a
ci: add mypy.ini for type checking configuration
kluge7 Sep 25, 2024
fd50092
ci: add mypy type checking workflow
kluge7 Sep 25, 2024
352e8ab
refactor: format code with black
kluge7 Sep 25, 2024
4a3e1c2
refactor: format all yaml files using prettier
kluge7 Sep 25, 2024
aad0bfc
ci: add pipeline for yaml formatting using prettier
kluge7 Sep 25, 2024
fd63bea
ci: update yaml formatting pipeline to run on pull request
kluge7 Sep 25, 2024
99c5646
refactor: remove deprecated typing
kluge7 Sep 27, 2024
bcd5cc4
refactor: fix import sorting
kluge7 Sep 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions .github/workflows/black-formatter.yml

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Run codespell

on: [pull_request]

jobs:
codespell:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- name: Install codespell
run: |
sudo apt-get update
sudo apt-get install -y codespell

- name: Run codespell to fix spelling mistakes
run: |
codespell -w .

- name: Commit codespell changes
uses: EndBug/add-and-commit@v9
with:
author_name: Codespell Robot
author_email: [email protected]
message: 'Committing codespell fixes'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69 changes: 69 additions & 0 deletions .github/workflows/python-format-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Run Python formatters and linters

on: [pull_request]

jobs:
isort_format:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- name: Run isort to sort imports
uses: isort/isort-action@v1

- name: Commit isort changes
uses: EndBug/add-and-commit@v9
with:
author_name: Isort Robot
author_email: [email protected]
message: 'Committing isort changes'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

black_format:
runs-on: ubuntu-latest
needs: isort_format

steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

- name: Check files using the black formatter
uses: rickstaa/action-black@v1
id: action_black
with:
black_args: "."

- name: Commit black-format changes
uses: EndBug/add-and-commit@v9
with:
author_name: Black Robot
author_email: [email protected]
message: 'Committing black-format changes'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

pylint_check:
runs-on: ubuntu-latest
needs: black_format
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')

Loading