Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- "env": {
- "node": true,
- "browser": true,
- "es6": true,
- "jest": true
- },
- "parser": "babel-eslint",
- "extends": "airbnb",
- "parserOptions": {
- "ecmaFeatures": {
- "legacyDecorators": true
- }
- },
- "rules": {
- "react/jsx-filename-extension": ["error", { "extensions": [".js", ".jsx"] }],
- "no-console": 0,
- "no-tabs": 0,
- "arrow-body-style": "warn",
- "react-native/no-unused-styles": 2,
- "react-native/split-platform-components": 0,
- "react-native/no-inline-styles": 0,
- "react-native/no-color-literals": 0,
- "semi": [2, "never"],
- "class-methods-use-this": 0,
- "react/prefer-stateless-function": [0, { "ignorePureComponents": 1 }],
- "react/forbid-prop-types": 0,
- "no-underscore-dangle": 0,
- "no-restricted-properties": 0,
- "no-plusplus": 0,
- "no-alert": 0,
- "max-len": 0,
- "global-require": 0,
- "react/jsx-no-bind": 0,
- "react/prefer-es6-class": 0,
- "react/react-in-jsx-scope": 0,
- "space-before-function-paren": 0,
- "linebreak-style": 0,
- "react/jsx-quotes": 0,
- "react/no-array-index-key": 0,
- "react/jsx-boolean-value": 0,
- "no-nested-ternary": 0,
- "func-names": 0,
- "no-bitwise": 0,
- "no-await-in-loop": 0,
- "jsx-quotes": [2, "prefer-double"],
- "eqeqeq": 0,
- "no-return-await": 0,
- "camelcase": 0
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement