-
Updated
Aug 30, 2021 - JavaScript
linter
Here are 1,587 public repositories matching this topic...
-
Updated
Aug 31, 2021 - Haskell
There are some annoying warnings when building the documentation site:
$ antora --pull antora-playbook.yml
asciidoctor: WARNING: skipping reference to missing attribute: 1
asciidoctor: WARNING: skipping reference to missing attribute: 3
asciidoctor: WARNING: skipping reference to missing attribute: word
asciidoctor: WARNING: skipping reference to missing attribute: word
asciidoctor: W
-
Updated
Sep 1, 2021 - Python
-
Updated
Sep 1, 2021 - Vim script
-
Updated
Aug 26, 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
Sep 1, 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
Aug 31, 2021 - Python
-
Updated
Aug 31, 2021 - JavaScript
-
Updated
Mar 25, 2021 - TypeScript
-
Updated
Aug 27, 2021 - Haskell
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
Aug 18, 2021 - Python
-
Updated
Aug 31, 2021 - Go
-
Updated
Jun 13, 2021 - JavaScript
-
Updated
Aug 29, 2021 - Elixir
-
Updated
Aug 30, 2021 - Kotlin
-
Updated
Aug 30, 2021 - TypeScript
-
Updated
Mar 7, 2019 - Go
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
Sep 1, 2021 - Python
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
Aug 30, 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."



Please describe what the rule should do:
Starting V8 v.9.3,
Object.prototype.hasOwnProperty.callcan be replaced with an alias/syntax sugarObject.hasOwn, which is much more read-friendly. Further information: https://v8.dev/features/object-has-ownWhat new ECMAScript feature does this rule relate to?
Promoting using of an alias/syntax sugar
Object.hasOwninstead of `Object.prot