.eslintrc.json 767 B

12345678910111213141516171819202122232425262728
  1. {
  2. "extends": "./node_modules/mwts/",
  3. "ignorePatterns": [
  4. "node_modules",
  5. "dist",
  6. "test",
  7. "jest.config.js",
  8. "typings",
  9. "public/**/**",
  10. "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. "node/no-unsupported-features/node-builtins": "off",
  24. "@typescript-eslint/ban-types": "off",
  25. "no-control-regex": "off",
  26. "prefer-const": "off"
  27. }
  28. }