{ "extends": "airbnb", "env": { "browser": true, "node": true, "jest": true }, "plugins": [ "reactintl" ], "rules": { "reactintl/contains-hardcoded-copy": [ 2 ], "prefer-destructuring": [ "off", { "object": false, "array": false } ], "linebreak-style": 0, "operator-linebreak": 0, "react/destructuring-assignment": [ "off", "never" ], "react/prop-types": [ "error", { "ignore": [ "row" ] } ], "no-plusplus": "off", "no-unused-vars": [ "error", { "vars": "all", "args": "none" } ], "comma-dangle": [ "error", { "arrays": "never", "objects": "always-multiline", "imports": "never", "exports": "never", "functions": "ignore" } ], "arrow-parens": [ 2, "as-needed" ], "implicit-arrow-linebreak": "off", "no-unused-expressions": [ "error", { "allowTernary": true } ], "camelcase": [ "warn" ], "object-shorthand": [ "error", "never" ], "react/no-array-index-key": [ "warn" ], "no-shadow": [ "warn" ], "max-len": [ "warn", { "code": 200 } ], "jsx-a11y/no-autofocus": "off", "react/no-did-update-set-state": "warn", "no-prototype-builtins": "off", "import/no-extraneous-dependencies": [ "error", { "devDependencies": true, "optionalDependencies": false, "peerDependencies": false } ] } }