-
Updated
Oct 2, 2021 - Haskell
linter
Here are 1,600 public repositories matching this topic...
-
Updated
Oct 3, 2021 - JavaScript
~/code/rubocop$ grep -iro "autocorrect" . | wc -l
1971
~/code/rubocop$ grep -iro "auto-correct" . | wc -l
1551Both autocorrect and auto-correct are used frequently in RuboCop. Should we be consistent? If so, which one?
Any change should only affect comments and other string content, not method names.
-
Updated
Oct 4, 2021 - Python
-
Updated
Oct 3, 2021 - Vim script
-
Updated
Oct 2, 2021 - JavaScript
Fix false positives for nested property declaration that contains `tx` or `qx` in unit-no-unknown
Clearly describe the bug
There are false positives for unknown unite when you use tx or qx
Which rule, if any, is the bug related to?
unit-no-unknown
What code is needed to reproduce the bug?
e.g.
// Font Sizes
$font-sizes: (
2x: $font-size-base * 2,
2qx: $font-size-base * 2.25,-
Updated
Oct 2, 2021 - Rust
GoKart support
Your feature request related to a problem? Please describe.
GoKart is a new stand-alone security-focused static analysis tool.
Describe the solution you'd like.
Add support for GoKart. It uses go/analysis.
Describe alternatives you've considered.
Run GoKart separately to golangci-lint.
Additional context.
_No respo
Comment errors
I want super-linter to create pull request comments about the result of linters that caused errors.
If super-linter can do it, linter errors will be easier to see.
-
Updated
Oct 3, 2021 - Python
-
Updated
Oct 3, 2021 - JavaScript
-
Updated
Oct 3, 2021 - Haskell
-
Updated
Mar 25, 2021 - TypeScript
Many repositories need to fix, so please help if you like.
If you could help, it would be helpful if you could comment before starting the work not to overlapping.
Fix example
Run exit command after lint.
echo '::group:: Running golangci-lint with reviewdog 🐶 ...'
go-
Updated
Oct 3, 2021 - Python
-
Updated
Sep 16, 2021 - Go
-
Updated
Oct 1, 2021 - JavaScript
-
Updated
Oct 1, 2021 - Elixir
-
Updated
Oct 4, 2021 - Kotlin
-
Updated
Aug 30, 2021 - TypeScript
-
Updated
Oct 3, 2021 - Python
Affects PMD Version: 6.30.0-SNAPSHOT
Rule: UselessOverridingMethod
Description:
Note: There seems to be a difference when having the class in the auxclasspath or not (typeresolution).
Code Sample demonstrating the issue:
-
Updated
Mar 7, 2019 - Go
Describe the bug
In the docs found here:
https://bandit.readthedocs.io/en/latest/plugins/index.html#complete-test-plugin-listing
B109 and B111 show a description instead of a plugin name. This looks inconsistent since all the other plugin names are listed. I believe this is a result of a recent change to remove these deprecated plugins.
To Reproduce
- Navigate to https://bandit
e.g.
# map.py
def func(a: int) -> float:
return float(a)
map(func, ['str'])$ pytype map.py
Computing dependencies
Analyzing 1 sources with 0 local dependencies
ninja: Entering directory `/[redacted]/.pytype'
ninja: no work to do.
Success: no errors foundwhile
$ mypy map.py
map.py:5: error: Argument 1 to "map" has incompatible type "Ca-
Updated
Oct 3, 2021 - Go
Improve this page
Add a description, image, and links to the linter topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the linter topic, visit your repo's landing page and select "manage topics."

What rule do you want to change?
max-lines-per-function
What change to do you want to make?
Generate fewer warnings
How do you think the change should be implemented?
A new default behavior
Example code
Wha