warning
no-mixed-spaces-and-tabsDisallow mixed spaces and tabs for indentation
Examples
❌ Incorrect
function add(x, y) {
return x + y; // spaced
}
function main() {
var x = 5, // spaced
y = 7; // tabbed + spaced
}
✅ Correct
function add(x, y) {
return x + y; // spaced
}
function main() {
var x = 5, // spaced
y = 7; // spaced
}