@eagleoutice/eslint-config-flowr 2.1.4 → 2.1.6

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 +6 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -106,9 +106,13 @@ const config = [
106
106
  'jsdoc/check-alignment': 'error',
107
107
  /*
108
108
  * the same alignment `key-spacing` asks of object values, asked of tsdoc: the `-` of every `@param`
109
- * in a block lines up, so the names read as a column instead of as prose
109
+ * in a block lines up, so the names read as a column instead of as prose.
110
+ *
111
+ * `disableWrapIndent` keeps its hands off every line after the first: a continuation is indented
112
+ * because the author meant something by it -- a hanging list, or a nested call in an R example
113
+ * whose indentation is what links it to the call around it -- and re-flowing that loses the point.
110
114
  */
111
- 'jsdoc/check-line-alignment': ['error', 'always'],
115
+ 'jsdoc/check-line-alignment': ['error', 'always', { disableWrapIndent: true }],
112
116
  /* `@param name - what it is`, the spelling the codebase already uses everywhere */
113
117
  'jsdoc/require-hyphen-before-param-description': ['error', 'always'],
114
118
  'jsdoc/no-multi-asterisks': 'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eagleoutice/eslint-config-flowr",
3
- "version": "2.1.4",
3
+ "version": "2.1.6",
4
4
  "description": "Linting rules for flowr and friends",
5
5
  "license": "ISC",
6
6
  "repository": {