CoastalCommitsPastes/server/node_modules/strong-globalize/tslint.json
2022-03-06 16:46:59 -08:00

28 lines
837 B
JSON

{
"$schema": "http://json.schemastore.org/tslint",
// See https://palantir.github.io/tslint/rules/
"rules": {
// These rules find errors related to TypeScript features.
"adjacent-overload-signatures": true,
"prefer-for-of": true,
"unified-signatures": true,
"no-any": true,
// These rules catch common errors in JS programming or otherwise
// confusing constructs that are prone to producing bugs.
"label-position": true,
"no-arg": true,
"no-construct": true,
"no-duplicate-variable": true,
"no-invalid-this": true,
"no-misused-new": true,
"no-shadowed-variable": true,
"no-string-throw": true,
"no-unused-expression": true,
"no-unused-variable": true,
"no-var-keyword": true,
"triple-equals": [true, "allow-null-check", "allow-undefined-check"]
}
}