-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
69 lines (63 loc) · 1.87 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
69 lines (63 loc) · 1.87 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
ci:
# skip any check that needs internet access
skip: [prettier, eslint, stylelint]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: end-of-file-fixer
# Version bump conflict with this hook
exclude: "^package\\.json$"
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: requirements-txt-fixer
- id: check-added-large-files
- id: check-case-conflict
- id: check-toml
- id: check-yaml
- id: debug-statements
- id: forbid-new-submodules
- id: check-builtin-literals
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.0
hooks:
- id: ruff
args: [ --fix ]
- id: ruff-format
- repo: https://github.com/PyCQA/doc8
rev: v1.1.1
hooks:
- id: doc8
args: [--max-line-length=200]
stages: [manual]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.15.0
hooks:
- id: mypy
exclude: "(^binder/jupyter_config\\.py$)|(^scripts/bump_version\\.py$)|(/setup\\.py$)"
args: ["--config-file", "pyproject.toml"]
additional_dependencies: [tornado, pytest, 'pycrdt-websocket>=0.16.4,<0.17.0']
stages: [manual]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.37.1
hooks:
- id: check-github-workflows
stages: [manual]
- repo: local
hooks:
- id: prettier
name: prettier
entry: 'jlpm run prettier'
language: system
types_or: [json, ts, tsx, javascript, jsx, css]
- id: eslint
name: eslint
entry: 'jlpm run eslint'
language: system
types_or: [ts, tsx, javascript, jsx]
- id: stylelint
name: stylelint
entry: 'jlpm run stylelint'
language: system
types: [css]