Skip to content

Commit b5ff640

Browse files
committed
Add I rules
1 parent dd8b17b commit b5ff640

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

pyproject.toml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ tqdm = "^4.66.5"
3030
pygit2 = "^1.15.1"
3131
#We are pinned to this version of tyro because 0.9.23 and above
3232
#have an issue when parsing an extremely large number of files
33-
#(in our testing great than 130) when using the mode:selected
33+
#(in our testing great than 130) when using the mode:selected
3434
#--mode.files command.
3535
tyro = "^0.9.2,<0.9.23"
3636
gitpython = "^3.1.43"
@@ -47,32 +47,32 @@ build-backend = "poetry.core.masonry.api"
4747
[tool.ruff]
4848
# Exclude a variety of commonly ignored directories.
4949
exclude = [
50-
".bzr",
51-
".direnv",
52-
".eggs",
53-
".git",
54-
".git-rewrite",
55-
".hg",
56-
".ipynb_checkpoints",
57-
".mypy_cache",
58-
".nox",
59-
".pants.d",
60-
".pyenv",
61-
".pytest_cache",
62-
".pytype",
63-
".ruff_cache",
64-
".svn",
65-
".tox",
66-
".venv",
67-
".vscode",
68-
"__pypackages__",
69-
"_build",
70-
"buck-out",
71-
"build",
72-
"dist",
73-
"node_modules",
74-
"site-packages",
75-
"venv",
50+
".bzr",
51+
".direnv",
52+
".eggs",
53+
".git",
54+
".git-rewrite",
55+
".hg",
56+
".ipynb_checkpoints",
57+
".mypy_cache",
58+
".nox",
59+
".pants.d",
60+
".pyenv",
61+
".pytest_cache",
62+
".pytype",
63+
".ruff_cache",
64+
".svn",
65+
".tox",
66+
".venv",
67+
".vscode",
68+
"__pypackages__",
69+
"_build",
70+
"buck-out",
71+
"build",
72+
"dist",
73+
"node_modules",
74+
"site-packages",
75+
"venv",
7676
]
7777

7878
# Same as Black.
@@ -85,7 +85,7 @@ target-version = "py311"
8585
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
8686
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
8787
# McCabe complexity (`C901`) by default.
88-
select = ["E4", "E7", "E9", "F"]
88+
select = ["E4", "E7", "E9", "F", "I"]
8989
ignore = []
9090

9191
# Allow fix for all enabled rules (when `--fix`) is provided.

0 commit comments

Comments
 (0)