Skip to content

Commit

Permalink
Merge pull request #41 from Fdawgs/build/deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Jul 8, 2023
2 parents 12c6957 + 0842d41 commit 3d92bd8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
12 changes: 10 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ module.exports = {
},
extends: [
"airbnb-base",
"plugin:promise/recommended",
"plugin:jsdoc/recommended",
"plugin:promise/recommended",
"plugin:regexp/recommended",
"plugin:security/recommended",
"plugin:security-node/recommended",
"prettier",
Expand Down Expand Up @@ -34,7 +35,14 @@ module.exports = {
parserOptions: {
ecmaVersion: 2021,
},
plugins: ["import", "jsdoc", "promise", "security", "security-node"],
plugins: [
"import",
"jsdoc",
"promise",
"regexp",
"security",
"security-node",
],
root: true,
rules: {
"import/no-extraneous-dependencies": "error",
Expand Down
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"endOfLine": "lf",
"semi": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": true,
"overrides": [
{
Expand Down
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,22 +60,23 @@
"testTimeout": 10000
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"eslint": "^8.43.0",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jsdoc": "^46.2.6",
"eslint-plugin-jsdoc": "^46.4.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-regexp": "^1.15.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-security-node": "^1.1.1",
"fastify": "^4.18.0",
"fastify": "^4.19.2",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest": "^29.6.1",
"license-checker": "^25.0.1",
"prettier": "^2.8.8",
"prettier": "^3.0.0",
"spdx-copyleft": "^1.0.0",
"upath": "^2.0.1"
},
Expand Down

0 comments on commit 3d92bd8

Please sign in to comment.