Skip to main content
3 votes
1 answer
98 views

I'm building a code indexing tool for LLMs using tree-sitter in Go. The goal is to split source files into chunks (~600 lines) that respect function/class boundaries for better LLM context. When a ...
Nathan Nguyen's user avatar
2 votes
1 answer
204 views

Consider async method public async Task StartAsync(CancellationToken cancellationToken) { } Visual Studio 2022 correctly shows the Warning CS1998 "This async method lacks 'await' operators and ...
aepot's user avatar
  • 4,886
2 votes
1 answer
187 views

I am applying code analysis rules to a C# project and am trying to evaluate the merits of CA1859: Use concrete types when possible for improved performance. Performance is only one consideration here, ...
Neil T's user avatar
  • 3,359
0 votes
1 answer
38 views

As part of the CI/CD for our project we run code coverage analysis on the pipeline using a similar command to: dotnet test D:\a\1\s\OurSln.sln --logger trx --results-directory D:\a\_temp --...
something5143's user avatar
-1 votes
1 answer
96 views

Given the below code, how would I access the myVar declaration, using pygccxml? #include <windows.h> void someFunction() { LPBYTE myVar; }
fwrgcannpve's user avatar
0 votes
0 answers
15 views

We have a monolithic application and we want to create multiple service based projects(REST APIs). Is there a product available in market which can measure some of the improvements such as How much ...
Sanjay's user avatar
  • 313
0 votes
1 answer
62 views

Very strange message when analyzing the source code. int? x; if (x == null) { // } The operand can't be null, so the condition is always 'true'. Remove the condition.dartunnecessary_null_comparison ...
mezoni's user avatar
  • 11.3k
2 votes
1 answer
249 views

I have a .NET project that references a library from another project via an internal NuGet server. The referenced project uses third party code analyzers (StyleCop) also referenced via NuGet and does ...
Kyle McClellan's user avatar
1 vote
2 answers
99 views

Is it possible to tell Visual Studio to not analyze a specific file? In this case, GlobalSuppressions.cs. I can't find any setting for it in options. I'm also trying to avoid messing up my code with ...
SteinTech's user avatar
  • 4,144
0 votes
1 answer
72 views

I have a function in my code. I need to count the lines of code in its call tree. That is, I need to count the number of lines in this function, plus all the lines of code in the functions it calls, ...
Rodion Degtyar's user avatar
2 votes
1 answer
65 views

I would like to know if it is possible to add custom code analyzer for F# like you can for C# / VB# with Roslyn? Are there some frameworks/projects I can leverage to do it? In addition, I would like ...
SENya's user avatar
  • 1,492
1 vote
1 answer
183 views

The note quoted in the title can often be found in the documentation of GTk4. My question is this: Is there a technical way to check a program to determine whether all relevant data has been duly ...
Holger's user avatar
  • 1,200
1 vote
0 answers
104 views

In the following C code the code analysys (the one from C/C++ vscode extension) highlights an error on DEFINE_INDEXING_FUNCTION macro, but when I compile the code with GCC (gcc -Wall -Wextra filename....
yurich's user avatar
  • 157
1 vote
1 answer
742 views

how to convert this values into sarif Vulnerablilites: { "id": "66c5b89700fbf372c2f1f182", "method": "post", "path": "/user", "type&...
cloudnetwork's user avatar
5 votes
0 answers
157 views

I am trying to verify with jqassistant that we only implement logback (and slf4j) for logging. I'm using version: 2.4.0 and the analyze goal seems to be successful but it shouldn't be. For testing ...
Rensykes's user avatar

15 30 50 per page
1
2 3 4 5
127