.eslintrc 233 B

123456789
  1. {
  2. "rules": {
  3. // disabled because I find it tedious to write tests while following this rule
  4. "no-shadow": 0,
  5. // tests uses `t` for tape
  6. "id-length": [2, {"min": 2, "properties": "never", "exceptions": ["t"]}]
  7. }
  8. }