Commit a7622e0 1 parent 0f4847b commit a7622e0 Copy full SHA for a7622e0
File tree 9 files changed +304
-266
lines changed
9 files changed +304
-266
lines changed Original file line number Diff line number Diff line change @@ -104,8 +104,5 @@ venv.bak/
104
104
# mypy
105
105
.mypy_cache /
106
106
107
- # tests and tokens
108
- /tests
109
-
110
107
# Tokens
111
108
. * -token
Original file line number Diff line number Diff line change 1
- # See https://pre-commit.com for more information
2
- # See https://pre-commit.com/hooks.html for more hooks
3
- repos :
4
- - repo : https://github.com/pre-commit/pre-commit-hooks
5
- rev : v3.2.0
6
- hooks :
7
- - id : trailing-whitespace
8
- - id : end-of-file-fixer
9
- - id : check-yaml
10
- - repo : https://github.com/psf/black
11
- rev : 19.3b0
12
- hooks :
13
- - id : black
1
+ # See https://pre-commit.com for more information
2
+ # See https://pre-commit.com/hooks.html for more hooks
3
+ repos :
4
+ - repo : https://github.com/pre-commit/pre-commit-hooks
5
+ rev : v3.2.0
6
+ hooks :
7
+ - id : trailing-whitespace
8
+ - id : end-of-file-fixer
9
+ - id : check-yaml
10
+ - repo : https://github.com/myint/autoflake
11
+ rev : v1.4
12
+ hooks :
13
+ - id : autoflake
14
+ args :
15
+ - --in-place
16
+ - --remove-unused-variables
17
+ - --remove-all-unused-imports
18
+ - --expand-star-imports
19
+ - repo : https://github.com/timothycrosley/isort
20
+ rev : 5.6.4
21
+ hooks :
22
+ - id : isort
23
+ args : ["--settings-path=tools/.isort.cfg"]
24
+ - repo : https://github.com/psf/black
25
+ rev : 19.3b0
26
+ hooks :
27
+ - id : black
28
+ args : ["--line-length=80"]
29
+ - repo : https://github.com/pre-commit/mirrors-mypy
30
+ rev : v0.812
31
+ hooks :
32
+ - id : mypy
33
+ args : ["--config-file=tools/.mypy.ini"]
Original file line number Diff line number Diff line change 1
- from .session import Oauth2Session
You can’t perform that action at this time.
0 commit comments