Results 19 comments of fmichaut
trafficstars

Furthermore base64 encoding would take more space than binary encoding. Binary does not mean unreadable, it just means "native representation". It's normal for strings to be readable in binary files,...

Looks like a lot of related issues have been opened in the past year - is there any plan to tackle this issue in the near future?

Is this something you will be working on?

> ```emacs-lisp > (with-eval-after-load 'flycheck > (add-hook 'flycheck-mode-hook #'flycheck-irony-setup) > (add-hook 'flycheck-mode-hook #'flycheck-clang-tidy-setup) > (flycheck-add-next-checker 'irony '(warning . c/c++-clang-tidy))) > ``` This doesn't work, when I open emacs I get...

> ```emacs-lisp > (defun flycheck-irony-and-clang-tidy-setup > (flycheck-irony-setup) > (flycheck-clang-tidy-setup) > (flycheck-add-next-checker 'irony '(warning . c/c++-clang-tidy))) > > (with-eval-after-load 'flycheck > (add-hook 'flycheck-mode-hook #'flycheck-irony-and-clang-tidy-setup)) > ``` ``` Error (flycheck-mode-hook): Error running...

Nope it doesn't work You hit the first issue I was experiencing, which is for some reasons `clan-tidy` checker becames the first check to run and totaly bypass `irony` (as...

As strange as it might seems, yes. I've tried to play with the order many times, but it doesn't change the issue

Sorry about the misleading `clang-analyzer` in the output, it's a new checker I added in my config just before taking the screenshot, that is why I did not mention it...

It looks like the plugin for VisualStudio is open source, and the README talks about C++: https://github.com/SonarSource/sonarlint-visualstudio I would also love to have C++ support for this plugin !