Alexolut

Results 29 comments of Alexolut

It seems that extension now work again for VS 17.3.5

In general I don't have problems with other code. That's why I think the triggers not relevant here. Only the line with `catch` is problematic from cpp-linter point of view....

The repo is private. Excerpt from related yaml file: ``` on: workflow_call: ``` I formatted entire file locally with clang-format 18.1.7 (on CI I see 18.1.8 but I had faced...

I disabled annotation as you suggested `file-annotations: false`. Below the output from action run: ``` Performing checkup on filename.cpp INFO:CPP Linter:Running "/usr/bin/clang-format-18 -style=file --output-replacements-xml --lines=96:103 filename.cpp" INFO:CPP Linter:Getting fixes with...

Look like the output is empty line? But same output here was before changing verbosity to debug. ![ci-run](https://github.com/cpp-linter/cpp-linter-action/assets/12843204/3c2e9f81-cdb3-4c58-a147-758ac879639d) > the .clang-format config file you are using I hope that default...

> Could this just be a difference in LF vs CRLF? I don't think so. All lines have the same ending. But complaining only for the one with `catch`. I...

output-replacement-xml returns me the following: ``` 
 ``` Offset 2789 points right after the curly brace: ``` } catch (const std::exception& ex) { ^ ``` I'm not sure what does...

According your explanation (if I understand it correctly) looks like clang-format expects the following: ![code-editor](https://github.com/cpp-linter/cpp-linter-action/assets/12843204/11e936c9-35b9-45e0-ad2a-87e389abd78d) After that linter suggests me to remove entire line 100! ![drop-line](https://github.com/cpp-linter/cpp-linter-action/assets/12843204/fb441d1b-1b86-42da-8985-c3a6ebb85e0a) Mind blowing. I work...

> You can do this with a python prompt `line: 99 col: 37` Exactly the same position that I mentioned before ``` } catch (const std::exception& ex) { ^ ```

It seems that we can post an issue (bug) on [LLVM GH](https://github.com/llvm/llvm-project/issues) only based on the assumption that we must get "empty" output-replacements-xml, e.g.: ``` ``` if we did clang-format...