mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-10 09:49:54 +03:00
47 lines
1.1 KiB
JSON
47 lines
1.1 KiB
JSON
{
|
|
"search.exclude": {
|
|
"**/.yarn": true,
|
|
"**/.pnp.*": true
|
|
},
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": true
|
|
// "source.organizeImports": true
|
|
},
|
|
"eslint.nodePath": "interface/.yarn/sdks",
|
|
"eslint.workingDirectories": ["interface"],
|
|
"prettier.prettierPath": "",
|
|
"typescript.tsdk": "interface/.yarn/sdks/typescript/lib",
|
|
"typescript.enablePromptUseWorkspaceTsdk": true,
|
|
"files.associations": {
|
|
"*.tsx": "typescriptreact",
|
|
"*.tcc": "cpp",
|
|
"optional": "cpp",
|
|
"istream": "cpp",
|
|
"ostream": "cpp",
|
|
"ratio": "cpp",
|
|
"system_error": "cpp",
|
|
"array": "cpp",
|
|
"functional": "cpp",
|
|
"regex": "cpp",
|
|
"tuple": "cpp",
|
|
"type_traits": "cpp",
|
|
"utility": "cpp",
|
|
"string": "cpp",
|
|
"string_view": "cpp"
|
|
},
|
|
"todo-tree.filtering.excludeGlobs": [
|
|
"**/vendor/**",
|
|
"**/node_modules/**",
|
|
"**/dist/**",
|
|
"**/bower_components/**",
|
|
"**/build/**",
|
|
"**/.vscode/**",
|
|
"**/.github/**",
|
|
"**/_output/**",
|
|
"**/*.min.*",
|
|
"**/*.map",
|
|
"**/ArduinoJson/**"
|
|
],
|
|
"cSpell.enableFiletypes": ["!cpp"]
|
|
}
|