| 1234567891011121314151617181920212223242526 |
- {
- "env": {
- "browser": true
- },
- "parser": "babel-eslint",
- "extends": "airbnb",
- "rules": {
- "arrow-body-style": 0,
- "class-methods-use-this": 0,
- "func-names": 0,
- "import/extensions": 0,
- "import/no-extraneous-dependencies": 0,
- "import/no-unresolved": 0,
- "jsx-a11y/anchor-is-valid":0,
- "jsx-a11y/no-static-element-interactions": 0,
- "no-param-reassign": 0,
- "no-plusplus": 0,
- "object-curly-newline": 0,
- "react/destructuring-assignment": 0,
- "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
- "react/no-multi-comp": 0,
- "react/prefer-stateless-function": 0,
- "react/prop-types": 0,
- "react/sort-comp": 0
- }
- }
|