-
Updated
Jan 25, 2022 - JavaScript
static-code-analysis
Here are 415 public repositories matching this topic...
-
Updated
Jan 26, 2022 - JavaScript
-
Updated
Jan 26, 2022 - OCaml
-
Updated
Jan 25, 2022 - Nunjucks
-
Updated
Jan 26, 2022 - Rust
-
Updated
Jan 26, 2022 - Java
-
Updated
Jan 26, 2022 - Go
Describe the bug
Update on Homebrew-core job is failing during release https://github.com/returntocorp/semgrep/runs/4889454978?check_suite_focus=true
This is because https://github.com/returntocorp/semgrep/blob/develop/.github/workflows/release.yml#L320 has hardcoded the version of python that is running and github action is no longer running 3.9.9 but is running 3.9.10
We should dynami
Describe the solution you'd like
Read all test command’s flags from both command and the config file(~/.datree/config.yaml). The main feature is to allow users to set permanent yet custom flags in their config local settings.
“How to implementation” Suggestion
- Make sure all flags and options are in
TestCommandFlags(wrapTestCommandFlagsinTestCommandOptionsas you see
-
Updated
Jan 22, 2022 - 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 🐶 ...'
goDescribe 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
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
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:
Is your feature request related to a problem? Please describe.
It would be nice that imports-blacklist rule supports regex or match any sub-packages.
Describe the solution you'd like
adding
[rule.imports-blacklist]
arguments = ["github.com/pkgA/pkgB", "github.com/pkg1/**/pkg2"]
configuration would prevent following imports:
import "github.com/pkgA/pkgB"
import "github.com/pkgA
This would allow for more localized suppressions. Say we have a method foo(Object o) in an annotated third-party library where o has no type annotation, but o really should be @Nullable, as foo() can handle being passed null as a parameter. In code checked by NullAway, say you write:
void bigMethod() {
...
foo(null); // NullAway reports an error
...
}I beli
[spotbugs] Running SpotBugs...
[spotbugs] Unexpected problem occured during version sanity check
[spotbugs] Reported exception:
[spotbugs] java.lang.AbstractMethodError: Receiver class org.slf4j.nop.NOPServiceProvider does not define or inherit an implementation of the resolved method 'abstract java.lang.String getRequesteApiVersion()' of interface org.slf4j.
-
Updated
Jan 15, 2022 - TypeScript
-
Updated
Jan 25, 2022 - Ruby
-
Updated
Jan 26, 2022 - 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
Jan 24, 2022 - Go
-
Updated
Jan 25, 2022 - Python
-
Updated
Jan 20, 2022 - Ruby
-
Updated
Jan 26, 2022 - Go
Rubberduck version information
The info below can be copy-paste-completed from the first lines of Rubberduck's log or the About box:
Rubberduck version [Version 2.5.2.6030
OS: Microsoft Windows NT 10.0.22000.0, x64
Host Product: Microsoft Office x64
Host Version: 16.0.14701.20226
Host Executable: WINWORD.EXE
Description
Language inspection for assignment of LCase suggests usi
-
Updated
Jan 20, 2022 - C++
-
Updated
Dec 25, 2021 - Java
Improve this page
Add a description, image, and links to the static-code-analysis topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the static-code-analysis topic, visit your repo's landing page and select "manage topics."

Both
autocorrectandauto-correctare 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.