mirror of
https://github.com/wassname/talk.git
synced 2026-07-14 11:18:50 +08:00
* fix: reversed `new-password` autocomplete option * feat: initial implementation * fix: localization and testing * fix: updated snapshot
21 lines
471 B
JSON
21 lines
471 B
JSON
{
|
|
"editor.formatOnSave": true,
|
|
"files.associations": {
|
|
"*.css": "postcss"
|
|
},
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
".vs": true
|
|
},
|
|
"tslint.exclude": "**/node_modules/**",
|
|
"tslint.autoFixOnSave": true,
|
|
"tslint.jsEnable": true,
|
|
"tslint.nodePath": "node_modules/.bin/tslint",
|
|
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
"postcss.validate": false
|
|
}
|