Compare commits
No commits in common. "0bb3d86ab3ef0abfba6b3b1464ae07f10448d2ff" and "9c98287a6a94e681a77feba371786de2c12ca587" have entirely different histories.
0bb3d86ab3
...
9c98287a6a
3 changed files with 43 additions and 81 deletions
|
@ -1,64 +1,45 @@
|
||||||
# Pre-commit hooks to run tests and ensure code is cleaned.
|
# Pre-commit hooks to run tests and ensure code is cleaned.
|
||||||
# See https://pre-commit.com for more information
|
# See https://pre-commit.com for more information
|
||||||
---
|
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
- repo: https://github.com/asottile/pyupgrade
|
||||||
rev: v0.1.6
|
rev: v3.15.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: ruff
|
- id: pyupgrade
|
||||||
args: ["--fix"]
|
args: ['--keep-percent-format', '--py37-plus']
|
||||||
- repo: https://github.com/asottile/pyupgrade
|
- repo: https://github.com/psf/black
|
||||||
rev: v3.15.0
|
rev: 23.11.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: pyupgrade
|
- id: black
|
||||||
args: ["--keep-percent-format", "--py37-plus"]
|
args: ['--target-version', 'py37', '--line-length', '100']
|
||||||
- repo: https://github.com/psf/black
|
- repo: https://github.com/PyCQA/isort
|
||||||
rev: 23.11.0
|
rev: 5.12.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: black
|
- id: isort
|
||||||
args: ["--target-version", "py37", "--line-length", "100"]
|
args: ['--profile', 'black', '--line-length', '100']
|
||||||
- repo: https://github.com/PyCQA/isort
|
- repo: https://github.com/PyCQA/flake8
|
||||||
rev: 5.12.0
|
rev: 6.1.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: isort
|
- id: flake8
|
||||||
args: ["--profile", "black", "--line-length", "100"]
|
args: ['--max-line-length=100']
|
||||||
- repo: https://github.com/PyCQA/flake8
|
- repo: local
|
||||||
rev: 6.1.0
|
hooks:
|
||||||
hooks:
|
- id: pylint
|
||||||
- id: flake8
|
name: pylint
|
||||||
args: ["--max-line-length=100"]
|
entry: pylint
|
||||||
- repo: https://github.com/codespell-project/codespell
|
language: system
|
||||||
rev: v2.2.2
|
types: [python]
|
||||||
hooks:
|
require_serial: true
|
||||||
- id: codespell
|
- repo: https://github.com/PyCQA/bandit
|
||||||
args:
|
rev: 1.7.5
|
||||||
- --ignore-words-list=exten
|
hooks:
|
||||||
- --skip="./.*,*.csv,*.json,*.ini,*.subject,*.txt,*.html,*.log,*.conf"
|
- id: bandit
|
||||||
- --quiet-level=2
|
args: [--skip, "B101", --recursive, "mylib"]
|
||||||
- --ignore-regex=.*codespell-ignore$
|
#- repo: local
|
||||||
#- --write-changes # Uncomment to write changes
|
# hooks:
|
||||||
exclude_types: [csv, json]
|
# - id: pytest
|
||||||
- repo: https://github.com/adrienverge/yamllint
|
# name: pytest
|
||||||
rev: v1.32.0
|
# entry: python3 -m pytest tests
|
||||||
hooks:
|
# language: system
|
||||||
- id: yamllint
|
# types: [python]
|
||||||
ignore: .github/
|
# pass_filenames: false
|
||||||
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
||||||
rev: v2.7.1
|
|
||||||
hooks:
|
|
||||||
- id: prettier
|
|
||||||
args: ["--print-width", "100"]
|
|
||||||
- repo: local
|
|
||||||
hooks:
|
|
||||||
- id: pylint
|
|
||||||
name: pylint
|
|
||||||
entry: ./.pre-commit-pylint
|
|
||||||
language: system
|
|
||||||
types: [python]
|
|
||||||
require_serial: true
|
|
||||||
- repo: https://github.com/PyCQA/bandit
|
|
||||||
rev: 1.7.5
|
|
||||||
hooks:
|
|
||||||
- id: bandit
|
|
||||||
args: [--skip, "B101", --recursive]
|
|
||||||
minimum_pre_commit_version: 3.2.0
|
minimum_pre_commit_version: 3.2.0
|
||||||
|
|
|
@ -1,19 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
PWD=`pwd`
|
|
||||||
|
|
||||||
if [ -d "$PWD/venv" ]
|
|
||||||
then
|
|
||||||
echo "Run pylint inside venv ($PWD/venv)..."
|
|
||||||
$PWD/venv/bin/pylint "$@"
|
|
||||||
exit $?
|
|
||||||
elif [ -e "$PWD/pyproject.toml" ]
|
|
||||||
then
|
|
||||||
echo "Run pylint using poetry..."
|
|
||||||
poetry run pylint "$@"
|
|
||||||
exit $?
|
|
||||||
else
|
|
||||||
echo "Run pylint at system scope..."
|
|
||||||
pylint "$@"
|
|
||||||
exit $?
|
|
||||||
fi
|
|
|
@ -1,7 +1,7 @@
|
||||||
from debian:stable-slim
|
from debian:stable-slim
|
||||||
|
|
||||||
RUN apt-get update && apt-get upgrade -y && apt-get install --no-install-recommends -y python3-all python3-dev python3-pip python3-venv build-essential pylint git && apt-get clean && rm -fr rm -rf /var/lib/apt/lists/*
|
RUN apt-get update && apt-get install --no-install-recommends -y python3-all python3-dev python3-pip python3-venv build-essential pylint git && apt-get clean && rm -fr rm -rf /var/lib/apt/lists/*
|
||||||
RUN pip install pre-commit --break-system-packages
|
RUN pip install pre-commit --break-system-packages
|
||||||
RUN mkdir /tmp/src
|
RUN mkdir /tmp/src
|
||||||
COPY .pre-commit-config.yaml .pre-commit-pylint fake_python_module /tmp/src/
|
COPY .pre-commit-config.yaml fake_python_module /tmp/src/
|
||||||
RUN cd /tmp/src && git init && git add * && pre-commit autoupdate && pre-commit run --all-files && rm -fr /tmp/src
|
RUN cd /tmp/src && git init && git add * && pre-commit autoupdate && pre-commit run --all-files && rm -fr /tmp/src
|
||||||
|
|
Loading…
Reference in a new issue