wireguard-dashboard-admin/.vscode/settings.json

32 lines
686 B
JSON
Raw Normal View History

2022-01-08 17:20:46 +08:00
{
"files.eol": "\n",
2022-07-20 09:10:40 +08:00
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.printWidth": 120,
"prettier.singleQuote": true,
"prettier.semi": false,
"prettier.endOfLine": "lf",
"[javascript]": {
"editor.formatOnSave": false
},
"[typescript]": {
"editor.formatOnSave": false
},
"[typescriptreact]": {
"editor.formatOnSave": false
},
"[vue]": {
"editor.formatOnSave": false
},
2022-05-06 22:34:55 +08:00
"eslint.validate": ["javascript", "javascriptreact", "typescript", "vue"],
2022-01-08 17:20:46 +08:00
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
2022-07-20 09:10:40 +08:00
"files.associations": {
"*.env.*": "dotenv",
"*.css": "postcss"
}
2022-01-08 17:20:46 +08:00
}