-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
32 lines (32 loc) · 870 Bytes
/
.pre-commit-config.yaml
File metadata and controls
32 lines (32 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-added-large-files
- id: check-merge-conflict
- id: debug-statements
- repo: https://github.com/psf/black
rev: 20.8b1
hooks:
- id: black
- repo: local
hooks:
- id: isort
name: Sort imports
types: [file, python]
language: system
entry: isort
- id: pylint-src
name: PyLint on kedro_dataframe_dropin/*
types: [file, python]
language: system
files: ^kedro_dataframe_dropin
entry: pylint
- id: pylint-test
name: PyLint on tests/*
types: [file, python]
language: system
files: ^tests
entry: pylint --disable=missing-docstring,unused-variable