##// END OF EJS Templates
Added 'Attrs', 'Events' type parameters to DjxWidgetBase, typed 'on' and 'emit' methods
Added 'Attrs', 'Events' type parameters to DjxWidgetBase, typed 'on' and 'emit' methods

File last commit:

r0:8e944df97a68 default
r30:a46488b209e8 v1.0.0-rc14 default
Show More
tslint.json
42 lines | 1.1 KiB | application/json | JsonLexer
{
"extends": "tslint:recommended",
"defaultSeverity": "warn",
"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,
"no-return-await": true,
"no-floating-promises": true,
"prefer-for-of": false,
"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"]
}
}