38 lines
817 B
Plaintext
38 lines
817 B
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"path": "."
|
|
}
|
|
],
|
|
"settings": {
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/dist": true
|
|
},
|
|
|
|
// Linting
|
|
"stylelint.enable": true,
|
|
"css.validate": false,
|
|
"scss.validate": false,
|
|
"javascript.validate.enable": false,
|
|
|
|
// Formatting
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.tabSize": 4,
|
|
"editor.insertSpaces": true,
|
|
"editor.formatOnSave": true,
|
|
|
|
// Trim on save
|
|
"files.trimTrailingWhitespace": true,
|
|
|
|
// Special file associations
|
|
"files.associations": {
|
|
".eslintrc": "jsonc"
|
|
},
|
|
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll": true
|
|
}
|
|
}
|
|
}
|