@eagleoutice/eslint-config-flowr 1.0.23 → 1.0.25

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 +10 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -59,13 +59,21 @@ module.exports = {
59
59
  'jsdoc/check-alignment': 'error',
60
60
  'jsdoc/check-indentation': 'error',
61
61
  "jsdoc/no-types": "error",
62
+ "jsdoc/no-undefined-types": "off",
63
+ "jsdoc/check-tag-names": "off",
62
64
  "jsdoc/require-param": "off",
63
65
  "jsdoc/require-description": "off",
64
66
  "jsdoc/require-param-description": "off",
65
67
  "jsdoc/require-returns": "off",
66
68
  "jsdoc/require-property": "off",
67
69
  "jsdoc/require-throws": "off",
70
+ "jsdoc/require-throws-type": "off",
68
71
  "jsdoc/require-file-overview": "off",
72
+ "jsdoc/check-param-names": ["error", {
73
+ "checkDestructured": false,
74
+ "checkRestProperty": false,
75
+ "enableFixer": true
76
+ }],
69
77
  "jsdoc/require-jsdoc": [
70
78
  "error",
71
79
  {
@@ -79,6 +87,7 @@ module.exports = {
79
87
  ],
80
88
  "jsdoc/require-param-type": "off",
81
89
  "jsdoc/require-returns-type": "off",
90
+ "jsdoc/require-yields": "off",
82
91
  "@stylistic/no-mixed-spaces-and-tabs": [
83
92
  "error",
84
93
  "smart-tabs"
@@ -248,7 +257,7 @@ module.exports = {
248
257
  "error",
249
258
  {
250
259
  "considerQueryString": true,
251
- "prefer-inline": true
260
+ "prefer-inline": false
252
261
  }
253
262
  ]
254
263
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eagleoutice/eslint-config-flowr",
3
- "version": "1.0.23",
3
+ "version": "1.0.25",
4
4
  "description": "Linting rules for flowr and friends",
5
5
  "license": "ISC",
6
6
  "main": "index.js",