We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a81160e commit a99dc37Copy full SHA for a99dc37
src/rules/checkIndentation.js
@@ -7,6 +7,7 @@ export default iterateJsdoc(({
7
}) => {
8
const reg = new RegExp(/^[ \t]+\*[ \t]{2}/m);
9
const text = sourceCode.getText(jsdocNode);
10
+
11
if (reg.test(text)) {
12
report('There must be no indentation.');
13
}
0 commit comments