Skip to content

Commit b508036

Browse files
authored
feat(lint): adds disable-next-line
Add disable-next-line
2 parents e391436 + 19df7ba commit b508036

6 files changed

+38
-1
lines changed

README.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ For all [rules](https://github.com/sasstools/sass-lint/tree/master/docs/rules),
7979

8080
If you want to configure options, set the rule to an array, where the first item in the array is the severity, and the second item in the array is an object including the options you would like to set.
8181

82-
Here is an example configuration of a rule, where we are specifying that breaking the [indentation rule](https://github.com/sasstools/sass-lint/blob/master/docs/rules/indentation.md) should be treated as an error (its severity set to two), and setting the `size` option of the rule to 2 spaces:
82+
Here is an example configuration of a rule, where we are specifying that breaking the [indentation rule](https://github.com/sasstools/sass-lint/blob/master/docs/rules/indentation.md) should be treated as an error (its severity set to two), and setting the `size` option of the rule to 2 spaces:
8383

8484
```yml
8585
rules:
@@ -127,6 +127,15 @@ p {
127127
}
128128
```
129129

130+
### Disable a rule for text next line
131+
132+
```scss
133+
p {
134+
// sass-lint:disable-next-line border-zero
135+
border: none;
136+
}
137+
```
138+
130139
### Disable all lints within a block (and all contained blocks)
131140

132141
```scss

docs/toggle-rules-in-src.md

+9
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@ p {
2929
}
3030
```
3131

32+
## Disable a rule for the next line
33+
34+
```scss
35+
p {
36+
// sass-lint:disable-next-line border-zero
37+
border: none;
38+
}
39+
```
40+
3241
## Disable all lints within a block (and all contained blocks)
3342

3443
```scss

lib/ruleToggler.js

+3
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,9 @@ module.exports.getToggledRules = function (ast) {
196196
case 'sass-lint:disable-line':
197197
addDisableLine(toggledRules, rules, comment.start.line);
198198
break;
199+
case 'sass-lint:disable-next-line':
200+
addDisableLine(toggledRules, rules, comment.start.line + 1);
201+
break;
199202
default:
200203
return;
201204
}

tests/ruleToggler.js

+9
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,15 @@ describe('rule toggling', function () {
6868
}
6969
}) === true);
7070
});
71+
it('should be able to disable next line', function () {
72+
var ruleToggles = generateToggledRules('ruleToggler-disable-next-line.scss');
73+
assert(deepEqual(ruleToggles, {
74+
globalEnable: [],
75+
ruleEnable: {
76+
a: [[false, 3, 1], [true, 4, 1]]
77+
}
78+
}) === true);
79+
});
7180
it('should be able to disable a block of code', function () {
7281
var ruleToggles = generateToggledRules('ruleToggler-disable-a-block.scss');
7382
assert(deepEqual(ruleToggles, {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
p
2+
// sass-lint:disable-next-line a
3+
border-color: red
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
p {
2+
// sass-lint:disable-next-line a
3+
border-color: red;
4+
}

0 commit comments

Comments
 (0)