Skip to content
Snippets Groups Projects
Commit 156558bf authored by nimrod's avatar nimrod
Browse files

Pre-commit updates.

Get the latest snippet from GitLab. Add a hook for check .gitlab-ci.yml,
remove duplications (prospector already runs a few other linters).
parent b25ca892
No related branches found
No related tags found
No related merge requests found
# vim:ff=unix ts=2 sw=2 ai expandtab
--- ---
repos: repos:
- repo: https://github.com/pre-commit/pre-commit-hooks - repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.3.0 rev: v3.4.0
hooks: hooks:
- id: check-added-large-files - id: check-executables-have-shebangs
- id: check-merge-conflict - id: check-merge-conflict
- id: check-toml - id: check-toml
files: Pipfile files: Pipfile
- id: detect-private-key
- id: trailing-whitespace - id: trailing-whitespace
- repo: https://github.com/Yelp/detect-secrets
rev: v1.1.0
hooks:
- id: detect-secrets
- repo: https://github.com/adrienverge/yamllint
rev: v1.26.1
hooks:
- id: yamllint
- repo: https://github.com/amperser/proselint/
rev: 0.10.2
hooks:
- id: proselint
types: [plain-text]
exclude: LICENSE
- repo: https://github.com/ambv/black - repo: https://github.com/ambv/black
rev: 20.8b1 rev: 20.8b1
hooks: hooks:
...@@ -20,61 +35,61 @@ repos: ...@@ -20,61 +35,61 @@ repos:
--line-length=79 --line-length=79
- repo: https://github.com/Lucas-C/pre-commit-hooks-markup - repo: https://github.com/Lucas-C/pre-commit-hooks-markup
rev: v1.0.0 rev: v1.0.1
hooks: hooks:
- id: rst-linter - id: rst-linter
- repo: https://github.com/myint/rstcheck.git
rev: master
hooks:
- id: rstcheck
- repo: https://github.com/PyCQA/prospector - repo: https://github.com/PyCQA/prospector
rev: 1.3.1 rev: 1.3.1
hooks: hooks:
- id: prospector - id: prospector
args: args:
- |- - |-
--max-line-length=79 --max-line-length=79
- |-
--with-tool=pyroma
- |-
--with-tool=bandit
- |-
--without-tool=pep257
- |-
--doc-warnings
- |-
--test-warnings
- |-
--full-pep8
- |- - |-
--tool=pyroma --strictness=high
- |- - |-
--tool=dodgy --no-autodetect
additional_dependencies: additional_dependencies:
- bandit
- pyroma - pyroma
- dodgy
- repo: https://gitlab.com/pycqa/flake8 - repo: https://gitlab.com/pycqa/flake8.git
rev: 3.8.4 rev: 3.9.1
hooks: hooks:
- id: flake8 - id: flake8
args: args:
- |- - |-
--max-line-length=79 --doctests
additional_dependencies: additional_dependencies:
- flake8-bugbear - flake8-bugbear
- repo: https://github.com/pre-commit/mirrors-pylint
rev: v2.6.0
hooks:
- id: pylint
args:
- |-
--disable=R0801
- repo: https://github.com/adrienverge/yamllint
rev: v1.25.0
hooks:
- id: yamllint
- repo: https://github.com/PyCQA/bandit
rev: 1.6.2
hooks:
- id: bandit
- repo: https://github.com/amperser/proselint/
rev: 0.10.2
hooks:
- id: proselint
types: [plain-text]
exclude: LICENSE|requirements
- repo: https://github.com/mgedmin/check-manifest - repo: https://github.com/mgedmin/check-manifest
rev: '0.45' rev: '0.46'
hooks: hooks:
- id: check-manifest - id: check-manifest
- repo: https://gitlab.com/devopshq/gitlab-ci-linter
rev: v1.0.3
hooks:
- id: gitlab-ci-linter
args:
- "--server"
- https://git.shore.co.il
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment