mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
{ |
|
"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 */ |
|
} |
|
}
|
|
|