-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/SK-736 | Ruff linter #552
Conversation
45ffe79
to
448e3e7
Compare
.devcontainer/devcontainer.json.tpl
Outdated
@@ -23,5 +27,4 @@ | |||
"BASE_IMG": "python:3.9" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets try python 3.11 here
lint = ["ruff>=0.0.220"] # MIT License (MIT) | ||
|
||
[tool.ruff] | ||
line-length = 160 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is not this very high number?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, its a very high number, but it's the one that was used on the earlier setup. I think we should lower it in the future
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
which earlier setup? We have always used 79 (pep8)
819321c
to
60f9382
Compare
lint = ["ruff>=0.0.220"] # MIT License (MIT) | ||
|
||
[tool.ruff] | ||
line-length = 160 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
which earlier setup? We have always used 79 (pep8)
Remove flake8, autopep8 and isort in favor of Ruff.