-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
.pre-commit-config.yaml
44 lines (44 loc) · 1.24 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
43
44
exclude: '.*\.(resx|Designer.cs|xti|tcscopex|tsproj|csproj|vsixmanifest|config|TcPOU)'
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
# Removes trailing white spaces
- id: trailing-whitespace
# Checks yaml files for parseable syntax
- id: check-yaml
# Prevents git from committing large files
- id: check-added-large-files
- repo: local
hooks:
- id: CSharpier
name: Format C# files
entry: dotnet csharpier
language: system
files: '.*\.(cs$)'
- repo: https://github.com/psf/black
rev: 22.6.0
hooks:
- id: black
- repo: https://gitlab.com/rruiter87/pre-commit-hooks
rev: v1.3.0
hooks:
- id: check-poetry
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
hooks:
- id: flake8
exclude: ^templates/
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
args: ["--profile", "black", "--filter-files"]
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.7.1
hooks:
- id: prettier
exclude_types: ["markdown", "svg"]
additional_dependencies:
- "@prettier/[email protected]"