-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[flake8] | ||
exclude = */migrations | ||
extend-ignore = | ||
# "Celery tasks should have explicit names." isn't very well implemented at this time (4/19/2020) | ||
PIE783 | ||
# False positive in flake8-pie 0.7 (2021-04-15) | ||
PIE795 | ||
PIE798 | ||
PIE803 | ||
|
||
# "Logging statement uses f-string". Not a huge resource concern for us | ||
# Same as PIE803 | ||
G004 | ||
|
||
# This is used by flake8-import-order | ||
import-order-style = pycharm | ||
application-import-names = accounts, apiv2, bookmarks, clustering, comments, donations, favorites, follow, forum, freesound, general, geotags, messages, monitor, ratings, search, similarity, sounds, support, tags, tickets, utils, wiki | ||
# This is used by flake8-requirements | ||
known-modules = | ||
max-line-length = 170 | ||
|
||
# This is used by flake8-annotations so that we don't have to explicitly type None in functions that don't use it | ||
suppress-none-returning = true |