checkout/tslint.json

26 lines
785 B
JSON
Raw Normal View History

2017-10-18 15:52:27 +00:00
{
"extends": ["tslint:recommended", "tslint-react", "tslint-immutable", "tslint-config-prettier"],
"rules": {
"member-access": [true, "no-public"],
"trailing-comma": false,
"ordered-imports": false,
"no-console": [true, "log"],
"max-line-length": false,
"object-literal-sort-keys": false,
"interface-name": false,
"no-namespace": false,
"jsx-alignment": false,
"jsx-no-multiline-js": false,
2020-01-17 15:19:22 +00:00
"jsx-no-lambda": false,
"variable-name": {
"options": [
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case",
"require-const-for-all-caps"
]
}
}
2017-10-18 15:52:27 +00:00
}