forked from UNSW-CEEM/NEMSEER
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
53 lines (49 loc) · 1.66 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
53
# Config file for pre-commit, a framework for managing pre-commits
# 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.5.0
hooks:
- id: trailing-whitespace # trims trailing whitespace
- id: end-of-file-fixer # files end with one newline
- id: check-toml # checks toml files
- id: check-yaml # checks yaml files
# Runs isort, which sorts imports
# Note that it is configured with black-compatible settings
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
args: ["--profile", "black", "--filter-files"]
# Runs black
- repo: https://github.com/psf/black
rev: 23.12.1
hooks:
- id: black
# It is recommended to specify the latest version of Python
# supported by your project here, or alternatively use
# pre-commit's default_language_version, see
# https://pre-commit.com/#top_level-default_language_version
language_version: python3.10
# Runs flake8
- repo: https://github.com/pycqa/flake8
rev: 7.0.0
hooks:
- id: flake8
# Runs mypy
# Uses local environment as opposed to mypy-mirror to enable access to dependencies
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
hooks:
- id: mypy
# name: mypy
# language: system
# entry: poetry run mypy
# excludes checking files in docs
exclude: ^(docs/)
types: [python]
additional_dependencies:
- attrs
- types-python-dateutil
- types-requests