This repository has been archived by the owner on Oct 17, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix comments for keys in tables gets moved away (#23)
- Loading branch information
1 parent
ee6ab9a
commit 24ef03f
Showing
8 changed files
with
156 additions
and
112 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,14 @@ | ||
[tool.ruff] | ||
lint.select = [ | ||
"ALL", | ||
] | ||
lint.ignore = [ | ||
# We do not annotate the type of 'self'. | ||
"ANN101", | ||
] | ||
# Do not automatically remove commented out code. | ||
# We comment out code during development, and with VSCode auto-save, this code | ||
# is sometimes annoyingly removed. | ||
lint.unfixable = [ | ||
"ERA001", | ||
] |
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,12 @@ | ||
[tool.ruff.lint] | ||
select = ["ALL"] | ||
|
||
ignore = [ | ||
# We do not annotate the type of 'self'. | ||
"ANN101", | ||
] | ||
|
||
# Do not automatically remove commented out code. | ||
# We comment out code during development, and with VSCode auto-save, this code | ||
# is sometimes annoyingly removed. | ||
unfixable = ["ERA001"] |
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
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
Oops, something went wrong.