mirror of
https://github.com/valitydev/checkout.git
synced 2024-11-06 10:35:20 +00:00
26 lines
785 B
JSON
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"
|
|
]
|
|
}
|
|
}
|
|
}
|