forked from platformio/platformio-core
Generate settings for GCC linter and PlatformIO IDE
This commit is contained in:
@@ -14,7 +14,7 @@
|
|||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
VERSION = (2, 8, "0.dev2")
|
VERSION = (2, 8, "0.dev3")
|
||||||
__version__ = ".".join([str(s) for s in VERSION])
|
__version__ = ".".join([str(s) for s in VERSION])
|
||||||
|
|
||||||
__title__ = "platformio"
|
__title__ = "platformio"
|
||||||
|
8
platformio/ide/tpls/atom/.gcc-flags.json.tpl
Normal file
8
platformio/ide/tpls/atom/.gcc-flags.json.tpl
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"execPath": "{{ cxx_path }}",
|
||||||
|
"gccDefaultCFlags": "-Wall -Wno-cpp -fsyntax-only -D{{ ' -D'.join(defines) }}",
|
||||||
|
"gccDefaultCppFlags": "-Wall -Wno-cpp -fsyntax-only -D{{ ' -D'.join(defines) }}",
|
||||||
|
"gccErrorLimit": 15,
|
||||||
|
"gccIncludePaths": "{{ ','.join(includes).replace("\\", "/") }}",
|
||||||
|
"gccSuppressWarnings": false
|
||||||
|
}
|
@@ -1,2 +1,3 @@
|
|||||||
.pioenvs
|
.pioenvs
|
||||||
.clang_complete
|
.clang_complete
|
||||||
|
.gcc-flags.json
|
||||||
|
Reference in New Issue
Block a user