| 12345678910111213141516171819202122232425262728293031 |
- {
- "extends": ["airbnb", "prettier"],
- "plugins": ["prettier"],
- "parser": "babel-eslint",
- "env": {
- "browser": true,
- "es6": true
- },
- "rules": {
- "import/no-unresolved": 0,
- "prettier/prettier": 0,
- "no-unused-vars": [
- "error",
- { "vars": "local", "varsIgnorePattern": "WebBrowser" }
- ],
- "no-nested-ternary": 0,
- "react/no-array-index-key": 0,
- "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
- "no-unused-expressions": [
- "error",
- { "allowShortCircuit": true, "allowTernary": true }
- ],
- "no-param-reassign": 0,
- "react/prop-types": [0, { "ignore": ["navigation"] }],
- "react/jsx-props-no-spreading": [
- 1,
- { "html": "ignore", "exceptions": ["Icon", "props", "Avatar", "Text"] }
- ],
- "react/jsx-curly-newline": "off"
- }
- }
|