File tree Expand file tree Collapse file tree 3 files changed +11
-402
lines changed Expand file tree Collapse file tree 3 files changed +11
-402
lines changed Original file line number Diff line number Diff line change 1
- # SPDX-FileCopyrightText: 2020 Diego Elio Pettenò
2
- # SPDX-FileCopyrightText: 2024 Justin Myers
1
+ # SPDX-FileCopyrightText: 2024 Justin Myers for Adafruit Industries
3
2
#
4
3
# SPDX-License-Identifier: Unlicense
5
4
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ target-version = "py38"
6
6
line-length = 100
7
7
8
8
[lint ]
9
+ preview = true
9
10
select = [" I" , " PL" , " UP" ]
10
11
11
12
extend-select = [
@@ -92,7 +93,15 @@ ignore = [
92
93
" PLR2004" , # magic-value-comparison
93
94
" UP030" , # format literals
94
95
" PLW1514" , # unspecified-encoding
95
-
96
+ " PLR0913" , # too-many-arguments
97
+ " PLR0915" , # too-many-statements
98
+ " PLR0917" , # too-many-positional-arguments
99
+ " PLR0904" , # too-many-public-methods
100
+ " PLR0912" , # too-many-branches
101
+ " PLR0916" , # too-many-boolean-expressions
102
+ " PLR6301" , # could-be-static no-self-use
103
+ " PLC0415" , # import outside toplevel
104
+ " PLC2701" , # private import
96
105
]
97
106
98
107
[format ]
You can’t perform that action at this time.
0 commit comments