Skip to content

Commit

Permalink
Add right peerdependencies to ESLint package (#24)
Browse files Browse the repository at this point in the history
* Initial commit

* Update
  • Loading branch information
kunalnagar authored Feb 13, 2024
1 parent b03e22d commit f8c3ae8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions packages/eslint-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @kunalnagarco/eslint-config

## 2.1.0

### Minor Changes

- Add right peerdependencies to ESLint package

## 2.0.0

### Major Changes
Expand Down
4 changes: 3 additions & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kunalnagarco/eslint-config",
"version": "2.0.0",
"version": "2.1.0",
"description": "An ESLint configuration for use across javascript projects",
"files": [
"dist"
Expand Down Expand Up @@ -43,6 +43,8 @@
"eslint": ">=7.x",
"eslint-config-prettier": ">=8.x",
"eslint-plugin-import": ">=2.x",
"eslint-plugin-jest": ">=27.x",
"eslint-config-airbnb": ">=19.x",
"eslint-config-airbnb-typescript": ">=17.x",
"@typescript-eslint/eslint-plugin": ">=6.x",
"@typescript-eslint/parser": ">=6.x",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
extends: ['airbnb-typescript', 'prettier'],
extends: ['airbnb', 'airbnb-typescript', 'prettier'],
plugins: ['import', '@typescript-eslint', 'jest'],
env: {
browser: true,
Expand Down

0 comments on commit f8c3ae8

Please sign in to comment.