checkout/tslint.json
2020-01-17 18:19:22 +03:00

26 lines
785 B
JSON

{
"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,
"jsx-no-lambda": false,
"variable-name": {
"options": [
"ban-keywords",
"check-format",
"allow-leading-underscore",
"allow-pascal-case",
"require-const-for-all-caps"
]
}
}
}