12345678910111213141516171819 |
- {
- "extends": [
- "tslint:recommended",
- "tslint-react",
- "tslint-config-prettier"
- ],
- "rules": {
- "jsx-no-lambda": false,
- "no-console": false,
- "ordered-imports": false
- },
- "linterOptions": {
- "exclude": [
- "config/**/*.js",
- "node_modules/**/*.ts",
- "coverage/lcov-report/*.js"
- ]
- }
- }
|