-
Adding a new static code analyzer for Kotlin: https://detekt.dev/
### TASKS
- [X] Research (if needed)
- [X] Create branch feature/detekt
- [X] Initial set up of the tool
- [X] First try to i…
-
## Problem
The `.algokit/static_analysis/snapshot` JSONs keep growing (quickly) with the `#` of `pre-commit` runs.
I've noticed it just when GB rejected a commit due to file oversize (118 MB 😱).…
cusma updated
1 month ago
-
This code:
```cpp
#include
#include
struct Structy {
std::string foo;
int bar;
};
int main() {
auto *s = new Structy{
.foo = "foo",
.bar = 1,
};
std::cout fo…
-
clang analyzer reports `clang-analyzer-unix.Malloc` leaks for Eigen rank updates.
Minimal reproducible example: https://godbolt.org/z/1Wa3xjsfx
---
Details including preprocessed c++ file:
…
-
the rocketry embedded standard (still wip) decided that each project is responsible for implementing their own coding safety standards (or not implementing).
since processor board has potential to …
-
https://github.com/nowarp/misti
I would imagine it could be a new button on the left bar, somewhere near the Build button.
-
- [x] https://github.com/ballerina-platform/ballerina-lang/issues/43142
- [ ] https://github.com/ballerina-platform/ballerina-lang/issues/43143
- [ ] https://github.com/ballerina-platform/ballerina-…
-
Consider the following code:
```dart
extension on int? {
int? operator+(int? other) {
if (this != null && other != null) {
return this! + other;
} else {
return null;
…
-
```cpp
#include
std::string replaceEscapeSequences(const std::string &source)
{
std::string result;
for (std::size_t i = 0; i < source.size(); ++i) {
if (source[i] != '\\' || …
-
**Background**
This is our first Malware Static Analyzer written in RUST.
Static analysis is a well research topic, where recurrently Researches are able to achieve 95-97% detection using a series o…