Skip to content

Instantly share code, notes, and snippets.

@UmairJibran
UmairJibran / no-multi-space-in-strings.js
Created June 10, 2025 11:05 — forked from Farhan-Haseeb/no-multi-space-in-strings.js
Custom ES Lint rule to avoid and fix two or more spaces in string or className.
export default {
meta: {
type: 'problem',
docs: {
description: 'Disallow multiple consecutive spaces in string literals',
category: 'Possible Errors',
recommended: true,
},
fixable: 'code',
schema: [],