mirror of
https://github.com/wassname/talk.git
synced 2026-07-14 11:18:50 +08:00
4c65d43954
* feat: initial support for auto pre-moderation * chore: refactor collection access * fix: linting * fix: rebasing issue * fix: exported helpers * feat: added extensions, lintd * fix: rebase fix * feat: renamed automaticPreModeration to recentCommentHistory * feat: initial implementation of admin config * feat: support recent history markers * feat: rename visible to published * feat: reworked history drawer * chore: extracted tooltip * feat: implemented user drawer * fix: fixed translation key * fix: resolved issue with NaN
22 lines
493 B
JSON
22 lines
493 B
JSON
{
|
|
"files.associations": {
|
|
"*.css": "postcss"
|
|
},
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/CVS": true,
|
|
"**/.DS_Store": true,
|
|
".vs": true
|
|
},
|
|
"tslint.exclude": "**/node_modules/**",
|
|
"tslint.jsEnable": true,
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"postcss.validate": false,
|
|
"javascript.preferences.importModuleSpecifier": "non-relative",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.tslint": true
|
|
}
|
|
}
|