Skip to content

Commit

Permalink
chore: update devDeps. (babel, eslint, mocha, ts, lint-staged/semanti…
Browse files Browse the repository at this point in the history
…c-release)

Also updates with numeric separators per latest linting config
  • Loading branch information
brettz9 committed Oct 30, 2020
1 parent c7426b2 commit 951e97e
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 26 deletions.
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,30 +15,30 @@
},
"description": "JSDoc linting rules for ESLint.",
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-flow-strip-types": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/register": "^7.11.5",
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.1",
"@babel/plugin-transform-flow-strip-types": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/register": "^7.12.1",
"@hkdobrev/run-if-changed": "^0.3.1",
"@typescript-eslint/parser": "^4.4.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"eslint": "7.10.0",
"eslint-config-canonical": "^24.1.1",
"eslint": "7.12.1",
"eslint-config-canonical": "^24.2.2",
"gitdown": "^3.1.3",
"glob": "^7.1.6",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"mocha": "^8.1.3",
"lint-staged": "^10.5.0",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.2",
"typescript": "^4.0.3"
"semantic-release": "^17.2.2",
"typescript": "^4.0.5"
},
"engines": {
"node": ">=10"
Expand Down
2 changes: 1 addition & 1 deletion test/rules/assertions/checkExamples.js
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ export default {
{
baseConfig: {
parserOptions: {
ecmaVersion: 2015,
ecmaVersion: 2_015,
sourceType: 'module',
},
rules: {
Expand Down
6 changes: 3 additions & 3 deletions test/rules/assertions/checkParamNames.js
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ export default {
},
],
parserOptions: {
ecmaVersion: 2018,
ecmaVersion: 2_018,
},
},
{
Expand All @@ -738,7 +738,7 @@ export default {
},
],
parserOptions: {
ecmaVersion: 2018,
ecmaVersion: 2_018,
},
},
{
Expand Down Expand Up @@ -1218,7 +1218,7 @@ export default {
}
`,
parserOptions: {
ecmaVersion: 2018,
ecmaVersion: 2_018,
},
},
{
Expand Down
2 changes: 1 addition & 1 deletion test/rules/assertions/noUndefinedTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default {
settings: {
jsdoc: {
preferredTypes: {
HerType: 1000,
HerType: 1_000,
},
},
},
Expand Down
2 changes: 1 addition & 1 deletion test/rules/assertions/requireJsdoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3910,7 +3910,7 @@ export default {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2017,
ecmaVersion: 2_017,
sourceType: 'module',
},
},
Expand Down
14 changes: 7 additions & 7 deletions test/rules/assertions/requireParam.js
Original file line number Diff line number Diff line change
Expand Up @@ -1745,7 +1745,7 @@ export default {
}
`,
parserOptions: {
ecmaVersion: 2018,
ecmaVersion: 2_018,
},
},
{
Expand Down Expand Up @@ -1779,7 +1779,7 @@ export default {
}
`,
parserOptions: {
ecmaVersion: 2018,
ecmaVersion: 2_018,
},
},
{
Expand Down Expand Up @@ -1808,7 +1808,7 @@ export default {
}
`,
parserOptions: {
ecmaVersion: 2015,
ecmaVersion: 2_015,
},
},
{
Expand All @@ -1835,7 +1835,7 @@ export default {
}
`,
parserOptions: {
ecmaVersion: 2015,
ecmaVersion: 2_015,
},
},
{
Expand Down Expand Up @@ -2853,7 +2853,7 @@ export default {
}
`,
parserOptions: {
ecmaVersion: 2018,
ecmaVersion: 2_018,
},
},
{
Expand All @@ -2872,7 +2872,7 @@ export default {
},
],
parserOptions: {
ecmaVersion: 2015,
ecmaVersion: 2_015,
},
},
{
Expand All @@ -2890,7 +2890,7 @@ export default {
},
],
parserOptions: {
ecmaVersion: 2015,
ecmaVersion: 2_015,
},
},
{
Expand Down

0 comments on commit 951e97e

Please sign in to comment.