.eslintrc 278 B

1234567891011
  1. {
  2. "root": true,
  3. "extends": "@ljharb",
  4. "rules": {
  5. "id-length": 0,
  6. "new-cap": [2, { "capIsNewExceptions": ["RequireObjectCoercible"] }],
  7. "no-restricted-syntax": [2, "BreakStatement", "ContinueStatement", "DebuggerStatement", "LabeledStatement", "WithStatement"],
  8. },
  9. }