File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ dependencies = [
16
16
" dash>=2.11.0" ,
17
17
" flask-caching" ,
18
18
" frozendict" ,
19
+ " mp-api" ,
20
+ " pydantic-settings" ,
19
21
" pymatgen" ,
20
22
" scikit-image" ,
21
23
" scikit-learn" ,
22
24
" shapely" ,
23
25
" webcolors" ,
24
- " pydantic-settings" ,
25
- " mp-api" ,
26
26
]
27
27
28
28
[project .optional-dependencies ]
@@ -62,6 +62,8 @@ build-backend = "setuptools.build_meta"
62
62
63
63
[tool .ruff ]
64
64
target-version = " py38"
65
+
66
+ [tool .ruff .lint ]
65
67
select = [
66
68
" B" , # flake8-bugbear
67
69
" C4" , # flake8-comprehensions
@@ -103,6 +105,7 @@ ignore = [
103
105
" D205" , # 1 blank line required between summary line and description
104
106
" E501" , # Line too long
105
107
" E731" , # Do not assign a lambda expression, use a def
108
+ " ISC001" ,
106
109
" PD901" , # pandas-df-variable-name
107
110
" PERF203" , # try-except-in-loop
108
111
" PLR" , # pylint refactor
@@ -111,7 +114,7 @@ ignore = [
111
114
pydocstyle.convention = " google"
112
115
isort.split-on-trailing-comma = false
113
116
114
- [tool .ruff .per-file-ignores ]
117
+ [tool .ruff .lint . per-file-ignores ]
115
118
"**/tests/*" = [" D" ]
116
119
"__init__.py" = [" F401" ]
117
120
# future annotations incompatible with pydantic BaseModel schemas below py 3.10
You can’t perform that action at this time.
0 commit comments