# confg
{
"workbench.colorTheme": "One Dark Pro Darker",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"workbench.iconTheme": "material-icon-theme",
"editor.fontSize": 15,
"terminal.integrated.defaultProfile.windows": "Git Bash",
"git.confirmSync": false,
"php.validate.executablePath": "C:/xampp/php/php.exe",
// JSM
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit",
"source.addMissingImports": "explicit"
},
"prettier.tabWidth": 2,
"prettier.useTabs": false,
"prettier.semi": true,
"prettier.singleQuote": false,
"prettier.jsxSingleQuote": false,
"prettier.trailingComma": "es5",
"prettier.arrowParens": "always",
// Settings JSON
// "editor.codeActionsOnSave": {
// "source.fixAll.eslint": "explicit"
// },
"eslint.workingDirectories": ["./client", "./server"],
"files.exclude": {
"**/.git": false
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"emmet.preferences": {},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"[python]": {
"editor.formatOnType": true
},
"editor.tabSize": 2,
"javascript.format.semicolons": "insert",
"typescript.format.semicolons": "insert",
"editor.formatOnSave": true,
"path-autocomplete.transformations": [],
"terminal.integrated.env.windows": {},
"typescript.updateImportsOnFileMove.enabled": "always",
"liveServer.settings.fullReload": true,
"css.lint.unknownAtRules": "ignore",
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"liveServer.settings.donotShowInfoMsg": true,
"extensions.ignoreRecommendations": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"prisma.showPrismaDataPlatformNotification": false,
"github.copilot.editor.enableAutoCompletions": true
}