{ "extends": [ "airbnb", "react-app", "prettier" ], "rules": { // Allow jsx tags inside .js files. "react/jsx-filename-extension": [1, {"extensions": [".js", ".jsx"]}], // Disable props spreading () warning. "react/jsx-props-no-spreading": 0, // Throw warning instead of error when using array index as a key. "react/no-array-index-key": 1, // Allow modules with named exports only. "import/prefer-default-export": 0, // Force {foo: 'bar'} object literal syntax. "object-curly-spacing": ["error", "never"], // Throw warning instead of error. Feel free to choose your favorite option https://eslint.org/docs/rules/arrow-body-style "arrow-body-style": ["warn", "as-needed"], // Make prettier code formatting suggestions more verbose. "prettier/prettier": ["warn"], // Throw warning when or are used. Use