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.

23 lines
516 B

3 months ago
  1. {
  2. "defaultSeverity": "error",
  3. "extends": [
  4. "tslint-react"
  5. ],
  6. "jsRules": {},
  7. "rules": {
  8. "member-access": false,
  9. "ordered-imports": false,
  10. "quotemark": false,
  11. "no-console": false,
  12. "semicolon": false,
  13. "jsx-no-lambda": false,
  14. "no-implicit-dependencies": ["optional", ["src"]]
  15. },
  16. "rulesDirectory": [],
  17. "linterOptions": {
  18. "exclude": [
  19. "config/**/*.js",
  20. "node_modules/**/*.ts"
  21. ]
  22. }
  23. }