diff --git a/package-lock.json b/package-lock.json index bb92659..f400a27 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@codingwithchris/eslint-config", - "version": "1.1.4", + "version": "1.2.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@codingwithchris/eslint-config", - "version": "1.1.4", + "version": "1.2.0", "license": "MIT", "devDependencies": { "@types/react": "^17.0.3", diff --git a/package.json b/package.json index 6582790..4f4978d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codingwithchris/eslint-config", - "version": "1.1.4", + "version": "1.2.0", "description": "My ESLint config for writing clean, consistent code", "private": false, "publishConfig": { diff --git a/rules/react.js b/rules/react.js index edbdfb1..fc20d39 100644 --- a/rules/react.js +++ b/rules/react.js @@ -1,5 +1,4 @@ module.exports = { - extends: ['prettier/react'], plugins: ['react-hooks'], settings: { react: { diff --git a/rules/typescript.js b/rules/typescript.js index d33e688..0862267 100644 --- a/rules/typescript.js +++ b/rules/typescript.js @@ -1,8 +1,5 @@ module.exports = { - extends: [ - 'plugin:@typescript-eslint/recommended', - 'prettier/@typescript-eslint', - ], + extends: ['plugin:@typescript-eslint/recommended'], plugins: ['@typescript-eslint'], parserOptions: { project: './tsconfig.json',