##// END OF EJS Templates
added provided and configure methods to the fluent container configuration, added applyConfig method to the container
added provided and configure methods to the fluent container configuration, added applyConfig method to the container

File last commit:

r87:dc13057a3f8d ts-plugin
r142:be7edf08a115 v1.4.0-rc3 default
Show More
tslint.json
42 lines | 1.1 KiB | application/json | JsonLexer
cin
ported IoC container to typescript...
r34 {
"extends": "tslint:recommended",
cin
Move to org.implab.gradle-typescript
r87 "defaultSeverity": "warn",
cin
ported IoC container to typescript...
r34 "rules": {
"align": [
true,
"parameters",
"statements"
],
"interface-name": [false],
"max-line-length": [ true, 185 ],
"member-access": false,
"member-ordering": [
false,
"variables-before-functions"
],
"no-bitwise": false,
"no-empty": false,
"no-namespace": false,
"ordered-imports": false,
cin
added safe.firstWhere
r75 "no-return-await": true,
"no-floating-promises": true,
"prefer-for-of": false,
cin
ported IoC container to typescript...
r34 "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"]
}
}