@momsfriendlydevco/eslint-config 2.0.0 → 2.0.1

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 +3 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -5,6 +5,9 @@ import pluginVue from 'eslint-plugin-vue';
5
5
  // Rules shared by both .doop + .vue files
6
6
  let jsCommonRules = {
7
7
  'html-closing-bracket-spacing': ['off'], // Annoying doesn't allow <this-kind-of-thing/>
8
+ 'jsdoc/check-alignment': ['off'], // Disable the JSDoc parser insisting on correct indents
9
+ 'jsdoc/check-types': ['off'], // Disable the JSDoc parser being fussy about `@param {String}` vs `@param {string}`
10
+ 'jsdoc/tag-lines': ['off'], // Disable the JSDoc parser being fussy about new-line spacing
8
11
  'no-debugger': ['warn'], // Debuggers are fine, just warn
9
12
  'no-useless-escape': ['off'], // ESlint frequently gets what should and shouldn't be escaped wrong
10
13
  'no-unused-vars': ['warn'], // Dont make unused vars the end of the world
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.0",
4
+ "version": "2.0.1",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "test": "eslint --config index.js test/data"