{ "parser": "babel-eslint", "extends": [ "airbnb-base", "prettier", ], "env": { "browser": true, "node": true, "jest/globals": true }, "rules": { "prettier/prettier": ["error", { "printWidth": 100, "singleQuote": true, "trailingComma": "es5", "bracketSpacing": false} ], "no-confusing-arrow": "error", "curly": ["error", "all"], "quotes": 0, "no-console": 0, "max-len": ["error", 100, 2, { "ignoreUrls": true, "ignoreStrings": true, "ignoreComments": true}], "no-return-assign": [ 2, "except-parens" ], "object-curly-spacing": [2, "never"], "no-unused-vars": ["error", { "argsIgnorePattern": "_" }], }, "plugins": [ "prettier", "jest", ], }