-
Notifications
You must be signed in to change notification settings - Fork 355
/
.eslintrc.jsdoc.js
115 lines (115 loc) · 3.95 KB
/
.eslintrc.jsdoc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
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,
}
};