Skip to content

Commit 02e3549

Browse files
Release 1.2.0 (#6)
* Migrate to ESLint Config Prettier 8+ All configs merged into a single config :) Details in link below: https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md#version-800-2021-02-21 * Bump Version to 1.2.0
1 parent 411e8b2 commit 02e3549

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codingwithchris/eslint-config",
3-
"version": "1.1.4",
3+
"version": "1.2.0",
44
"description": "My ESLint config for writing clean, consistent code",
55
"private": false,
66
"publishConfig": {

rules/react.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
module.exports = {
2-
extends: ['prettier/react'],
32
plugins: ['react-hooks'],
43
settings: {
54
react: {

rules/typescript.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
module.exports = {
2-
extends: [
3-
'plugin:@typescript-eslint/recommended',
4-
'prettier/@typescript-eslint',
5-
],
2+
extends: ['plugin:@typescript-eslint/recommended'],
63
plugins: ['@typescript-eslint'],
74
parserOptions: {
85
project: './tsconfig.json',

0 commit comments

Comments
 (0)