// Use this file as a starting point for your project's .eslintrc. // Copy this file, and add rule overrides as needed. { "extends": "airbnb", "rules": { "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], "comma-dangle": ["error", "never"], "prefer-stateless-function": [0, { "ignorePureComponents": true }], "no-plusplus": [0], "arrow-parens": [1, "always"] }, "env": { "browser": true, "jest": true } }