-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy path.pre-commit-config.yaml
52 lines (52 loc) · 1.61 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
52
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
---
exclude: |
(?x)
^doc/sphinx/source/conf.py|
^esmvaltool/diag_scripts/extreme_events/climdex.pcic.ncdf/|
^esmvaltool/diag_scripts/cvdp/|
^esmvaltool/utils/nclcodestyle/
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-ast
- id: check-case-conflict
- id: check-merge-conflict
- id: debug-statements
- id: end-of-file-fixer
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: "v0.9.3"
hooks:
- id: ruff
args:
- "--fix"
# Do not use the configuration file but configure here so we can
# enable more rules that are not mandatory in the configuration file.
- "--select=B,E,F,I,ISC001,UP,W" # TODO: select D
- "--ignore=E501"
- id: ruff-format
# - repo: https://github.com/adrienverge/yamllint
# rev: 'v1.35.1'
# hooks:
# - id: yamllint
# - repo: local # nclcodestyle is installed alongside ESMValTool
# hooks:
# - id: nclcodestyle
# name: nclcodestyle
# entry: nclcodestyle
# language: system
# files: '\.(ncl|NCL)$'
# - repo: https://github.com/lorenzwalthert/precommit/ # Checks for R
# rev: 'v0.4.2'
# hooks:
# - id: style-files # styler
# - id: lintr
# - repo: https://github.com/codespell-project/codespell
# rev: 'v2.3.0'
# hooks:
# - id: codespell