.eslintrc.json 246 B

123456789101112
  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. "prettier/prettier":"off",
  9. "eol-last":"off",
  10. "quotes":"off"
  11. }
  12. }