@momsfriendlydevco/eslint-config 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -13,7 +13,7 @@ let jsCommonRules = {
|
|
|
13
13
|
// JSDoc
|
|
14
14
|
'jsdoc/check-alignment': ['off'], // Disable the JSDoc parser insisting on correct indents
|
|
15
15
|
'jsdoc/check-tag-names': ['warn', { // Extend JSDoc allowed tags
|
|
16
|
-
definedTags: ['date', 'slot', 'url'],
|
|
16
|
+
definedTags: ['date', 'fixme', 'note', 'slot', 'url'],
|
|
17
17
|
}],
|
|
18
18
|
'jsdoc/check-types': ['off'], // Disable the JSDoc parser being fussy about `@param {String}` vs `@param {string}`
|
|
19
19
|
'jsdoc/no-defaults': ['off'], // Disable the JSDoc parser that complains about optional params as its just silly
|
package/package.json
CHANGED