forked from pre-commit/pre-commit.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
29 lines (29 loc) · 853 Bytes
/
.pre-commit-config.yaml
File metadata and controls
29 lines (29 loc) · 853 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
- repo: git@github.com:pre-commit/pre-commit-hooks
sha: v0.7.0
hooks:
- id: trailing-whitespace
language_version: python3.5
- id: end-of-file-fixer
language_version: python3.5
- id: autopep8-wrapper
language_version: python3.5
- id: check-yaml
language_version: python3.5
- id: debug-statements
language_version: python3.5
- id: flake8
language_version: python3.5
- repo: https://github.com/asottile/reorder_python_imports.git
sha: v0.3.1
hooks:
- id: reorder-python-imports
language_version: python3.5
- repo: local
hooks:
- id: scss-lint
name: scss-lint
entry: scss-lint
files: '\.scss$'
language: ruby
language_version: 2.1.5
additional_dependencies: ['scss_lint:0.52.0']