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.
no-irregular-whitespace
1 parent d9e1a1b commit b3b5b9cCopy full SHA for b3b5b9c
2 files changed
lint-rules/test-utils.js
@@ -1,4 +1,3 @@
1
-/* eslint-disable no-irregular-whitespace */
2
import fs from 'node:fs';
3
import os from 'node:os';
4
import path from 'node:path';
xo.config.js
@@ -85,6 +85,17 @@ const xoConfig = [
85
'type-fest/validate-jsdoc-codeblocks': 'error',
86
},
87
88
+ {
89
+ files: 'lint-rules/test-utils.js',
90
+ rules: {
91
+ 'no-irregular-whitespace': [
92
+ 'error',
93
94
+ 'skipComments': true,
95
+ },
96
+ ],
97
98
99
];
100
101
export default xoConfig;
0 commit comments