forked from Ryochan7/sc-controller
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set minimum req to current actual Python 3.8 instead of 3.9, add Ruff…
… for linting and formatting Also lint/format a bit of files with the new ruleset
- Loading branch information
Showing
5 changed files
with
78 additions
and
50 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
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,16 @@ | ||
target-version = "py38" | ||
|
||
[lint.flake8-quotes] | ||
# Existing codebase was already mostly doublequoted | ||
inline-quotes = 'double' | ||
|
||
|
||
[format] | ||
# Existing codebase was already mostly doublequoted | ||
quote-style = 'double' | ||
indent-style = 'tab' | ||
|
||
[lint] | ||
select = ['ALL'] | ||
# W191 - We use tabs like sane people, so disable this atrocious PEP 8 recommendation | ||
ignore = ['W191'] |
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