##// END OF EJS Templates
fixed NlsBundle locale package loading...
fixed NlsBundle locale package loading corrected DjxFragment params and return value fixed regression in DjxWidgetBase attach points processing fixed empty RenditionBase startup

File last commit:

r79:e5bb5e80ce96 v1.2.3 default
r112:2ccfaae984e9 v1.4.4 default
Show More
tslint.json
47 lines | 1.2 KiB | application/json | JsonLexer
{
"extends": "tslint:recommended",
"defaultSeverity": "warn",
"rules": {
"align": [
true,
"parameters",
"statements"
],
"interface-name": [
false
],
"max-line-length": [
true,
185
],
"quotemark": [true, "double", "avoid-escape"],
"member-access": false,
"semicolon": [true, "always", "ignore-bound-class-methods"],
"no-bitwise": false,
"no-empty": false,
"no-namespace": false,
"ordered-imports": false,
"no-return-await": true,
"no-floating-promises": true,
"one-line": [
true,
"check-open-brace",
"check-catch",
"check-whitespace"
],
"object-literal-sort-keys": false,
"trailing-comma": [
true,
{
"singleline": "never",
"multiline": "never"
}
],
"variable-name": false,
"curly": false,
"array-type": false,
"arrow-parens": [
true,
"ban-single-arg-parens"
]
}
}