From 36a02edf11bb606c23e282b688b66d097842ebf0 Mon Sep 17 00:00:00 2001 From: "Dr. Derek Austin" Date: Wed, 1 Sep 2021 08:41:43 -0700 Subject: [PATCH] Remove duplicate prettier.config.js settings from .eslintrc.json (#5087) * chore: remove duplicate prettier.config.js settings from .eslintrc.json * chore: remove unnecessary brackets now that "prettier/prettier" rule is no longer an array -- this a purely cosmetic change --- .eslintrc.json | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index edbcdd19e..7bff72c63 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -12,18 +12,6 @@ "camelcase": ["error", { "allow": ["^unstable_"] }], "no-unused-vars": [2, { "args": "all", "argsIgnorePattern": "^_" }], "no-warning-comments": 0, - "prettier/prettier": [ - "error", - { - "semi": false, - "singleQuote": true, - "printWidth": 100, - "tabWidth": 2, - "useTabs": false, - "trailingComma": "es5", - "bracketSpacing": true, - "parser": "flow" - } - ] + "prettier/prettier": "error" } }