-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
51 lines (51 loc) · 1.51 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
45
46
47
48
49
50
51
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
hooks:
- id: check-added-large-files
args:
- "--maxkb=5000"
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-json
- id: check-merge-conflict
- id: check-shebang-scripts-are-executable
- id: check-symlinks
- id: check-yaml
exclude: ^deployment
- id: detect-private-key
- id: end-of-file-fixer
- id: mixed-line-ending
- id: trailing-whitespace
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.6.2
hooks:
- id: prettier
exclude: (^deployment/)|(package-lock\.json$)
additional_dependencies:
- "@trivago/prettier-plugin-sort-imports@^4.3.0"
- repo: local
hooks:
- id: typescript
name: typescript
entry: |
bash -c '
npm install -g typescript &&
tsc --noEmit --outDir /tmp/tsc-output
'
language: system
pass_filenames: false
exclude: node_modules
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.3.0
hooks:
- id: eslint
types: [file]
files: ^.*\.[jt]sx?$ # *.js, *.jsx, *.ts and *.tsx
additional_dependencies: