summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-10-02 09:43:30 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2018-10-02 09:43:30 +0200
commitbb46cd198b93f3715da94089d42f39fc910892ff (patch)
tree3a781adf565704b6d146c17e08e9f6feda2fc753
parentb254b5c887b6ab6c675eea26b2bb9b5a48e22d80 (diff)
downloadastroid-git-bb46cd198b93f3715da94089d42f39fc910892ff.tar.gz
Add the pre-commit hook
-rw-r--r--.pre-commit-config.yaml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 00000000..9ba53749
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,13 @@
+repos:
+- repo: https://github.com/ambv/black
+ rev: 18.6b4
+ hooks:
+ - id: black
+ args: [--safe, --quiet]
+ exclude: tests/testdata
+ python_version: python3.6
+- repo: https://github.com/pre-commit/pre-commit-hooks
+ rev: v1.2.3
+ hooks:
+ - id: trailing-whitespace
+ - id: end-of-file-fixer