-
Updated
Mar 21, 2022 - JavaScript
static-code-analysis
Here are 429 public repositories matching this topic...
-
Updated
Mar 21, 2022 - JavaScript
-
Updated
Mar 21, 2022 - OCaml
-
Updated
Mar 22, 2022 - Nunjucks
-
Updated
Mar 22, 2022 - Rust
-
Updated
Mar 22, 2022 - Java
Semgrep test syntax is inconsistent / confusing when using paths to files instead of directories
» semgrep --test --json . | head
{
"config_missing_tests": [],
"config_with_errors": [],
"results": {
"unsafe-exec.yaml": {
"checks": {
-
Updated
Mar 21, 2022 - Go
When we build our project on macbook intel devices. It shows the following error:
go build -tags staging -ldflags="-X github.com/datreeio/datree/cmd.CliVersion=0.0.1"
# github.com/shirou/gopsutil/host
smc_darwin.c:75:41: warning: 'kIOMasterPortDefault' is deprecated: first deprecated in macOS 12.0 [-Wdeprecated-declarations]
/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/Sys
-
Updated
Feb 24, 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 🐶 ...'
go
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
Current problem
It is almost always considered a bad practice to manually invoke a __magic__
method on a class.
# Bad
my_str = my_object.__str__()
# Good
my_str = str(my_object)
A warning for this type of issue could be nice and instructive for people who are new to Python.
Desired solution
A warning is given when Pylint is run on code that invokes __magic__
methods
Affects PMD Version:
6.17
Rule:
All rulesets.
Description:
PMD output does not inform the user as to the number of rules contravened while running the tool. The user has to look at the output file.
Code Sample demonstrating the issue:
Sep 01, 2019 9:42:45 AM net.sourceforge.pmd.cache.FileAnalysisCache loadFromFile
INFO: Analysis cache loaded
Sep 01, 2019 9:
I want to ignore all test files. Is there any way to do it?
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
Mar 7, 2022 - TypeScript
-
Updated
Mar 3, 2022 - Ruby
-
Updated
Mar 18, 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 26, 2022 - Go
-
Updated
Mar 22, 2022 - Python
-
Updated
Mar 22, 2022 - Ruby
Enable more linters
kube-score is linted with golangci-lint, but some of the linters have been disabled.
- Update
.golangci.yml
to enable more linters - Run
golangci-lint run
to find the issues that the new linters find. - Fix the issues until none are left.
- Send a PR!
😍
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
Mar 8, 2022 - 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
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.