forked from Cog-Creators/Red-Lavalink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
42 lines (37 loc) · 1.35 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
39
40
41
42
default_language_version:
python: python3.8
repos:
- repo: https://github.com/psf/black
# The `refs/tags/<tag>:refs/tags/<tag>` is needed for black's required-version to work:
# https://github.com/psf/black/issues/2493#issuecomment-1081987650
rev: 'refs/tags/23.3.0:refs/tags/23.3.0'
hooks:
- id: black
- repo: https://github.com/Pierre-Sassoulas/black-disable-checker
rev: v1.1.3
hooks:
- id: black-disable-checker
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
# all files should end with an empty line (for one, it minimizes the diffs)
- id: end-of-file-fixer
# `.gitattributes` should technically already handle this
# but autocrlf can result in local files keeping the CRLF
# which is problematic for some tools
- id: mixed-line-ending
args:
- "--fix=lf"
# Trailing whitespace is evil
- id: trailing-whitespace
# Ensure that links to code on GitHub use the permalinks
- id: check-vcs-permalinks
# Syntax validation
- id: check-ast
- id: check-toml
# can be switched to yamllint when this issue gets resolved:
# https://github.com/adrienverge/yamllint/issues/238
- id: check-yaml
# Checks for git-related issues
- id: check-case-conflict
- id: check-merge-conflict