@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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. 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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@momsfriendlydevco/eslint-config",
3
3
  "description": "ESLint plugin for @MomsFriendlyDevCo projects",
4
- "version": "2.0.4",
4
+ "version": "2.0.5",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "test": "eslint --config index.js test/data"