eslint-config-seek
Advanced tools
Changelog
13.1.0
Adds no-fallthrough as an error. (#135) This disallows fallthrough of case statements in switch statements.
You need to add a break
, return
or throw
to each case. You can also skip this rule if it is intentionally absent (however that is a rare scenario).
switch (name) {
case 'John':
console.log('Hi John');
+ break;
}
Disable @typescript-eslint/consistent-type-definition
rule (#139)
Revert from @finsit/eslint-plugin-cypress
back to eslint-plugin-cypress
(#141)
The official plugin now supports ESLint v8. Consumers that were overriding @finsit/cypress/*
rules will need to override cypress/*
rules instead.