pre-commit config (#878)

This commit is contained in:
Harkirat Singh 2020-11-24 04:31:28 +05:30 committed by GitHub
parent b88e2ab33d
commit 768267f348
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 0 deletions

30
.pre-commit-config.yml Normal file
View File

@ -0,0 +1,30 @@
# File introduces automated checks triggered on git events
# to enable run `pip install pre-commit && pre-commit install`
repos:
- repo: local
hooks:
- id: yapf
name: yapf
language: python
entry: yapf
args: [-i, -vv]
types: [python]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
- id: check-docstring-first
- id: check-json
- id: check-added-large-files
- id: check-yaml
- id: debug-statements
- id: requirements-txt-fixer
- id: check-merge-conflict
- id: double-quote-string-fixer
- id: end-of-file-fixer
- id: sort-simple-yaml
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes

9
.pre-commit-hooks.yml Normal file
View File

@ -0,0 +1,9 @@
# File configures YAPF to be used as a git hook with https://github.com/pre-commit/pre-commit
- id: yapf
name: yapf
description: "A formatter for Python files."
entry: yapf
args: [-i] #inplace
language: python
types: [python]