.eslintrc 226 B

12345678
  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. },
  8. }