2017-05-06 15:39:25 -06:00
|
|
|
{
|
2017-08-29 23:21:36 -06:00
|
|
|
"defaultSeverity": "warning",
|
2017-06-20 08:45:25 -06:00
|
|
|
"extends": [
|
2017-08-29 23:21:36 -06:00
|
|
|
"tslint:latest", "tslint-react"
|
2017-06-20 08:45:25 -06:00
|
|
|
],
|
|
|
|
"jsRules": {},
|
|
|
|
"rules": {
|
|
|
|
"no-console": [
|
2017-09-27 19:20:50 -06:00
|
|
|
true
|
2017-05-06 15:39:25 -06:00
|
|
|
],
|
2017-06-20 08:45:25 -06:00
|
|
|
"max-classes-per-file": [
|
2018-07-25 12:53:33 -06:00
|
|
|
true, 3
|
2017-06-20 08:45:25 -06:00
|
|
|
],
|
2017-06-30 01:08:51 -06:00
|
|
|
"ordered-imports": true,
|
2017-06-20 08:45:25 -06:00
|
|
|
"variable-name": [
|
|
|
|
"allow-leading-underscore"
|
|
|
|
],
|
2017-06-30 01:08:51 -06:00
|
|
|
"no-namespace": false,
|
2017-06-20 08:45:25 -06:00
|
|
|
"interface-name": false,
|
2017-06-30 01:08:51 -06:00
|
|
|
"member-access": [
|
|
|
|
true,
|
|
|
|
"no-public"
|
|
|
|
],
|
|
|
|
"member-ordering": [
|
|
|
|
true,
|
|
|
|
{
|
2018-07-25 12:53:33 -06:00
|
|
|
"order": "statics-first"
|
2017-06-30 01:08:51 -06:00
|
|
|
}
|
2017-08-29 22:42:56 -06:00
|
|
|
],
|
|
|
|
"object-literal-sort-keys": [
|
|
|
|
false
|
|
|
|
],
|
|
|
|
"no-submodule-imports": false,
|
2018-04-12 17:27:42 -06:00
|
|
|
"jsx-boolean-value": [ true, "never" ],
|
2018-08-06 12:04:08 +03:00
|
|
|
"no-implicit-dependencies": false,
|
|
|
|
"curly": [ true, "ignore-same-line" ]
|
2017-06-20 08:45:25 -06:00
|
|
|
},
|
|
|
|
"rulesDirectory": []
|
2017-06-30 01:08:51 -06:00
|
|
|
}
|