mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-02 02:57:23 +00:00
48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"extends": [
|
|
"tslint:latest",
|
|
"tslint-config-prettier",
|
|
"tslint-immutable"
|
|
],
|
|
"rules": {
|
|
"interface-name": [
|
|
true,
|
|
"never-prefix"
|
|
],
|
|
// TODO: allow devDependencies only in **/*.spec.ts files:
|
|
// waiting on https://github.com/palantir/tslint/pull/3708
|
|
"no-implicit-dependencies": [
|
|
true,
|
|
"dev"
|
|
],
|
|
/* tslint-immutable rules */
|
|
// Recommended built-in rules
|
|
"no-var-keyword": true,
|
|
"no-parameter-reassignment": true,
|
|
// "typedef": [
|
|
// true,
|
|
// "call-signature"
|
|
// ],
|
|
// Immutability rules
|
|
// "readonly-keyword": true,
|
|
// "readonly-array": true,
|
|
// "no-let": true,
|
|
// "no-object-mutation": true,
|
|
// "no-delete": true,
|
|
"no-method-signature": true,
|
|
"no-console": false,
|
|
// Functional style rules
|
|
// "no-this": true,
|
|
// "no-class": true,
|
|
"no-mixed-interface": true,
|
|
"no-bitwise": false,
|
|
"variable-name": false
|
|
// "no-expression-statement": [
|
|
// true,
|
|
// { "ignore-prefix": ["console.", "process.exit"] }
|
|
// ],
|
|
// "no-if-statement": true
|
|
/* end tslint-immutable rules */
|
|
}
|
|
}
|