Skip to content

Commit

Permalink
Use updated ESLint config to fix JSDocs
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraq committed Sep 8, 2023
1 parent 5f8ae65 commit 578b7f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": [
"eslint:recommended",
"plugin:compat/recommended",
"plugin:jsdoc/recommended-typescript-flavor",
"ultraq"
],
"parser": "@babel/eslint-parser",
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.3",
"@types/jest": "^29.5.4",
"eslint": "^7.32.0",
"eslint-config-ultraq": "^2.4.0",
"eslint": "^8.48.0",
"eslint-config-ultraq": "^3.1.0",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.5.1",
"jest": "^29.6.4",
"rollup": "^3.29.0"
},
Expand Down
6 changes: 1 addition & 5 deletions source/IcuMessageFormatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,4 @@
export {default as MessageFormatter} from './MessageFormatter.js';
export {default as pluralTypeHandler} from './pluralTypeHandler.js';
export {default as selectTypeHandler} from './selectTypeHandler.js';
export {
findClosingBracket,
parseCases,
splitFormattedArgument
} from './utilities.js';
export {findClosingBracket, parseCases, splitFormattedArgument} from './utilities.js';

0 comments on commit 578b7f8

Please sign in to comment.