diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2022-05-20 10:28:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-20 10:28:38 -0400 |
commit | 31e20c889e467aa4ba64b0b5baf602adc1359371 (patch) | |
tree | a033db935a817b2d407ec20843176610a87a6e16 /dev | |
parent | ae0ad227c0fd293609a21e5cc1d2a4b85fe7c520 (diff) |
ESlint JSdoc (#2148)
* Install eslint-plugin-jsdoc
* Initial rules setup
* Update lists
* Use @returns rather than @return
* Remove error throwing code which is never executed
* Fix issues relating to @throws
* General error fixes
* Update Display type documentation
* Various doc fixes
* Fix invalid tuple syntax
* Doc updates
* Remove unused
* Doc updates
* Enable jsdoc/require-returns
* Update rules
* Update remaining rules
Diffstat (limited to 'dev')
-rw-r--r-- | dev/patch-dependencies.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/patch-dependencies.js b/dev/patch-dependencies.js index 7052fd08..0de9bf0c 100644 --- a/dev/patch-dependencies.js +++ b/dev/patch-dependencies.js @@ -20,8 +20,8 @@ const assert = require('assert'); /** * This function patches the following bug: - * * https://github.com/jsdom/jsdom/issues/3211 - * * https://github.com/dperini/nwsapi/issues/48 + * - https://github.com/jsdom/jsdom/issues/3211 + * - https://github.com/dperini/nwsapi/issues/48 */ function patchNwsapi() { const nwsapiPath = require.resolve('nwsapi'); |