Add gcc format
See original GitHub issueI tried to integrate solhint with Ale (a lint engine for vim that takes advantage of vim 8 async features), but I wasn’t able to do it because none of the formatters is supported by Ale, at least right now. There is support for the unix
format, but it can’t tell warnings from errors.
Adding a gcc
formatter to solhint seems to me like the easiest way to do it.
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Does GCC support C++20 std::format? - Stack Overflow
As of September 2022, NO, GCC 12 doesn't support std::format yet. MSVC (version 16.10 and above) is the only compiler that fully supports...
Read more >Installing GCC: Configuration - GNU Project
The default is exec-prefix /bin . Specify the installation directory for object code libraries and internal data files of GCC. The default is...
Read more >Does anyone know when gcc will support std::format? - Reddit
Does anyone know when gcc will support std::format? I'm migrating an app to C++20 that needs to build on both msvc and gcc....
Read more >GCC and Make - A Tutorial on how to compile, link and build ...
1.2 Installing GCC on Unixes. GNU Toolchain, including GCC, is included in all Unixes. It is the standard compiler for most Unix-like operating...
Read more >gcc(1) - Linux manual page - man7.org
However, the use of gcc does not add the C++ library. g++ is a program that calls ... format should be evaluated to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Sure.
Hi @sohkai.
I ended up using the
compact
format (it’s not documented here in solhint, but it’s available since solhint just delegates the formatting to eslint formatters). You can see mi PR here: w0rp/ale#1192.