Skip to content

Commit

Permalink
deps!: upgrade deps, replace eslint-config-standard-with-typescript w…
Browse files Browse the repository at this point in the history
…ith eslint-config-love (#218)

Fixes #217

BREAKING CHANGE: eslint-config-love requires updated peer dependencies

---------

Co-authored-by: achingbrain <alex@achingbrain.net>
  • Loading branch information
SgtPooki and achingbrain authored May 1, 2024
1 parent 2c2d603 commit a83be5b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 14 deletions.
30 changes: 17 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@
"dist"
],
"eslintConfig": {
"extends": "."
"extends": "./src/index.js",
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
}
},
"release": {
"branches": [
Expand Down Expand Up @@ -115,27 +119,27 @@
},
"scripts": {
"clean": "aegir clean",
"lint": "aegir lint",
"lint": "eslint src",
"dep-check": "aegir dep-check -i @typescript-eslint/eslint-plugin -i @typescript-eslint/parser",
"test": "npm run test:node",
"test:node": "aegir test -t node",
"release": "aegir release"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-etc": "^2.0.2",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsdoc": "^46.4.4",
"eslint-plugin-no-only-tests": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint-config-love": "^47.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.2",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0"
"eslint-plugin-promise": "^6.1.1"
},
"devDependencies": {
"aegir": "^42.2.2",
"eslint": "^8.15.0"
"aegir": "^42.2.5",
"eslint": "^8.57.0"
},
"peerDependenciesMeta": {
"typescript": {
Expand Down
2 changes: 1 addition & 1 deletion src/ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
},
extends: [
'./js.js',
'standard-with-typescript'
'love'
],
plugins: [
'etc'
Expand Down
4 changes: 4 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "aegir/src/config/tsconfig.aegir.json",
"include": ["src"]
}

0 comments on commit a83be5b

Please sign in to comment.