mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 00:24:07 -08:00
17f13b3b6e
* Setup stricter linting for typescript * make `import/no-unresolved` an error everywhere * use prettier to format `.vscode/settings.default.json` * address PR comments
19 lines
433 B
JSON
19 lines
433 B
JSON
{
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"search.exclude": {
|
|
"node_modules": true,
|
|
"dist": true,
|
|
"pnpm-lock.yaml": true
|
|
},
|
|
"typescript.format.enable": false,
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"workspace-default-settings.runOnActivation": true,
|
|
"eslint.probe": ["javascript", "typescript", "vue"],
|
|
"eslint.workingDirectories": [
|
|
{
|
|
"mode": "auto"
|
|
}
|
|
]
|
|
}
|