pyproject.toml 3.0 KB
Newer Older
1 2 3 4
[tool.black]
exclude = "build"
line-length = 80
skip-string-normalization = true
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

[tool.isort]
profile = "black"
line_length = 80
known_first_party = ["paddle"]
skip = ["build", "__init__.py"]
extend_skip_glob = [
    # These files do not need to be formatted,
    # see .flake8 for more details
    "python/paddle/fluid/[!t]**",
    "python/paddle/fluid/tra**",
    "python/paddle/utils/gast/**",
    "python/paddle/fluid/tests/unittests/npu/**",
    "python/paddle/fluid/tests/unittests/mlu/**",
]
20 21 22 23 24 25 26 27 28 29 30 31

[tool.ruff]
exclude = [
    "./build",
    "./python/paddle/fluid/[!t]**",
    "./python/paddle/fluid/tra**",
    "./python/paddle/utils/gast/**",
    "./python/paddle/fluid/tests/unittests/npu/**",
    "./python/paddle/fluid/tests/unittests/mlu/**",
]
target-version = "py37"
select = [
32 33 34
    # Pyflakes
    "F401",

35
    # Comprehensions
36
    "C4",
37

38 39 40
    # Pyupgrade
    "UP001",
    "UP003",
41
    "UP004",
42
    "UP005",
43
    "UP006",
44
    "UP007",
45
    "UP008",
46
    "UP009",
47
    "UP010",
48
    "UP011",
49
    "UP012",
50 51 52
    "UP013",
    "UP014",
    "UP017",
53
    "UP018",
54 55 56 57 58
    "UP019",
    "UP020",
    "UP021",
    "UP022",
    "UP023",
59
    "UP024",
60 61
    "UP025",
    "UP026",
62
    "UP027",
63
    "UP028",
64
    "UP029",
65 66 67
    # "UP030",
    # "UP031",
    # "UP032",
68
    "UP033",
69
    "UP034",
70 71 72 73 74
    "UP035",
    "UP036",

    # NumPy-specific rules
    "NPY001",
75 76

    # Bugbear
77 78
    "B002",
    "B003",
79
    "B004",
80 81 82 83
    # "B005",
    # "B006",
    # "B007",
    # "B008",
84 85
    "B009",
    "B010",
86
    "B011",
87 88 89
    "B012",
    "B013",
    "B014",
90
    "B015",
G
gouzil 已提交
91
    "B016",
92 93 94
    # "B017",
    "B018",
    "B019",
95
    "B020",
96 97 98 99 100 101 102 103 104 105 106 107
    "B021",
    "B022",
    # "B023",
    # "B024",
    "B025",
    # "B026",
    # "B027",
    # "B028",
    "B029",
    # "B030",
    "B032",
    # "B904",
108 109

    # Pylint
110
    "PLC0414",
111
    # "PLC1901",
112
    "PLC3002",
113 114 115 116 117 118 119 120
    "PLE0100",
    "PLE0101",
    # "PLE0116",
    # "PLE0117",
    # "PLE0118",
    "PLE0604",
    "PLE0605",
    "PLE1142",
121
    "PLE1205",
122 123 124 125 126 127 128 129 130 131 132 133
    "PLE1206",
    "PLE1307",
    # "PLE1310",
    # "PLE1507",
    "PLE2502",
    # "PLE2510",
    # "PLE2512",
    # "PLE2513",
    # "PLE2514",
    # "PLE2515",
    # "PLR0133",
    # "PLR0206",
134
    "PLR0402",
135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
    # "PLR0911",
    # "PLR0912",
    # "PLR0913",
    # "PLR0915",
    # "PLR1701",
    # "PLR1711",
    # "PLR1722",
    # "PLR2004",
    # "PLR5501",
    # "PLW0120",
    # "PLW0129",
    # "PLW0602",
    # "PLW0603",
    # "PLW0711",
    # "PLW1508",
    # "PLW2901",
151 152 153 154 155 156
]
unfixable = [
    "NPY001"
]

[tool.ruff.per-file-ignores]
157
# Ignore unused imports in __init__.py
158
"__init__.py" = ["F401"]
159 160 161
# Temporarily ignore test_slice.py to avoid PR-CI-CINN failure, please fix!
"python/paddle/fluid/tests/unittests/dygraph_to_static/test_slice.py" = ["UP034"]
# Ignore version check in setup.py
162
"setup.py" = ["UP036"]
163 164
# Ignore unnecessary comprehension in dy2st unittest test_loop
"python/paddle/fluid/tests/unittests/dygraph_to_static/test_loop.py" = ["C416"]
165
# Ignore unnecessary lambda in dy2st unittest test_lambda
166
"python/paddle/fluid/tests/unittests/dygraph_to_static/test_lambda.py" = ["PLC3002"]