Skip to content

Commit

Permalink
Release 1.2.0 (#6)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
codingwithchris authored Mar 20, 2021
1 parent 411e8b2 commit 02e3549
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
1 change: 0 additions & 1 deletion rules/react.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
module.exports = {
extends: ['prettier/react'],
plugins: ['react-hooks'],
settings: {
react: {
Expand Down
5 changes: 1 addition & 4 deletions rules/typescript.js
Original file line number Diff line number Diff line change
@@ -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',
Expand Down

0 comments on commit 02e3549

Please sign in to comment.