diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 47109d0..da9bfe3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -15,10 +15,11 @@ repos: rev: 5.13.2 hooks: - id: isort - - repo: https://github.com/pylint-dev/pylint - rev: v3.0.3 + - repo: https://github.com/crazybolillo/pylint + rev: 2c76860ce80c5518448abc17dd039952f68bc4d7 hooks: - id: pylint + args: [--output-format=github] - repo: https://github.com/pre-commit/mirrors-prettier rev: v3.1.0 hooks: diff --git a/pyproject.toml b/pyproject.toml index 9fd002e..298c353 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ line-length = 119 line_length = 119 [tool.pylint] -enable = ["useless-suppression"] +enable = ["all"] disable = ["import-error", "fixme"] max-line-length = 119 diff --git a/src/balba/balba.py b/src/balba/balba.py index bc402cd..b6fce15 100644 --- a/src/balba/balba.py +++ b/src/balba/balba.py @@ -33,7 +33,7 @@ def balba_run(source: Path, output: Path, dev: bool) -> int: dev, ) - echo(f"Using kicad-cli {version}") + echo(f"Using kicad-cli 5") echo(f"Looking for projects in {source}") projects: list[Project] = [] @@ -46,5 +46,6 @@ def balba_run(source: Path, output: Path, dev: bool) -> int: echo(f"Generating website in {output}") builder.build_website(projects) + builder.no_member() - return 0 + return 0 #