.eslintrc 213 B

1234567891011121314
  1. {
  2. extends: [
  3. "airbnb-base",
  4. "plugin:flowtype/recommended"
  5. ],
  6. parser: "babel-eslint",
  7. plugins: [
  8. "flowtype"
  9. ],
  10. rules: {
  11. 'max-len': 'off',
  12. 'no-template-curly-in-string': 'off',
  13. }
  14. }