Skip to content
This repository has been archived by the owner on Oct 30, 2023. It is now read-only.

Commit

Permalink
fix eslint peer-dep issues
Browse files Browse the repository at this point in the history
  • Loading branch information
shazron committed Aug 8, 2023
1 parent ea33f3c commit f641f5f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 11 deletions.
12 changes: 11 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
{
"extends": ["@adobe/eslint-config-aio-lib-config"]
"extends": ["@adobe/eslint-config-aio-lib-config"],
"rules": {
"jsdoc/tag-lines": [
// The Error level should be `error`, `warn`, or `off` (or 2, 1, or 0)
"error",
"never",
{
"startLines": null
}
]
}
}
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,25 @@
},
"devDependencies": {
"@adobe/aio-lib-core-config": "^3.1.0",
"@adobe/eslint-config-aio-lib-config": "^2.0.0",
"@adobe/eslint-config-aio-lib-config": "^2.0.1",
"@oclif/dev-cli": "^1.22.0",
"chalk": "^4.0.0",
"eslint": "^8.18.0",
"eslint": "^8.46.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-n": "^15.2.3",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsdoc": "^42.0.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.0.1",
"execa": "^4.0.0",
"globby": "^10.0.1",
"jest": "^29",
"jest-junit": "^16.0.0",
"stdout-stderr": "^0.1.9",
"typescript": "^4.7.4"
"typescript": "^4.9.5"
},
"engines": {
"node": "^14.18 || ^16.13 || >=18"
Expand Down Expand Up @@ -62,7 +62,7 @@
"pretest": "npm run lint",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "npm run unit-tests",
"unit-tests": "jest --config test/jest.config.js ---ci -w=2",
"unit-tests": "jest --config test/jest.config.js --ci",
"version": "oclif-dev readme && git add README.md",
"e2e": "jest --collectCoverage=false --testRegex './e2e/e2e.js'"
}
Expand Down

0 comments on commit f641f5f

Please sign in to comment.