Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/cpp_linters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
- name: Install cpplint
run: pipx install cpplint
- name: Run cpplint
run: cpplint --filter=-whitespace/line_length,-whitespace/parens ./src/app/fast/*
run: cpplint --filter=-whitespace/line_length,-whitespace/parens ./src/cpp/fast/*
8 changes: 4 additions & 4 deletions .github/workflows/linters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
python-version: 3.13

- name: Install libraries
run: make python-install-editable
run: make python-install-development

- name: mypy
run: mypy ./src
run: make mypy

- name: ruff
run: ruff check .
run: make ruff

- name: flake8
run: flake8 .
run: make flake8
15 changes: 14 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,18 @@ all:
python-install:
pip3 install .

python-install-development:
pip3 install .[development]

python-install-editable:
pip3 install -e .[development]
pip3 install -e .[development]

mypy:
mypy ./src/python/

ruff:
ruff check ./src/python/

flake8:
flake8 ./src/python/

3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@ where = ./src/python
include =
app
app.*

[flake8]
max-line-length = 120
Loading