.eslintrc.json 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "root": true,
  3. "ignorePatterns": [
  4. "projects/**/*"
  5. ],
  6. "overrides": [
  7. {
  8. "files": [
  9. "*.ts"
  10. ],
  11. "parserOptions": {
  12. "project": [
  13. "tsconfig.json",
  14. "e2e/tsconfig.json"
  15. ],
  16. "createDefaultProgram": true
  17. },
  18. "extends": [
  19. "plugin:@angular-eslint/ng-cli-compat",
  20. "plugin:@angular-eslint/ng-cli-compat--formatting-add-on",
  21. "plugin:@angular-eslint/template/process-inline-templates"
  22. ],
  23. "rules": {
  24. "@typescript-eslint/explicit-member-accessibility": [
  25. "off",
  26. {
  27. "accessibility": "explicit"
  28. }
  29. ],
  30. "arrow-parens": [
  31. "off",
  32. "always"
  33. ],
  34. "@angular-eslint/component-selector": [
  35. "error",
  36. {
  37. "prefix": [ "tb" ]
  38. }
  39. ],
  40. "id-blacklist": [
  41. "error",
  42. "any",
  43. "Number",
  44. "String",
  45. "string",
  46. "Boolean",
  47. "boolean",
  48. "Undefined",
  49. "undefined"
  50. ],
  51. "import/order": "off",
  52. "@typescript-eslint/member-ordering": "off",
  53. "no-underscore-dangle": "off",
  54. "@typescript-eslint/naming-convention": "off"
  55. }
  56. },
  57. {
  58. "files": [
  59. "*.html"
  60. ],
  61. "extends": [
  62. "plugin:@angular-eslint/template/recommended"
  63. ],
  64. "rules": {}
  65. }
  66. ]
  67. }