FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
feincms/pyproject.toml at main · feincms/feincms · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
feincms
/
feincms
Public
Notifications
You must be signed in to change notification settings
Fork
238
Star
1.1k
Code
Issues
24
Pull requests
1
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
feincms
/
pyproject.toml
Copy path
More file actions
More file actions
Latest commit
History
History
History
87 lines (87 loc) · 1.32 KB
Breadcrumbs
feincms
/
pyproject.toml
Copy path
File metadata and controls
87 lines (87 loc) · 1.32 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[
tool
.
ruff
]
target-version
=
"
py310
"
fix
=
true
show-fixes
=
true
lint.extend-select
= [
#
flake8-bugbear
"
B
"
,
#
flake8-comprehensions
"
C4
"
,
#
mmcabe
"
C90
"
,
#
flake8-django
"
DJ
"
,
"
E
"
,
#
pyflakes, pycodestyle
"
F
"
,
#
flake8-boolean-trap
"
FBT
"
,
#
flake8-logging-format
"
G
"
,
#
isort
"
I
"
,
#
flake8-gettext
"
INT
"
,
#
pep8-naming
"
N
"
,
#
pygrep-hooks
"
PGH
"
,
#
flake8-pie
"
PIE
"
,
#
pylint
"
PLC
"
,
"
PLE
"
,
#
unused noqa
"
RUF100
"
,
#
pyupgrade
"
UP
"
,
"
W
"
,
#
flake8-2020
"
YTT
"
,
]
lint.extend-ignore
= [
"
B018
"
,
"
B026
"
,
"
B904
"
,
#
Allow zip() without strict=
"
B905
"
,
"
BLE001
"
,
"
C901
"
,
"
DJ007
"
,
"
DJ008
"
,
"
DJ012
"
,
"
DTZ001
"
,
#
No line length errors
"
E501
"
,
"
FBT
"
,
"
G004
"
,
"
N
"
,
"
N802
"
,
"
N806
"
,
"
PGH003
"
,
"
PGH004
"
,
"
PLC0415
"
,
#
Mutable class variables are fine
"
RUF012
"
,
"
RUF059
"
,
"
S110
"
,
"
SIM102
"
,
"
SIM115
"
,
"
SIM117
"
,
"
TRY203
"
,
"
TRY401
"
,
"
UP031
"
,
]
lint.per-file-ignores."*/migrat*/*"
= [
#
Allow using PascalCase model names in migrations
"
N806
"
,
#
Ignore the fact that migration files are invalid module names
"
N999
"
,
]
lint.per-file-ignores."tests/*"
= [
#
Test helpers follow unittest's camelCase assertion naming
"
N802
"
,
]
lint.isort.combine-as-imports
=
true
lint.isort.lines-after-imports
=
2
lint.mccabe.max-complexity
=
15
Back
|
FazBrowse Home
|
New Git URL