-
Notifications
You must be signed in to change notification settings - Fork 6
Preview/pylint #59
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
Preview/pylint #59
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
reviews: | ||
tools: | ||
# oxlint does not run if biome is enabled | ||
ruff: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix trailing spaces. There are trailing spaces on this line that should be removed. - ruff: + ruff: 📝 Committable suggestion
Suggested change
ruff:
ruff:
🧰 Tools🪛 YAMLlint (1.37.1)[error] 4-4: trailing spaces (trailing-spaces) 🤖 Prompt for AI Agents
|
||
enabled: false |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[MASTER] | ||
ignore=venv | ||
jobs=1 | ||
|
||
[MESSAGES CONTROL] | ||
disable= | ||
missing-docstring, | ||
invalid-name, | ||
too-few-public-methods | ||
|
||
[FORMAT] | ||
max-line-length=100 | ||
|
||
[REPORTS] | ||
output-format=colorized | ||
reports=no | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
print("Hello World') | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix syntax error in string literal. The string has mismatched quotes - opens with double quote but closes with single quote, causing a syntax error. -print("Hello World') +print("Hello World") 📝 Committable suggestion
Suggested change
print("Hello World')
print("Hello World")
🤖 Prompt for AI Agents
|
||
print(1+"a") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix runtime error from type mismatch. Attempting to add an integer and a string will raise a -print(1+"a") +print(str(1) + "a") Or use f-string formatting: -print(1+"a") +print(f"{1}a") 📝 Committable suggestion
Suggested change
print(1+"a")
print(str(1) +"a")
Suggested change
print(1+"a")
print(f"{1}a")
🤖 Prompt for AI Agents
|
||
|