You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.js
+41-37Lines changed: 41 additions & 37 deletions
Original file line number
Diff line number
Diff line change
@@ -33,45 +33,8 @@ module.exports = {
33
33
34
34
'no-shadow': 'warn',// frontier has this as error, tw-blue has this as off
35
35
36
-
'valid-jsdoc': ['warn'],// frontier has this as off
37
36
'no-undefined': 'off',// frontier has this as off, we had this as warn. I think it really should be off which means removing this line.
38
37
39
-
'jsdoc/check-access': 'off',
40
-
'jsdoc/check-alignment': 'warn',
41
-
'jsdoc/check-indentation': 'off',
42
-
'jsdoc/check-param-names': 'warn',
43
-
// 'jsdoc/check-property-names': 'warn',
44
-
'jsdoc/check-syntax': 'warn',
45
-
'jsdoc/check-tag-names': 'warn',
46
-
'jsdoc/check-types': 'warn',
47
-
// 'jsdoc/check-values': 'warn',
48
-
// 'jsdoc/empty-tags': 'warn',
49
-
'jsdoc/implements-on-classes': 'warn',
50
-
'jsdoc/match-description': 'warn',
51
-
'jsdoc/newline-after-description': 'off',
52
-
'jsdoc/no-types': 'off',
53
-
'jsdoc/no-undefined-types': 'off',// 2020-01-23: This was broken in eslint-plugin-jsdoc#8 in 2019-06, and hasn't gotten much better. Disabled, for now. Check back later.
'import/no-absolute-path': 'warn',// frontier has this as error
76
39
77
40
'bestpractices/no-eslint-disable': 'warn',
@@ -167,6 +130,47 @@ module.exports = {
167
130
// ]
168
131
},
169
132
overrides: [
133
+
{
134
+
files: ['*.js?(x)','*.html'],
135
+
rules: {
136
+
'valid-jsdoc': ['warn'],// frontier has this as off
137
+
'jsdoc/check-access': 'off',
138
+
'jsdoc/check-alignment': 'warn',
139
+
'jsdoc/check-indentation': 'off',
140
+
'jsdoc/check-param-names': 'warn',
141
+
// 'jsdoc/check-property-names': 'warn',
142
+
'jsdoc/check-syntax': 'warn',
143
+
'jsdoc/check-tag-names': 'warn',
144
+
'jsdoc/check-types': 'warn',
145
+
// 'jsdoc/check-values': 'warn',
146
+
// 'jsdoc/empty-tags': 'warn',
147
+
'jsdoc/implements-on-classes': 'warn',
148
+
'jsdoc/match-description': 'warn',
149
+
'jsdoc/newline-after-description': 'off',
150
+
'jsdoc/no-types': 'off',
151
+
'jsdoc/no-undefined-types': 'off',// 2020-01-23: This was broken in eslint-plugin-jsdoc#8 in 2019-06, and hasn't gotten much better. Disabled, for now. Check back later.
0 commit comments