mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 12:30:12 +02:00
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"files.associations": {
|
|
".eslintrc": "jsonc",
|
|
".prettierrc": "jsonc",
|
|
".eslintignore": "ignore"
|
|
},
|
|
"eslint.validate": ["typescript"],
|
|
"eslint.workingDirectories": [
|
|
{ "directory": "./", "changeProcessCWD": true },
|
|
{ "directory": "./server", "changeProcessCWD": true }
|
|
],
|
|
"typescript.tsserver.experimental.enableProjectDiagnostics": true,
|
|
"editor.tabSize": 2,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true,
|
|
"source.fixAll.stylelint": false
|
|
},
|
|
"css.validate": false,
|
|
"less.validate": false,
|
|
"scss.validate": false,
|
|
"javascript.validate.enable": false,
|
|
"javascript.format.enable": false,
|
|
"typescript.format.enable": false,
|
|
"search.exclude": {
|
|
".git": true,
|
|
".eslintcache": true,
|
|
".erb/dll": true,
|
|
"release/{build,app/dist}": true,
|
|
"node_modules": true,
|
|
"npm-debug.log.*": true,
|
|
"test/**/__snapshots__": true,
|
|
"package-lock.json": true,
|
|
"*.{css,sass,scss}.d.ts": true
|
|
},
|
|
"rest-client.environmentVariables": {
|
|
"$shared": {
|
|
"host": "http://localhost:9321"
|
|
},
|
|
"dev-user": {
|
|
"token": "",
|
|
"refreshToken": "",
|
|
"authUsername": "user",
|
|
"authPassword": "user"
|
|
},
|
|
"dev-admin": {
|
|
"token": "",
|
|
"refreshToken": "",
|
|
"authUsername": "admin",
|
|
"authPassword": "admin"
|
|
}
|
|
}
|
|
}
|