2016-03-28 17:25:22 -04:00
|
|
|
{
|
2016-10-27 14:48:47 -04:00
|
|
|
"rulesDirectory": [
|
|
|
|
"dist/tools/tslint",
|
2016-12-08 16:46:08 -05:00
|
|
|
"node_modules/vrsource-tslint-rules/rules",
|
2019-05-02 11:44:24 -04:00
|
|
|
"node_modules/tslint-eslint-rules/dist/rules",
|
|
|
|
"node_modules/tslint-no-toplevel-property-access/rules"
|
2016-10-27 14:48:47 -04:00
|
|
|
],
|
|
|
|
"rules": {
|
2018-08-16 18:55:45 -04:00
|
|
|
"file-header": [
|
|
|
|
true,
|
|
|
|
"Copyright Google Inc\\."
|
|
|
|
],
|
|
|
|
"no-console": [
|
|
|
|
true,
|
|
|
|
"log"
|
|
|
|
],
|
2019-10-16 19:52:48 -04:00
|
|
|
"no-construct": true,
|
2016-10-27 14:48:47 -04:00
|
|
|
"no-duplicate-imports": true,
|
|
|
|
"no-duplicate-variable": true,
|
2016-10-27 14:57:10 -04:00
|
|
|
"no-jasmine-focus": true,
|
2016-11-12 08:14:20 -05:00
|
|
|
"no-var-keyword": true,
|
2016-10-27 14:48:47 -04:00
|
|
|
"require-internal-with-underscore": true,
|
2019-05-02 11:44:24 -04:00
|
|
|
"no-toplevel-property-access": [
|
|
|
|
true,
|
|
|
|
"packages/animations/src/",
|
|
|
|
"packages/animations/browser/",
|
|
|
|
"packages/common/src/",
|
|
|
|
"packages/core/src/",
|
|
|
|
"packages/elements/src/",
|
|
|
|
"packages/forms/src/",
|
|
|
|
"packages/http/src/",
|
|
|
|
"packages/platform-browser/src/",
|
|
|
|
"packages/router/src/"
|
|
|
|
],
|
2018-08-16 18:55:45 -04:00
|
|
|
"semicolon": [
|
|
|
|
true
|
|
|
|
],
|
|
|
|
"variable-name": [
|
|
|
|
true,
|
|
|
|
"ban-keywords"
|
|
|
|
],
|
|
|
|
"no-inner-declarations": [
|
|
|
|
true,
|
|
|
|
"function"
|
|
|
|
],
|
|
|
|
"no-debugger": true
|
2017-09-22 13:51:03 -04:00
|
|
|
},
|
|
|
|
"jsRules": {
|
2018-08-16 18:55:45 -04:00
|
|
|
"file-header": [
|
|
|
|
true,
|
|
|
|
"Copyright Google Inc\\."
|
|
|
|
],
|
|
|
|
"no-console": [
|
|
|
|
true,
|
|
|
|
"log"
|
|
|
|
],
|
2017-09-22 13:51:03 -04:00
|
|
|
"no-duplicate-imports": true,
|
|
|
|
"no-duplicate-variable": true,
|
|
|
|
"no-jasmine-focus": true,
|
|
|
|
"require-internal-with-underscore": true,
|
2018-08-16 18:55:45 -04:00
|
|
|
"semicolon": [
|
|
|
|
true
|
|
|
|
],
|
|
|
|
"variable-name": [
|
|
|
|
true,
|
|
|
|
"ban-keywords"
|
|
|
|
],
|
|
|
|
"no-inner-declarations": [
|
|
|
|
true,
|
|
|
|
"function"
|
|
|
|
]
|
2016-10-27 14:48:47 -04:00
|
|
|
}
|
2019-05-02 11:44:24 -04:00
|
|
|
}
|