.eslintrc.json 247 B

123456789101112131415
  1. {
  2. "extends": "./node_modules/mwts/",
  3. "ignorePatterns": ["node_modules", "dist", "test", "jest.config.js", "typings"],
  4. "env": {
  5. "jest": true
  6. },
  7. "rules": {
  8. "max-len": [
  9. "warn",
  10. {
  11. "code": 250
  12. }
  13. ]
  14. }
  15. }