##// END OF EJS Templates
Corrected Scope.own() to cleanup the supplied object immediately when the scope is disposed already
Corrected Scope.own() to cleanup the supplied object immediately when the scope is disposed already

File last commit:

r79:e5bb5e80ce96 v1.2.3 default
r131:c7d9ad82b374 v1.8.1 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"
]
}
}