14f614d0c1
- this maintains support for all the code folders in the vscode settings.json file, so they load the eslint files correctly
23 lines
422 B
JSON
23 lines
422 B
JSON
{
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
},
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"pattern": "./apps/*/"
|
|
},
|
|
{
|
|
"pattern": "./ghost/*/"
|
|
}
|
|
],
|
|
"search.exclude": {
|
|
"**/*.js.snap": true,
|
|
"**/.git": true,
|
|
"**/build/*": true,
|
|
"**/coverage/**": true,
|
|
"**/dist/**": true,
|
|
"**/ghost.map": true,
|
|
"**/node_modules": true,
|
|
"ghost/core/core/built/**": true
|
|
}
|
|
} |