File tree Expand file tree Collapse file tree 2 files changed +88
-0
lines changed
src/makeapp/app_templates/__default__ Expand file tree Collapse file tree 2 files changed +88
-0
lines changed Original file line number Diff line number Diff line change 1+ target-version = " py310"
2+ line-length = 120
3+
4+ [format ]
5+ quote-style = " single"
6+ exclude = []
7+
8+ [lint ]
9+ select = [
10+ " B" , # possible bugs
11+ " BLE" , # broad exception
12+ " C4" , # comprehensions
13+ " DTZ" , # work with datetimes
14+ " E" , # code style
15+ " ERA" , # commented code
16+ " EXE" , # check executables
17+ " F" , # misc
18+ " FA" , # future annotations
19+ " FBT" , # booleans
20+ " FURB" , # modernizing
21+ " G" , # logging format
22+ " I" , # imports
23+ " ICN" , # import conventions
24+ " INT" , # i18n
25+ " ISC" , # stringc concat
26+ " PERF" , # perfomance
27+ " PIE" , # misc
28+ " PLC" , # misc
29+ " PLE" , # misc err
30+ " PT" , # pytest
31+ " PTH" , # pathlib
32+ " PYI" , # typing
33+ " RSE" , # exc raise
34+ " RUF" , # misc
35+ " SLOT" , # slots related
36+ " TC" , # typing
37+ " UP" , # py upgrade
38+ ]
39+
40+ ignore = []
41+
42+
43+ [lint .extend-per-file-ignores ]
44+ "tests/*" = []
Original file line number Diff line number Diff line change 1+ target-version = " py310"
2+ line-length = 120
3+
4+ [format ]
5+ quote-style = " single"
6+ exclude = []
7+
8+ [lint ]
9+ select = [
10+ " B" , # possible bugs
11+ " BLE" , # broad exception
12+ " C4" , # comprehensions
13+ " DTZ" , # work with datetimes
14+ " E" , # code style
15+ " ERA" , # commented code
16+ " EXE" , # check executables
17+ " F" , # misc
18+ " FA" , # future annotations
19+ " FBT" , # booleans
20+ " FURB" , # modernizing
21+ " G" , # logging format
22+ " I" , # imports
23+ " ICN" , # import conventions
24+ " INT" , # i18n
25+ " ISC" , # stringc concat
26+ " PERF" , # perfomance
27+ " PIE" , # misc
28+ " PLC" , # misc
29+ " PLE" , # misc err
30+ " PT" , # pytest
31+ " PTH" , # pathlib
32+ " PYI" , # typing
33+ " RSE" , # exc raise
34+ " RUF" , # misc
35+ " SLOT" , # slots related
36+ " TC" , # typing
37+ " UP" , # py upgrade
38+ ]
39+
40+ ignore = []
41+
42+
43+ [lint .extend-per-file-ignores ]
44+ "tests/*" = []
You can’t perform that action at this time.
0 commit comments