@@ -32,22 +32,22 @@ exclude = [
32
32
line-length = 88
33
33
indent-width = 4
34
34
35
- # Assume Python 3.12
36
- target-version = " py312 "
35
+ # Assume Python 3.13
36
+ target-version = " py313 "
37
37
38
38
[lint ]
39
39
# https://docs.astral.sh/ruff/rules/
40
40
select = [
41
41
" ASYNC" , # flake8-async - async checks
42
- " C4" , # flake8-comprehensions - list/set/dict/generator comprehensions
43
- " E" , # pycodestyle - error rules
44
- " F" , # pyflakes - general Python errors, undefined names
45
- " I" , # isort - import sorting
46
- " PERF" , # perflint - performance anti-pattern rules
47
- " PLC" , # pylint - convention rules
48
- " PLE" , # pylint - error rules
49
- " T20" , # flake8-print - print statements
50
- " W" , # pycodestyle - warning rules
42
+ " C4" , # flake8-comprehensions - list/set/dict/generator comprehensions
43
+ " E" , # pycodestyle - error rules
44
+ " F" , # pyflakes - general Python errors, undefined names
45
+ " I" , # isort - import sorting
46
+ " PERF" , # perflint - performance anti-pattern rules
47
+ " PLC" , # pylint - convention rules
48
+ " PLE" , # pylint - error rules
49
+ " T20" , # flake8-print - print statements
50
+ " W" , # pycodestyle - warning rules
51
51
]
52
52
ignore = [" F405" , " F403" , " E501" , " E712" , " C408" ]
53
53
@@ -71,4 +71,4 @@ indent-style = "space"
71
71
skip-magic-trailing-comma = false
72
72
73
73
# Like Black, automatically detect the appropriate line ending.
74
- line-ending = " auto"
74
+ line-ending = " auto"
0 commit comments