Skip to content

Commit e48e681

Browse files
authored
Remove use of flake8 (#144)
1 parent 37076b2 commit e48e681

File tree

3 files changed

+3
-14
lines changed

3 files changed

+3
-14
lines changed

.flake8

Lines changed: 0 additions & 2 deletions
This file was deleted.

.pre-commit-config.yaml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,12 @@ repos:
1010
- id: end-of-file-fixer
1111
- id: trailing-whitespace
1212
- id: mixed-line-ending
13-
- id: check-byte-order-marker
13+
- id: fix-byte-order-marker
1414
- id: check-executables-have-shebangs
1515
- id: check-merge-conflict
1616
- id: debug-statements
1717
language_version: python3
18-
- repo: https://github.com/pycqa/flake8.git
19-
rev: 7.1.1
20-
hooks:
21-
- id: flake8
22-
additional_dependencies:
23-
- flake8-absolute-import
24-
- flake8-black>=0.1.1
25-
- flake8-docstrings>=1.5.0
26-
- pydocstyle>=5.1.1
27-
language_version: python3
18+
2819
- repo: https://github.com/adrienverge/yamllint.git
2920
rev: v1.35.1
3021
hooks:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ commands =
6262
[testenv:lint]
6363
description = Runs all linting tasks
6464
commands =
65-
# to run a single linter you can do "pre-commit run flake8"
65+
# to run a single linter you can do "pre-commit run <hook-name>"
6666
python -m pre_commit run {posargs:--all}
6767
deps =
6868
pre-commit>=1.18.1

0 commit comments

Comments
 (0)