-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adopt lintrunner and enable more ruff rules
Signed-off-by: Justin Chu <[email protected]>
- Loading branch information
1 parent
c03ae0f
commit 39571d2
Showing
3 changed files
with
102 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# Configuration for lintrunner https://github.com/suo/lintrunner | ||
# You can install the dependencies and initialize with | ||
# | ||
# ```sh | ||
# pip install lintrunner lintrunner-adapters | ||
# lintrunner init | ||
# ``` | ||
# | ||
# This will install lintrunner on your system and download all the necessary | ||
# dependencies to run linters locally. | ||
# If you want to see what lintrunner init will install, run | ||
# `lintrunner init --dry-run`. | ||
# | ||
# To lint local changes: | ||
# | ||
# ```bash | ||
# lintrunner | ||
# ``` | ||
# | ||
# To lint all files: | ||
# | ||
# ```bash | ||
# lintrunner --all-files | ||
# ``` | ||
# | ||
# To format files: | ||
# | ||
# ```bash | ||
# lintrunner -a | ||
# ``` | ||
# | ||
# To read more about lintrunner, see [wiki](https://github.com/pytorch/pytorch/wiki/lintrunner). | ||
# To update an existing linting rule or create a new one, modify this file or create a | ||
# new adapter following examples in https://github.com/justinchuby/lintrunner-adapters. | ||
merge_base_with = 'main' | ||
|
||
[[linter]] | ||
code = 'RUFF' | ||
include_patterns = [ | ||
'**/*.py', | ||
'**/*.pyi', | ||
] | ||
exclude_patterns = [ | ||
'*_pb2*', | ||
'.setuptools-cmake-build/*', | ||
'docs/**', | ||
] | ||
command = [ | ||
'python', | ||
'-m', | ||
'lintrunner_adapters', | ||
'run', | ||
'ruff_linter', | ||
'--config=pyproject.toml', | ||
'@{{PATHSFILE}}' | ||
] | ||
init_command = [ | ||
'python', | ||
'-m', | ||
'lintrunner_adapters', | ||
'run', | ||
'pip_init', | ||
'--dry-run={{DRYRUN}}', | ||
'--requirement=requirements-lintrunner.txt', | ||
] | ||
is_formatter = true | ||
|
||
[[linter]] | ||
code = 'BLACK-ISORT' | ||
include_patterns = [ | ||
'**/*.py', | ||
] | ||
exclude_patterns = [ | ||
'*_pb2*', | ||
'.setuptools-cmake-build/*', | ||
'cmake/**', | ||
'docs/**', | ||
] | ||
command = [ | ||
'python', | ||
'-m', | ||
'lintrunner_adapters', | ||
'run', | ||
'black_isort_linter', | ||
'--', | ||
'@{{PATHSFILE}}' | ||
] | ||
init_command = [ | ||
'python', | ||
'-m', | ||
'lintrunner_adapters', | ||
'run', | ||
'pip_init', | ||
'--dry-run={{DRYRUN}}', | ||
'--requirement=requirements-lintrunner.txt', | ||
] | ||
is_formatter = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
lintrunner_adapters | ||
ruff==0.4.5 | ||
black==24.3.0 | ||
isort==5.13.2 |