.eslintrc.yaml 612 Bytes
parser: babel-eslint
extends:
  - airbnb
  - prettier
plugins:
  - flowtype
rules:
  eqeqeq:
    - error
    - allow-null
  comma-dangle: off
  prefer-destructuring: off
  operator-linebreak: off
  no-unused-expressions:
    - error
    - allowShortCircuit: true
  no-use-before-define: off
  no-multi-spaces: off
  no-nested-ternary: off
  no-cond-assign:
    - error
    - except-parens
  no-plusplus:
    - error
    - allowForLoopAfterthoughts: true
  no-continue: off
  arrow-parens: off
  key-spacing:
    - warn
    - beforeColon: false
      afterColon: true
      mode: 'minimum'
  react/sort-comp: off