-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into proquest-federated-search-gateway
- Loading branch information
Showing
649 changed files
with
19,017 additions
and
5,022 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
/** | ||
* TODO: Temporary file for rules. Merge this file into eslintrc.js | ||
* after all the ignored patterns under themes/bootstrap5/js are removed. | ||
*/ | ||
module.exports = { | ||
plugins: ["jsdoc"], | ||
ignorePatterns: [ | ||
"themes/**/vendor/**", | ||
"themes/**/node_modules/**", | ||
"themes/bootstrap5/js/account_ajax.js", | ||
"themes/bootstrap5/js/relais.js", | ||
"themes/bootstrap5/js/search.js", | ||
"themes/bootstrap5/js/requests.js", | ||
"themes/bootstrap5/js/resultcount.js", | ||
"themes/bootstrap5/js/map_tab_leaflet.js", | ||
"themes/bootstrap5/js/check_item_statuses.js", | ||
"themes/bootstrap5/js/combined-search.js", | ||
"themes/bootstrap5/js/cart.js", | ||
"themes/bootstrap5/js/pubdate_vis.js", | ||
"themes/bootstrap5/js/map_selection_leaflet.js", | ||
"themes/bootstrap5/js/common.js", | ||
"themes/bootstrap5/js/bs3-compat.js", | ||
"themes/bootstrap5/js/explain.js", | ||
"themes/bootstrap5/js/list_item_selection.js", | ||
"themes/bootstrap5/js/embedded_record.js", | ||
"themes/bootstrap5/js/openurl.js", | ||
"themes/bootstrap5/js/ill.js", | ||
"themes/bootstrap5/js/record.js", | ||
"themes/bootstrap5/js/doi.js", | ||
"themes/bootstrap5/js/keep_alive.js", | ||
"themes/bootstrap5/js/embedGBS.js", | ||
"themes/bootstrap5/js/lib/ajax_request_queue.js", | ||
"themes/bootstrap5/js/covers.js", | ||
"themes/bootstrap5/js/trigger_print.js", | ||
"themes/bootstrap5/js/visual_facets.js", | ||
"themes/bootstrap5/js/preview.js", | ||
"themes/bootstrap5/js/facets.js", | ||
"themes/bootstrap5/js/searchbox_controls.js", | ||
"themes/bootstrap5/js/lightbox.js", | ||
"themes/bootstrap5/js/hierarchy_tree.js", | ||
"themes/bootstrap5/js/cookie.js", | ||
"themes/bootstrap5/js/record_versions.js", | ||
"themes/bootstrap5/js/collection_record.js", | ||
"themes/bootstrap5/js/sticky_elements.js", | ||
"themes/bootstrap5/js/checkouts.js", | ||
"themes/bootstrap5/js/advanced_search.js", | ||
"themes/bootstrap5/js/check_save_statuses.js", | ||
"themes/bootstrap5/js/hold.js", | ||
"themes/bootstrap5/js/config.js", | ||
"themes/bootstrap5/js/channels.js", | ||
"themes/bootstrap5/js/truncate.js", | ||
"themes/bootstrap3/**" | ||
], | ||
extends: [], | ||
env: { | ||
"browser": true, | ||
"es6": true, | ||
"jquery": true | ||
}, | ||
rules: { | ||
// Recommended | ||
"jsdoc/check-access": 1, | ||
"jsdoc/check-alignment": 1, | ||
"jsdoc/check-param-names": 1, | ||
"jsdoc/check-property-names": 1, | ||
"jsdoc/check-tag-names": 1, | ||
"jsdoc/check-types": 1, | ||
"jsdoc/check-values": 1, | ||
"jsdoc/empty-tags": 1, | ||
"jsdoc/implements-on-classes": 1, | ||
"jsdoc/multiline-blocks": 1, | ||
"jsdoc/no-multi-asterisks": 1, | ||
"jsdoc/no-undefined-types": 1, | ||
"jsdoc/require-jsdoc": 1, | ||
"jsdoc/require-param": 1, | ||
"jsdoc/require-param-description": 1, | ||
"jsdoc/require-param-name": 1, | ||
"jsdoc/require-param-type": 1, | ||
"jsdoc/require-property": 1, | ||
"jsdoc/require-property-description": 1, | ||
"jsdoc/require-property-name": 1, | ||
"jsdoc/require-property-type": 1, | ||
"jsdoc/require-returns": 1, | ||
"jsdoc/require-returns-check": 1, | ||
"jsdoc/require-returns-description": 1, | ||
"jsdoc/require-returns-type": 1, | ||
"jsdoc/require-yields": 1, | ||
"jsdoc/require-yields-check": 1, | ||
"jsdoc/tag-lines": 1, | ||
"jsdoc/valid-types": 1 | ||
// Disabled | ||
//"jsdoc/check-examples": 1, | ||
//"jsdoc/check-indentation": 1, | ||
//"jsdoc/check-line-alignment": 1, | ||
//"jsdoc/check-template-names": 1, | ||
//"jsdoc/check-syntax": 1, | ||
//"jsdoc/informative-docs": 1, | ||
//"jsdoc/match-description": 1, | ||
//"jsdoc/no-bad-blocks": 1, | ||
//"jsdoc/no-blank-block-descriptions": 1, | ||
//"jsdoc/no-defaults": 1, | ||
//"jsdoc/no-missing-syntax": 1, | ||
//"jsdoc/no-restricted-syntax": 1, | ||
//"jsdoc/no-types": 1, | ||
//"jsdoc/require-asterisk-prefix": 1, | ||
//"jsdoc/require-description": 1, | ||
//"jsdoc/require-description-complete-sentence": 1, | ||
//"jsdoc/require-example": 1, | ||
//"jsdoc/require-file-overview": 1, | ||
//"jsdoc/require-hyphen-before-param-description": 1, | ||
//"jsdoc/require-template": 1, | ||
//"jsdoc/require-throws": 1, | ||
//"jsdoc/sort-tags": 1, | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.