Skip to content

Commit bf53e46

Browse files
committed
Formatting for pyproject.toml
1 parent 99561a3 commit bf53e46

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

pyproject.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -175,32 +175,32 @@ exclude = [
175175

176176
[tool.ruff.lint]
177177
select = [
178-
"A", # Flake8 Built ins
179-
"E", # Error (Flake8)
180-
"F", # Pyflakes (Flake8)
181-
"W", # Warning (Flake8)
182-
"I", # isort (import sorting)
183-
"N", # Naming conventions (Pylint, etc.)
178+
"A", # Flake8 Built ins
179+
"E", # Error (Flake8)
180+
"F", # Pyflakes (Flake8)
181+
"W", # Warning (Flake8)
182+
"I", # isort (import sorting)
183+
"N", # Naming conventions (Pylint, etc.)
184184
"C90", # mccabe complexity (replaces flake8 --max-complexity and mccabe)
185-
"B", # Bugbear (common linting issues)
186-
"UP", # pyupgrade (suggests modern Python syntax)
185+
"B", # Bugbear (common linting issues)
186+
"UP", # pyupgrade (suggests modern Python syntax)
187187
"PLR", # Pylint refactor
188188
"PLE", # Pylint error (specific Pylint error rules)
189189
"PLW", # Pylint warning (specific Pylint warning rules)
190190
"PLC", # Pylint convention (specific Pylint convention rules)
191-
"R", # Refactor (Pylint refactoring suggestions)
191+
"R", # Refactor (Pylint refactoring suggestions)
192192
"TID", # TO DO comments
193-
"FAST", # FastAPI
194-
"C4", # List and dict comprehensions
195-
"DJ", # Django
196-
"PIE", # Returns and unecessary returns
197-
"Q", # Double quotes
193+
"FAST",# FastAPI
194+
"C4", # List and dict comprehensions
195+
"DJ", # Django
196+
"PIE", # Returns and unnecessary returns
197+
"Q", # Double quotes
198198
"RET", # Fix return statements
199199
"PTH", # Enforce pathlib
200200
"ARG", # Unused argument
201201
"FLY", # Flynt
202202
"NPY", # Numpy specific
203-
"PD", # Pandas specific
203+
"PD", # Pandas specific
204204
"RUF", # Ruff specific
205205
]
206206

0 commit comments

Comments
 (0)