mirror of
https://github.com/wassname/talk.git
synced 2026-07-01 05:59:50 +08:00
4606626ec4
* feat: initial support for synced tenants * fix: cleanup * fix: logger now respects logging level * fix: cache now ignores updates issued from itself * feat: print subscriber count * fix: support tenant cache for oidc strategy * fix: replace some constructor initializers with property initializers * fix: audit * [next] Comments and Moderation (#1759) * feat: initial moderation + validation for new comments * fix: added Promiseable type * feat: initial actions impl * feat: more moderation phases * fix: handle settings inheritence * fix: moved settings into new file * fix: defaults and documentation * fix: replace merge with object spread * feat: added integration with akismet * fix: fixed compile * fix: import ordering * fix: merge issue causing build to fail
38 lines
836 B
JSON
38 lines
836 B
JSON
{
|
|
"extends": [
|
|
"tslint:recommended",
|
|
"tslint-config-prettier",
|
|
"tslint-plugin-prettier"
|
|
],
|
|
"rules": {
|
|
"prettier": true,
|
|
"object-literal-sort-keys": false,
|
|
"interface-name": [true, "never-prefix"],
|
|
"no-switch-case-fall-through": true,
|
|
"member-ordering": false,
|
|
"variable-name": [
|
|
true,
|
|
"ban-keywords",
|
|
"check-format",
|
|
"allow-leading-underscore",
|
|
"allow-pascal-case"
|
|
]
|
|
},
|
|
"jsRules": {
|
|
"prettier": true,
|
|
"object-literal-sort-keys": false,
|
|
"no-switch-case-fall-through": true,
|
|
"member-ordering": false,
|
|
"variable-name": [
|
|
true,
|
|
"ban-keywords",
|
|
"check-format",
|
|
"allow-leading-underscore",
|
|
"allow-pascal-case"
|
|
]
|
|
},
|
|
"linterOptions": {
|
|
"exclude": ["**/node_modules/**/*", "./config/coverage/**"]
|
|
}
|
|
}
|