| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "parser": "babel-eslint",
- "extends": [
- "airbnb"
- ],
- "env": {
- "browser": true,
- "jest": true
- },
- "globals": {
- "__DEV__": true,
- "__PROD__": true,
- "__DEBUG__": true,
- "__COVERAGE__": true,
- "__BASENAME__": true
- },
- "settings": {
- "import/resolver": {
- "webpack": {
- "config": "webpack.config.js"
- }
- }
- },
- "rules": {
- "semi": [2, "never"],
- "comma-dangle": [2, "always-multiline"],
- "class-methods-use-this": 0,
- "max-len": 0,
- "prefer-const": 0,
- "arrow-parens": 0,
- "react/prefer-stateless-function": 0,
- "react/no-array-index-key": 0,
- "no-param-reassign": 0,
- "no-shadow": 0,
- "arrow-body-style": 0,
- "global-require": 0,
- "no-unused-expressions": 0,
- "no-confusing-arrow": 0,
- "import/no-dynamic-require": 0,
- "import/no-unresolved": 0,
- "import/extensions": 0,
- "import/no-extraneous-dependencies": 0,
- "import/prefer-default-export": 0,
- "react/require-default-props": 0,
- "react/forbid-prop-types": 0,
- "jsx-a11y/href-no-hash": 0
- }
- }
|