Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(lines-before-block): move start-of-block checking behind off-by-default checkBlockStarts option #1341

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .README/rules/lines-before-block.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# `lines-before-block`

This rule enforces minimum number of newlines before JSDoc comment blocks
(except at the beginning of a file).
(except at the beginning of a block or file).

## Options

### `checkBlockStarts`

Whether to additionally check the start of blocks, such as classes or functions.
Defaults to `false`.

### `lines`

The minimum number of lines to require. Defaults to 1.
Expand All @@ -26,7 +31,7 @@ lines before the block will not be added).
|Tags|N/A|
|Recommended|false|
|Settings||
|Options|`excludedTags`, `ignoreSameLine`, `lines`|
|Options|`checkBlockStarts`, `excludedTags`, `ignoreSameLine`, `lines`|

## Failing examples

Expand Down
68 changes: 66 additions & 2 deletions docs/rules/lines-before-block.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,19 @@
# <code>lines-before-block</code>

This rule enforces minimum number of newlines before JSDoc comment blocks
(except at the beginning of a file).
(except at the beginning of a block or file).

<a name="user-content-lines-before-block-options"></a>
<a name="lines-before-block-options"></a>
## Options

<a name="user-content-lines-before-block-options-checkblockstarts"></a>
<a name="lines-before-block-options-checkblockstarts"></a>
### <code>checkBlockStarts</code>

Whether to additionally check the start of blocks, such as classes or functions.
Defaults to `false`.

<a name="user-content-lines-before-block-options-lines"></a>
<a name="lines-before-block-options-lines"></a>
### <code>lines</code>
Expand Down Expand Up @@ -36,7 +43,7 @@ lines before the block will not be added).
|Tags|N/A|
|Recommended|false|
|Settings||
|Options|`excludedTags`, `ignoreSameLine`, `lines`|
|Options|`checkBlockStarts`, `excludedTags`, `ignoreSameLine`, `lines`|

<a name="user-content-lines-before-block-failing-examples"></a>
<a name="lines-before-block-failing-examples"></a>
Expand Down Expand Up @@ -87,6 +94,42 @@ someCode;
*
*/
// Message: Required 1 line(s) before JSDoc block

{
/**
* Description.
*/
let value;
}
// "jsdoc/lines-before-block": ["error"|"warn", {"checkBlockStarts":true}]
// Message: Required 1 line(s) before JSDoc block

class MyClass {
/**
* Description.
*/
method() {}
}
// "jsdoc/lines-before-block": ["error"|"warn", {"checkBlockStarts":true}]
// Message: Required 1 line(s) before JSDoc block

function myFunction() {
/**
* Description.
*/
let value;
}
// "jsdoc/lines-before-block": ["error"|"warn", {"checkBlockStarts":true}]
// Message: Required 1 line(s) before JSDoc block

const values = [
/**
* Description.
*/
value,
];
// "jsdoc/lines-before-block": ["error"|"warn", {"checkBlockStarts":true}]
// Message: Required 1 line(s) before JSDoc block
````


Expand Down Expand Up @@ -146,5 +189,26 @@ const a = /** @lends SomeClass */ {
someProp: (someVal)
};
// "jsdoc/lines-before-block": ["error"|"warn", {"excludedTags":["lends"],"ignoreSameLine":false}]

{
/**
* Description.
*/
let value;
}

class MyClass {
/**
* Description.
*/
method() {}
}

function myFunction() {
/**
* Description.
*/
let value;
}
````

6 changes: 5 additions & 1 deletion src/rules/linesBeforeBlock.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ export default iterateJsdoc(({
utils,
}) => {
const {
checkBlockStarts,
lines = 1,
ignoreSameLine = true,
excludedTags = ['type']
Expand All @@ -19,7 +20,7 @@ export default iterateJsdoc(({

const tokensBefore = sourceCode.getTokensBefore(jsdocNode, {includeComments: true});
const tokenBefore = tokensBefore.slice(-1)[0];
if (!tokenBefore) {
if (!tokenBefore || (tokenBefore.value === '{' && !checkBlockStarts)) {
return;
}

Expand Down Expand Up @@ -80,6 +81,9 @@ export default iterateJsdoc(({
{
additionalProperties: false,
properties: {
checkBlockStarts: {
type: 'boolean',
},
excludedTags: {
type: 'array',
items: {
Expand Down
134 changes: 134 additions & 0 deletions test/rules/assertions/linesBeforeBlock.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,110 @@ export default {
*/
`,
},
{
code: `
{
/**
* Description.
*/
let value;
}
`,
errors: [
{
line: 3,
message: 'Required 1 line(s) before JSDoc block'
}
],
options: [{ checkBlockStarts: true }],
output: `
{

/**
* Description.
*/
let value;
}
`,
},
{
code: `
class MyClass {
/**
* Description.
*/
method() {}
}
`,
errors: [
{
line: 3,
message: 'Required 1 line(s) before JSDoc block'
}
],
options: [{ checkBlockStarts: true }],
output: `
class MyClass {

/**
* Description.
*/
method() {}
}
`,
},
{
code: `
function myFunction() {
/**
* Description.
*/
let value;
}
`,
errors: [
{
line: 3,
message: 'Required 1 line(s) before JSDoc block'
}
],
options: [{ checkBlockStarts: true }],
output: `
function myFunction() {

/**
* Description.
*/
let value;
}
`,
},
{
code: `
const values = [
/**
* Description.
*/
value,
];
`,
errors: [
{
line: 3,
message: 'Required 1 line(s) before JSDoc block'
}
],
options: [{ checkBlockStarts: true }],
output: `
const values = [

/**
* Description.
*/
value,
];
`,
}
],
valid: [
{
Expand Down Expand Up @@ -242,5 +346,35 @@ export default {
}
]
},
{
code: `
{
/**
* Description.
*/
let value;
}
`,
},
{
code: `
class MyClass {
/**
* Description.
*/
method() {}
}
`,
},
{
code: `
function myFunction() {
/**
* Description.
*/
let value;
}
`,
}
],
};