blob: 26587b87a550e5227b563549210b5a1b8cc172fe [file] [log] [blame]
Peter Pentchevb91fc932023-01-19 15:27:13 +02001# SPDX-FileCopyrightText: StorPool <support@storpool.com>
2# SPDX-License-Identifier: BSD-2-Clause
3
4[tool.ruff]
5extend = "../ruff-base/pyproject.toml"
6# The list of linters from Ruff 0.0.253
7select = [
8 "A",
9 "ANN",
10 "ARG",
11 "B",
12 "BLE",
13 "C4",
14 "C90",
15 "COM",
16 "D",
17 "DJ",
18 "DTZ",
19 "E",
20 "EM",
21 "ERA",
22 "EXE",
23 "F",
24 "FBT",
25 "G",
26 "I",
27 "ICN",
28 "INP",
29 "ISC",
30 "N",
31 "NPY",
32 "PD",
33 "PGH",
34 "PIE",
35 "PL",
36 "PT",
37 "PTH",
38 "PYI",
39 "Q",
40 "RET",
41 "RSE",
42 "RUF",
43 "S",
44 "SIM",
45 "SLF",
46 "T10",
47 "T20",
48 "TCH",
49 "TID",
50 "TRY",
51 "UP",
52 "W",
53 "YTT",
54]