.eslintrc 245 B

12345678910
  1. {
  2. "extends": "./index.js",
  3. "rules": {
  4. // disable requiring trailing commas because it might be nice to revert to
  5. // being JSON at some point, and I don't want to make big changes now.
  6. "comma-dangle": 0,
  7. "max-len": 0,
  8. },
  9. }