neelxie/EpicMailReactJs

View on GitHub
.eslintrc.json

Summary

Maintainability
Test Coverage
{
    "extends": "airbnb",
    "env": {
      "jest": true,
      "browser": true
    },
    "parser": "babel-eslint",
    "rules": {
      "arrow-parens":0,
      "arrow-body-style":0,
      "no-named-as-default":0,
      "jsx-a11y/anchor-is-valid":["enabled", "never"],
      "react/button-has-type":["enabled", "never"],
      "react/no-array-index-key":["enabled", "never"],
      "jsx-a11y/no-static-element-interactions":["enabled", "never"],
      "jsx-a11y/click-events-have-key-events":["enabled", "never"],
      "import/no-named-as-default":["enabled", "never"],
      "react/jsx-filename-extension": 0,
      "react/display-name": [1, { "ignoreTranspilerName": false }],
      "react/forbid-prop-types": [1, { "forbid": ["any"] }],
      "react/jsx-boolean-value": 1,
      "react/jsx-closing-bracket-location": 0,
      "react/jsx-curly-spacing": 1,
      "react/jsx-indent-props": 0,
      "react/jsx-key": 1,
      "react/jsx-max-props-per-line": 0,
      "react/jsx-no-bind": 1,
      "react/jsx-no-duplicate-props": 1,
      "react/jsx-no-literals": 0,
      "react/jsx-no-undef": 1,
      "react/jsx-pascal-case": 1,
      "react/jsx-sort-prop-types": 0,
      "react/jsx-sort-props": 0,
      "react/jsx-uses-react": 1,
      "react/jsx-uses-vars": 1,
      "react/no-danger": 0,
      "react/no-did-mount-set-state": 1,
      "react/no-did-update-set-state": 1,
      "react/no-direct-mutation-state": 1,
      "react/no-multi-comp": 1,
      "react/no-set-state": 0,
      "react/no-undef": 0,
      "react/no-unknown-property": 1,
      "react/prefer-es6-class": 1,
      "react/prop-types": 1,
      "react/react-in-jsx-scope": 1,
      "react/self-closing-comp": 1,
      "react/sort-comp": 1,
      "react/prefer-stateless-function": 0,
      "jsx-a11y/no-noninteractive-tabindex": 0,
      "jsx-a11y/label-has-associated-control": 0,
      "jsx-a11y/label-has-for":0
    }
  }