-
Updated
Oct 7, 2021 - JavaScript
static-code-analysis
Here are 402 public repositories matching this topic...
-
Updated
Oct 7, 2021 - OCaml
~/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 7, 2021 - PHP
-
Updated
Oct 4, 2021 - Rust
-
Updated
Oct 7, 2021 - Java
-
Updated
Oct 6, 2021 - Go
Describe the bug
I expect metavariables between backticks to work in JavaScript:
$ semgrep --lang js -e '`$A`'
ran 1 rules on 1 files: 0 findings
I expect this to match the following:
`test`;
Priority
How important is this to you?
- P2: annoying but not blocking me
-
Updated
Oct 7, 2021 - PHP
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 7, 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:
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
The Problem
With the new model-property type and ModelPropertyRule Larastan now has the ability to check the existence of model columns that are given to a method.
Adding the model-property type to the Laravel's core methods are done with the help of PHPstan stubs. Some [examples](https://github.com/nunomaduro/larastan/blob/master/stubs/Elo
This file is enormous. Also, breaking it up will make running tests faster since Gradle can run separate test classes in parallel.
-
Updated
Oct 7, 2021 - Go
-
Updated
Oct 7, 2021 - Go
This pollutes build logs with a message that users won't care about. Please lower this to debug level.
Workaround: Add -Dorg.slf4j.simpleLogger.log.edu.umd.cs.findbugs.ExitCodes=error to the JVM running Spotbugs.
-
Updated
Aug 12, 2021 - TypeScript
-
Updated
Sep 21, 2021 - Ruby
-
Updated
Sep 14, 2021 - JavaScript
I wrote some of the code to do this in a branch https://github.com/python-security/pyt/compare/class_based_views, but since I'm working on other things and this feature seems cool and important I'm making this issue
Let me know if you would like any help in implementing.
-
Updated
Oct 1, 2021 - Go
-
Updated
Sep 10, 2021 - Ruby
-
Updated
Oct 6, 2021 - Python
Justification
Release versions should not contain debugging support files.
Description
These files add 13MB of junk to the installation that shouldn't be there for normal users. The purpose of these files is to debug release builds. They shouldn't be included in the final installation.
The total install folder is 29.3MB so the PDB files make up %44 of the installation size.

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