{
  "plugins": ["react"],

  "ecmaFeatures": {
    "jsx": true
  },

  "rules": {
    "react/jsx-boolean-value": [2, "always"],
    "react/jsx-closing-bracket-location": [2, {"location": "tag-aligned"}],
    "react/jsx-indent-props": [2, 2],
    "react/jsx-no-duplicate-props": 2,
    "react/jsx-no-literals": 2,
    "react/jsx-no-undef": 2,
    "react/jsx-uses-react": 2,
    "react/jsx-uses-vars": 2,
    "react/no-multi-comp": 2,
    "react/no-unknown-property": 2,
    "react/prop-types": 2,
    "react/react-in-jsx-scope": 2,
    "react/self-closing-comp": 2,
    "react/sort-comp": [2, {
      "order": [
        "/^constructor$/",
        "lifecycle",
        "everything-else",
        "render"
      ]
    }],
    "react/wrap-multilines": 2,

    "react/prefer-es6-class": 1
  }
}
