Skip to content

Commit 8d8526f

Browse files
authored
Fix: linting errors. (#23)
1 parent 7c7c772 commit 8d8526f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/rules/consistent-output.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
category: 'Tests',
1919
recommended: false,
2020
},
21-
fixable: null, // or "code" or "whitespace"
21+
fixable: null, // or "code" or "whitespace"
2222
schema: [],
2323
},
2424

lib/rules/no-deprecated-report-api.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = {
1818
category: 'Rules',
1919
recommended: true,
2020
},
21-
fixable: 'code', // or "code" or "whitespace"
21+
fixable: 'code', // or "code" or "whitespace"
2222
schema: [],
2323
},
2424

lib/rules/no-useless-token-range.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ module.exports = {
4444
}
4545
return arg.properties.length >= 2 || (
4646
arg.properties.length === 1 && (
47-
utils.getKeyName(arg.properties[0]) !== 'includeComments' ||
48-
arg.properties[0].value.type !== 'Literal'
49-
));
47+
utils.getKeyName(arg.properties[0]) !== 'includeComments' ||
48+
arg.properties[0].value.type !== 'Literal'
49+
));
5050
}
5151

5252
/**

0 commit comments

Comments
 (0)