-
Updated
Jan 23, 2022 - Haskell
linter
Here are 1,682 public repositories matching this topic...
-
Updated
Jan 31, 2022 - JavaScript
-
Updated
Feb 2, 2022 - JavaScript
-
Updated
Feb 1, 2022 - Swift
-
Updated
Feb 2, 2022 - Vim script
-
Updated
Feb 1, 2022 - JavaScript
-
Updated
Feb 2, 2022 - Rust
What is the problem you're trying to solve?
I guess that selector-max-universal is performance related rule.
I.e. it is supposed to forbid patterns that hit perfomance.
Consider the following patterns (with selector-max-universal = 1):
- "*" involves O(N) search. So, it is Good.
- "* *" involves O(N^2) search. So, it is Bad.
- "* + *" involves O(N) search ("+ *" = next element = it
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
Jan 31, 2022 - Python
-
Updated
Jan 27, 2022 - Haskell
-
Updated
Nov 26, 2021 - JavaScript
-
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
Jan 21, 2022 - Python
-
Updated
Jan 29, 2022 - Go
Expected Behavior
assignedExpression
violates CanBeNonNullable
.
private fun visitAssignment(assignedExpression: KtExpression?) {
if (assignedExpression == null) return
val name = if (assignedExpression is KtQualifiedExpression) {
assignedExpression.selectorExpression
} else {
assignedExpression
}?.text ?: return
assignments.getOrPu
-
Updated
Feb 2, 2022 - Elixir
-
Updated
Oct 21, 2021 - JavaScript
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
Is your feature request related to a problem? Please describe.
I want to be able to disable a whole level of violation. For example the low error level i want to disable but still run the checks on medium, high, critical.
Describe the solution you'd like
I would like to have this possible with a simple flag in the ci to do this. To disable the violation level : low, etc. that when yo
Bug description
If passing a list to %-formatting numpy ufuncs are mishandled:
from numpy import radians, degrees # any ufunc will do
a=radians(90.0)
print ( "%6.3f"%( degrees(a),))
print ( "%6.3f"% degrees(a))
# ==> [E1307(bad-string-format-type)] Argument '.ndarray' does not match format type 'f'
# even though the ufunc returns a float-compat arg in this case
# N
-
Updated
Oct 19, 2021 - TypeScript
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:
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."
Both
autocorrect
andauto-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.