* Pass -g to TinyC by default
Closes#2748
* Sort C++ libs and tools alphabetically
* Sort C libs and tools alphabetically
* Add missing Zig C & C++ versions
* Enable semver for RISC-V Clang
Issue #2739
* Add missing RISC-V Clang 12.0
Issue #2739
* Improve RISC-V Clang config
* Improve C++ props file to make it more mantainable
* Add missing Zig C compiler id in compiler list
* Update etc/config/c++.amazon.properties
* Show different group name for each RISCV version
The largest changes here are:
- enforcing single quotes for strings
- enforcing trailing commas where possible
In addition to those we have enabled several eslint plugins:
- plugin:requirejs/recommended, to enforce some conventions in require statements
- plugin:node/recommended, to enforce correct usage of various node.js APIs
- plugin:unicorn/recommended, which contains a pretty mixed bag of useful rules
This PR attempts to not change code behavior when possible. In cases where fixing
existing code would change semantics, a linting exclusion has been placed in the
code base to silence the error. You can find these by searching for `eslint-disable-next-line`.
Co-authored-by: Austin Morton <austinpmorton@gmail.com>