-
Notifications
You must be signed in to change notification settings - Fork 158
/
.pre-commit-config.yaml
38 lines (36 loc) · 1.07 KB
/
.pre-commit-config.yaml
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
33
34
35
36
37
38
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
default_language_version:
python: python3.10
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-case-conflict
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-yaml
- id: fix-encoding-pragma
args: [--pragma, '# coding: utf-8']
- id: mixed-line-ending
args: [--fix, 'no']
- id: no-commit-to-branch
args: [--branch, master]
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: local
hooks:
- id: isort
name: isort
entry: isort --atomic --jobs=10 --recursive ./python/inql/
language: system
types: [python]
# - id: pylint
# name: pylint
# entry: pylint -j2 --output-format=parseable python/inql
# language: system
# types: [python]
# require_serial: true