forked from hikari-py/hikari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake8-requirements.txt
26 lines (24 loc) · 1.4 KB
/
flake8-requirements.txt
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
flake8==4.0.1
# Plugins
# Ref: https://github.com/DmytroLitvinov/awesome-flake8-extensions
flake8-bandit~=3.0.0 # runs bandit
flake8-black==0.3.3 # runs black
flake8-broken-line==0.4.0 # forbey "\" linebreaks
flake8-builtins==1.5.3 # builtin shadowing checks
flake8-coding==1.3.2 # coding magic-comment detection
flake8-comprehensions==3.10.0 # comprehension checks
flake8-deprecated==1.3 # deprecated call checks
flake8-docstrings==1.6.0 # pydocstyle support
flake8-executable==2.1.1 # shebangs
flake8-fixme==1.1.1 # "fix me" counter
flake8-functions==0.0.7 # function linting
flake8-html==0.4.2 # html output
flake8-if-statements==0.1.0 # condition linting
flake8-isort==4.1.1 # runs isort
flake8-mutable==1.2.0 # mutable default argument detection
flake8-pep3101==1.3.0 # new-style format strings only
flake8-print==5.0.0 # complain about print statements in code
flake8-printf-formatting==1.1.2 # forbey printf-style python2 string formatting
flake8-pytest-style==1.6.0 # pytest checks
flake8-raise==0.0.5 # exception raising linting
flake8-use-fstring==1.3 # format string checking