Skip to content

Commit 3104905

Browse files
committed
style(eslint): enforce consistent comment spacing in configuration
1 parent 311b993 commit 3104905

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

eslint.config.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,10 @@ export default createConfigForNuxt({
2020
'vue/no-v-html': 'off',
2121
'vue/multi-word-component-names': 'off',
2222
'@typescript-eslint/no-invalid-void-type': 'off',
23+
// Enforce consistent comment spacing
24+
'spaced-comment': ['error', 'always', {
25+
exceptions: ['*'],
26+
markers: ['/'],
27+
}],
2328
},
2429
})

0 commit comments

Comments
 (0)