X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=.pre-commit-config.yaml;h=e0d09429585e1861f5901dc65c8646ac9e9690f3;hb=05b470e7f3b3e677b6667be7b48a50716d21708c;hp=b726c5a88169e47599bc45f210ad901fd95a7410;hpb=640e2b8ede2a10ba1911f8867ca9086ca455aa17;p=integration%2Ftest.git diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b726c5a881..e0d0942958 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,20 +1,34 @@ --- -- repo: git://github.com/guykisel/pre-commit-robotframework-tidy - rev: 'master' - hooks: - - id: robotframework-tidy-wrapper - additional_dependencies: ['robotframework==3.1.1'] # Pin due to tidy warning in 3.1.2 +repos: + - repo: https://github.com/pre-commit/pre-commit-hooks + rev: v2.4.0 # Use the ref you want to point at + hooks: + - id: flake8 + language_version: python3 + additional_dependencies: ['flake8~=3.5.0'] + - id: trailing-whitespace -- repo: https://github.com/jorisroovers/gitlint - rev: v0.11.0 - hooks: - - id: gitlint + - repo: https://github.com/pre-commit/mirrors-autopep8 + rev: v1.4.4 + hooks: + - id: autopep8 -- repo: local - hooks: - - id: rstcheck - name: rstcheck - entry: rstcheck - files: '\.rst' - language: python - additional_dependencies: [rstcheck, sphinx] + - repo: https://github.com/guykisel/pre-commit-robotframework-tidy + rev: 178d2190fa733d8f4d3f72fed9db6e75a9f65d35 + hooks: + - id: robotframework-tidy-wrapper + additional_dependencies: ['robotframework==3.2a1'] # Pin due to tidy warning in 3.1.2 + + - repo: https://github.com/jorisroovers/gitlint + rev: v0.11.0 + hooks: + - id: gitlint + + - repo: local + hooks: + - id: rstcheck + name: rstcheck + entry: rstcheck + files: '\.rst' + language: python + additional_dependencies: [rstcheck, sphinx]