@grani/game-framework
Version:
A game framework with type script
52 lines • 1.39 kB
JSON
{
"workbench.colorCustomizations": {
"activityBar.background": "#123501",
"titleBar.activeBackground": "#1A4A02",
"titleBar.activeForeground": "#F0FFE8"
},
"liveServer.settings.port": 5502,
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"editor.formatOnSave": true,
"prettier.configPath": ".prettierrc.js",
"editor.defaultFormatter": null,
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[css]": {
"editor.formatOnSave": false
},
"[scss]": {
"editor.formatOnSave": false
},
"[sass]": {
"editor.formatOnSave": false
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"eslint.options": {
"configFile": "./.eslintrc.js"
},
"eslint.alwaysShowStatus": true,
"eslint.format.enable": true,
"eslint.packageManager": "yarn",
"eslint.run": "onSave",
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"files.trimTrailingWhitespace": true,
"files.eol": "\n",
}