mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-01-15 07:54:07 +00:00
22 lines
469 B
JSON
22 lines
469 B
JSON
{
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true,
|
|
"source.fixAll.stylelint": true
|
|
},
|
|
"stylelint.validate": ["css", "scss"],
|
|
"css.validate": false,
|
|
"less.validate": false,
|
|
"scss.validate": false,
|
|
"[css]": {
|
|
"editor.formatOnSave": false
|
|
},
|
|
"[scss]": {
|
|
"editor.formatOnSave": false
|
|
},
|
|
"[less]": {
|
|
"editor.formatOnSave": false
|
|
}
|
|
}
|