-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style(lint): replace pylint with ruff (#675)
* style(lint): autofix ruff 0.6 linting errors * style(lint): autofix ruff 0.6 linting errors (unsafe) This was done with `ruff check --fix --unsafe-fixes` * style(lint): manually fix ruff 0.6 linting errors * fix(lint): silence ruff in one case * build(lint): replace pylint with ruff * ci: replace pylint with ruff * style(lint): bring some ruff config from starbase * chore(lint): fixes for updated ruff config * pr comments * build(deps): update dev and doc dependencies
- Loading branch information
Showing
31 changed files
with
193 additions
and
170 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
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
"""gunicorn configuration.""" | ||
|
||
bind = ["0.0.0.0:8000"] | ||
chdir = "/django/app" | ||
statsd_host = "localhost:9125" |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
"""gunicorn configuration.""" | ||
|
||
bind = ["0.0.0.0:8000"] | ||
chdir = "/flask/app" | ||
statsd_host = "localhost:9125" |
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.