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
3 changes: 3 additions & 0 deletions .ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ select = [
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]

# Ignore B008 for Typer - typer.Option in argument defaults is standard Typer practice
# Ignore E501 - long lines in help text are acceptable
ignore = ["B008", "E501"]

# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,8 @@ build:
clean:
rm -rf dist

local-install:
pip install ./dist/obiba_opal-*.tar.gz
local-install: clean build
pip install ./dist/obiba_opal-*.tar.gz

local-install-force: clean build
pip install ./dist/obiba_opal-*.tar.gz --break-system-packages
Loading
Loading