.eslintrc.json 832 B

123456789101112131415161718192021222324252627282930
  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. "packages"
  12. ],
  13. "env": {
  14. "jest": true
  15. },
  16. "rules": {
  17. "@typescript-eslint/explicit-module-boundary-types": "off",
  18. "@typescript-eslint/no-unused-vars": "off",
  19. "@typescript-eslint/ban-ts-comment": "off",
  20. "node/no-extraneous-import": "off",
  21. "no-empty": "off",
  22. "node/no-extraneous-require": "off",
  23. "node/no-unpublished-import": "off",
  24. "eqeqeq": "off",
  25. "node/no-unsupported-features/node-builtins": "off",
  26. "@typescript-eslint/ban-types": "off",
  27. "no-control-regex": "off",
  28. "prefer-const": "off"
  29. }
  30. }