Skip to content

Commit

Permalink
feat: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
amorino committed Aug 14, 2023
1 parent 8904443 commit a284731
Show file tree
Hide file tree
Showing 11 changed files with 3,501 additions and 591 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Third party
**/node_modules

# IntelliJ
*.iml
.idea/*

# Build products
build/
coverage/
Expand Down
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
{
"name": "@amorino/eslint-config-project",
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"lint": "lerna run lint",
"type-check": "lerna run type-check"
},
"private": true,
"devDependencies": {
"lerna": "^3.22.1"
Expand Down
3 changes: 0 additions & 3 deletions packages/eslint-config-base/.eslintrc

This file was deleted.

2 changes: 2 additions & 0 deletions packages/eslint-config-base/.eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
extends:
- "./index.js"
12 changes: 3 additions & 9 deletions packages/eslint-config-base/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,9 @@ module.exports = {
process: true,
},

plugins: ["import", "unicorn", "babel"],
plugins: ["import", "unicorn"],

extends: [
"plugin:unicorn/recommended",
"plugin:prettier/recommended",
],
extends: ["plugin:unicorn/recommended", "plugin:prettier/recommended"],

settings: {
"import/parsers": {
Expand Down Expand Up @@ -59,9 +56,6 @@ module.exports = {
param: false,
params: false,
args: false,
elm: {
element: true,
},
},
allowList: {
attr: true,
Expand Down Expand Up @@ -97,7 +91,7 @@ module.exports = {
* TypeScript plugin
* The following rules are made available via `@typescript-eslint/eslint-plugin`.
*/
"@typescript-eslint/explicit-module-boundary-types": "off"
"@typescript-eslint/explicit-module-boundary-types": "off",
},
},
],
Expand Down
22 changes: 13 additions & 9 deletions packages/eslint-config-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,28 @@
"config",
"typescript"
],
"author": "Erick Bazán <erick.bazan@me.com>",
"author": "Erick Bazán <erick.bazan@hey.com>",
"license": "MIT",
"peerDependencies": {
"eslint": "^8.0.0",
"prettier": "^3",
"typescript": "^4"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^40.0.0",
"prettier": "^2.0.0",
"typescript": "^4.5.2"
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unicorn": "^48.0.1"
},
"engines": {
"node": ">=14"
"devDependencies": {
"eslint": "^8.0.0",
"prettier": "^3.0.1",
"typescript": "^4.5.2"
},
"repository": {
"type": "git",
Expand Down
Loading

0 comments on commit a284731

Please sign in to comment.