cosmjs/tslint.json
2020-02-19 08:58:34 +01:00

35 lines
1.1 KiB
JSON

{
"defaultSeverity": "error",
"extends": ["tslint:latest", "tslint-config-prettier"],
"jsRules": {},
"rules": {
"array-type": [true, "array"],
"await-promise": true,
"callable-types": false,
"comment-format": [true, "check-space"],
"curly": false,
"deprecation": true,
"interface-name": [true, "never-prefix"],
"max-classes-per-file": false,
"no-conditional-assignment": false,
"no-console": [true, "log"],
"no-empty": false,
"no-empty-interface": false,
"no-floating-promises": false,
"no-implicit-dependencies": false,
"no-parameter-reassignment": false,
"no-unnecessary-class": [true, "allow-static-only"],
"no-unnecessary-type-assertion": false,
"no-var-keyword": true,
"object-literal-shorthand": [true, "never"],
"object-literal-sort-keys": false,
"ordered-imports": false,
"prefer-const": false,
"promise-function-async": true,
"radix": false,
"typedef": [true, "call-signature"],
"variable-name": [true, "check-format", "allow-leading-underscore"]
},
"rulesDirectory": []
}