{ "rules":{ "space-before-blocks": "off", "object-curly-spacing": "off", "class-methods-use-this": "off", "key-spacing": "off", "indent": "off", "no-console":"off" , "linebreak-style": ["off", "windows"], #"no-console":["error",{ "allow": ["log", "warn", "debug", "error"] }], "no-plusplus":["error",{ "allowForLoopAfterthoughts": true }], # "linebreak-style": ["error", "windows"], "quotes": ["error", "single", { "avoidEscape": true }], "jsx-quotes": ["error", "prefer-single"], "no-restricted-syntax":"off", "no-underscore-dangle": ["error", { "allowAfterThis": true }], "comma-dangle": ["error", "only-multiline"], "arrow-body-style": "off", #["error", "as-needed"], "arrow-parens": "off", "no-return-assign": ["off"], "no-empty-class": "off", "no-empty-label":"off", "no-extra-strict":"off", "no-wrap-func" :"off", "space-after-function-name" :"off", "space-after-keywords" :"off", "space-in-brackets" :"off", "space-return-throw-case" :"off", "import/no-extraneous-dependencies": "off", "import/no-unresolved": "off", "import/prefer-default-export": "off", "react-native/no-unused-styles": 2, "react-native/split-platform-components": 2, "react-native/no-inline-styles": 2, "react-native/no-color-literals": 2, "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], "react/jsx-indent": "off", "react/jsx-space-before-closing": "off", "react/jsx-tag-spacing":"off", "react/jsx-first-prop-new-line": "off", "react/jsx-closing-bracket-location": "off", "react/jsx-indent-props":"off", "react/jsx-boolean-value":"off", }, "extends": ["airbnb","future/react"], "installedESLint": true, "parserOptions": { "ecmaVersion": 7, "ecmaFeatures": { "jsx": true } }, "globals": { "__DEV__": true }, "plugins": [ "react", "react-native" ] }