-
Updated
Nov 7, 2021 - Haskell
linter
Here are 1,618 public repositories matching this topic...
-
Updated
Nov 10, 2021 - JavaScript
-
Updated
Nov 10, 2021 - Swift
-
Updated
Nov 12, 2021 - Python
~/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
Nov 12, 2021 - Vim script
-
Updated
Nov 6, 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
Nov 11, 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
Describe the bug
git diff-tree used by linter on push checks only files from the last commit and regardless of files status, so deleted or renamed files are also checked.
There are now 2 different git commands used for finding the list of broken files (find them here: https://github.com/github/super-linter/blob/v3.14.4/lib/functions/buildFileList.sh#L59-L105). git diff-tree is u
-
Updated
Nov 3, 2021 - Python
-
Updated
Nov 7, 2021 - JavaScript
-
Updated
Nov 10, 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
Nov 9, 2021 - Python
-
Updated
Nov 11, 2021 - Go
-
Updated
Nov 11, 2021 - Elixir
-
Updated
Oct 21, 2021 - JavaScript
Expected Behavior of the rule
The empty else block is reported:
fun f() {
var i = 0
if (i == 0) {
println(i)
} else {
}
}Context
EmptyIfBlock is only reporting empty then blocks, not empty else b
-
Updated
Oct 19, 2021 - TypeScript
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
-
Updated
Nov 11, 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
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