.eslintrc 333 B

12345678910111213
  1. {
  2. "root": true,
  3. "extends": "airbnb-base",
  4. "rules": {
  5. "indent": ["error", 4, { SwitchCase: 1, VariableDeclarator: 1, outerIIFEBody: 1 }],
  6. "max-len": ["error", 120, 4, {
  7. ignoreUrls: true,
  8. ignoreComments: false,
  9. ignoreStrings: true,
  10. ignoreTemplateLiterals: true,
  11. }]
  12. }
  13. }