.eslintrc.json 536 B

12345678910111213141516171819202122232425
  1. {
  2. "extends": "./node_modules/mwts/",
  3. "ignorePatterns": [
  4. "node_modules",
  5. "dist",
  6. "test",
  7. "jest.config.js",
  8. "typings",
  9. "src/app/public/**/**",
  10. "src/app/view/**/**"
  11. ],
  12. "env": {
  13. "jest": true
  14. },
  15. "rules": {
  16. "@typescript-eslint/explicit-module-boundary-types": "off",
  17. "@typescript-eslint/no-unused-vars": "off",
  18. "@typescript-eslint/ban-ts-comment": "off",
  19. "node/no-extraneous-import": "off",
  20. "no-empty": "off",
  21. "node/no-extraneous-require": "off",
  22. "eqeqeq": "off"
  23. }
  24. }