Skip to content

All Rules

This is a full table of all rules that will be implemented in the main Flint project. It includes rules from all three provided categories of plugins: Core, Focused, and Incubator. Each rule is equivalent to at least one existing rule in another linter.

Implemented: 251 of 849 (29.5%)
Flint RulePluginPreset
accessKeysDisallow the use of the accessKey / accesskey attribute on JSX elements.JSXlogical
accessorThisRecursionReports recursive access to this within getters and setters.TypeScriptlogical (strict)
afterAllPaddingLinesViteststylistic (strict)
afterEachPaddingLinesViteststylistic (strict)
alertsReports uses of the global alert/confirm/prompt dialog APIs.Browserlogical
aliasMethodsViteststylistic
allPaddingLinesViteststylistic (strict)
altTextsReports elements that require alt text but are missing it.JSXlogical
anchorAmbiguousTextReports anchor elements with ambiguous text that doesn't describe the link destination.JSXlogical (strict)
anchorContentReports anchor elements without accessible content.JSXlogical
anchorNativesNext.jslogical
anchorValidityReports invalid usage of anchor elements.JSXlogical
anyArgumentsReports calling a function with a value typed as any as an argument.TypeScriptlogical
anyAssignmentsReports assigning a value with type any to variables and properties.TypeScriptlogical
anyCallsReports calling a value with type any.TypeScriptlogical
anyMemberAccessReports member access on a value with type any.TypeScriptlogical
anyReturnsReports returning a value with type any from a function.TypeScriptlogical
argumentsReports using the arguments object instead of rest parameters.TypeScriptlogical
ariaActiveDescendantTabIndexReports elements with aria-activedescendant without tabIndex.JSXlogical
ariaHiddenFocusablesReports elements with aria-hidden='true' that are focusable.JSXlogical (strict)
ariaPropsReports invalid ARIA properties.JSXlogical
ariaPropTypesReports ARIA properties with invalid value types.JSXlogical
ariaRoleValidityReports invalid or abstract ARIA roles.JSXlogical
ariaUnsupportedElementsReports ARIA attributes on elements that don't support them.JSXlogical
arrayCallbackReturnsReports missing return statements in callbacks of array methods.TypeScriptuntyped
arrayConstructorsReports using the Array constructor to create arrays instead of array literal syntax.TypeScriptlogical
arrayDeleteUnnecessaryCountsReports using .length or Infinity as the deleteCount or skipCount argument of Array#splice() or Array#toSpliced().TypeScriptstylistic
arrayElementDeletionsReports using the delete operator on array values.TypeScriptlogical
arrayEmptyCallbackSlotsReports array methods with callbacks that will never be invoked on arrays with empty slots.TypeScriptlogical
arrayExistenceChecksConsistencyReports inconsistent styles for checking element existence using index methods.TypeScriptstylistic
arrayFilteredFindsReports using .filter() when only the first or last matching element is needed.TypeScriptstylistic (strict)
arrayFindsReports using .filter()[0] instead of .find() when looking for a single element.TypeScriptstylistic
arrayFlatMapMethodsReports using .map().flat() when .flatMap() can be used.TypeScriptstylistic (strict)
arrayFlatMethodsReports legacy techniques to flatten arrays instead of using .flat().TypeScriptstylistic (strict)
arrayFlatUnnecessaryDepthsReports using 1 as the depth argument of .flat() since it is the default.TypeScriptstylistic
arrayHandlersSolidJS(none)
arrayIncludesReports using .indexOf() comparisons that can be replaced with .includes().TypeScriptstylistic
arrayIncludesMethodsReports using Array#some() with simple equality checks that can be replaced with .includes().TypeScriptstylistic (strict)
arrayIndexKeyesReactlogical
arrayIndexOfMethodsReports using .findIndex() or .findLastIndex() with simple equality checks that can be replaced with .indexOf() or .lastIndexOf().TypeScriptstylistic (strict)
arrayLoopsReports using .forEach() when a for-of loop can be used.TypeScriptstylistic
arrayMapIdentitiesReports using .flatMap() with an identity function that returns its argument unchanged.TypeScriptlogical
arrayMutableReversesReports .reverse() calls on arrays that mutate the original array.TypeScriptstylistic
arrayMutableSortsReports .sort() calls on arrays that mutate the original array.TypeScriptstylistic
arraySliceUnnecessaryEndReports unnecessary end argument in .slice() calls when it equals the length or is Infinity.TypeScriptstylistic
arraySomeMethodsReports patterns that can be replaced with .some() for checking array element existence.TypeScriptstylistic (strict)
arrayTernarySpreadingConsistencyReports inconsistent types when spreading a ternary in an array literal.TypeScriptstylistic
arrayTypesReports array type syntax that doesn't match the configured style.TypeScriptstylistic
arrayUnnecessaryLengthChecksReports unnecessary array length checks before .some() or .every() calls.TypeScriptlogical
asConstAssertionsReports using explicit literal types when as const can be used.TypeScriptstylistic
assertStrictPrefer strict assertion mode from Node.js for better error messages and behavior.Node.jslogical
assertStylesPrefer assert.ok() over assert() for explicit intent and better readability.Node.jsstylistic
assignmentOperatorShorthandsPrefer logical assignment operator shorthand expressions.TypeScriptstylistic
asyncFunctionAwaitsTypeScriptlogical
asyncPromiseExecutorsReports using async functions as Promise executor functions.TypeScriptlogical
asyncUnnecessaryPromiseWrappersReports unnecessary Promise.resolve() or Promise.reject() in async contexts.TypeScriptlogical
atAccessesPrefer using .at() for accessing elements at negative indices.TypeScriptstylistic (strict)
attributeNameCasingVuestylistic
attributeOrdersVuestylistic (strict)
attributesSortingAstrostylistic
attributeValidityJSXlogical
authorPresencePackageJSON(none)
authorValidityPackageJSONlogical
autocompleteEnsure the autocomplete attribute is correct and suitable for the form field.JSXlogical
autoFocusPropsReports autoFocus props that are not set to false.JSXlogical
awaitInsidePromiseMethodsTypeScriptlogical (strict)
awaitThenableTypeScriptlogical
bareUrlsReports bare URLs that should be formatted as autolinks or links.Markdownstylistic (strict)
beforeAllPaddingLinesViteststylistic (strict)
beforeEachPaddingLinesViteststylistic (strict)
bindDirectiveValidityVuelogical
bindStylesVuestylistic
binValidityPackageJSONlogical
blobReadingMethodsPrefer direct Blob reading methods over wrapping in Response for simpler code.Node.jsstylistic
blockMappingsPrefer block-style mappings over flow-style mappings.YAMLstylistic
blockOrdersVuesorting
blockquoteBlankLineMultiplesMarkdownstylistic (strict)
blockSequencesPrefer block style sequences over flow style sequences.YAMLstylistic
booleanPropNamesJSXstylistic (strict)
booleanValuesPrefer shorthand boolean attributes over explicit {true} values in JSX.JSXstylistic
bracedStatementsDisallow unnecessary JSX curly braces around literals and JSX elements.JSXstylistic
bufferAllocatorsPrefer modern Buffer allocation methods over the deprecated Buffer constructor.Node.jslogical
bugsPresencePackageJSON(none)
builtinCoercionsReports functions that wrap native coercion functions like String, Number, BigInt, Boolean, or Symbol.TypeScriptstylistic (strict)
builtinConstructorNewsEnforces using new for constructors that require it, and disallows new for primitive coercion functions.TypeScriptstylistic
bundleDependenciesPresencePackageJSON(none)
bundleDependenciesValidityPackageJSONlogical
buttonTypesReports button elements without an explicit type attribute.JSXlogical
calledOnceWithAssertionsViteststylistic (strict)
calledTimesAssertionsViteststylistic (strict)
calledWithAssertionsViteststylistic (strict)
caseDeclarationsReports lexical declarations in case clauses without wrapping them in blocks.TypeScriptuntyped
caseDuplicatesReports switch statements with duplicate case clause test expressions.TypeScriptlogical
caseFallthroughsReports switch case clauses that fall through unexpectedly.TypeScriptlogical
catchCallbackTypesReports Promise catch callback parameters that are not typed as unknown.TypeScriptlogical
caughtErrorCausesTypeScriptlogical (strict)
caughtVariableNamesEnforces a consistent naming convention for catch clause error variables.TypeScriptstylistic (strict)
chainedAssignmentsReports using chained assignment expressions (e.g., a = b = c).TypeScriptstylistic
charAtComparisonsReports comparing charAt() results with strings longer than one character.TypeScriptlogical
childContentOverridesVuelogical
childrenPropsReports usage of the children prop.JSXstylistic
childrenWhitespaceJSXlogical (strict)
classAssignmentsReports reassigning class declarations.TypeScriptuntyped
classComponentStateDefinitionsReactstylistic (strict)
classComponentStateInitializationReactstylistic (strict)
classesSortingstylistic
classFieldDeclarationsReports assigning literal values to this in constructors instead of using class field declarations.TypeScriptuntyped
classListDirectiveObjectsAstrostylistic
classListDirectivesAstrostylistic
classListDirectiveSplitsAstrostylistic
classListTogglesPrefer using classList.toggle() over conditional classList.add() and classList.remove().Browserstylistic
classLiteralPropertiesReports getters that return literal values instead of using readonly class fields.TypeScriptstylistic
classMemberDuplicatesReports duplicate class member names that will be overwritten.TypeScriptuntyped
classMethodsThisReports class methods that do not use this.TypeScriptstylistic (strict)
clickEventKeyEventsReports onClick without keyboard event handlers.JSXlogical
clientComponentAsyncDefinitionsNext.jslogical
clientOnlyDirectiveValuesAstrological
cloakDirectiveValidityVuelogical
codeSpacesMarkdownstylistic
combinedPushesReports consecutive array.push() calls that could be combined into a single call.TypeScriptstylistic (strict)
commentedOutTestsVitestlogical (strict)
commentTextNodesReports JSX text nodes that contain comment syntax but are rendered as text.JSXlogical
comparisonMatcherAssertionsViteststylistic
compilerOptionsReactconfig
componentConditionalReturnsSolidJSlogical
componentDataSharingVuelogical
componentDefinitionsReactstylistic
componentDidMountSetStatesReactlogical (strict)
componentDidUpdateSetStatesReactlogical (strict)
componentDisplayNamesReactlogical (strict)
componentFileExportsAstrological
componentHookFactoriesReactlogical
componentHtmlTextPropsVuelogical
componentNameCasingVuestylistic
componentNamesVuestylistic
componentNameValidityVuelogical
componentNestingReactlogical
componentPropertyOrderVuesorting
componentPropMutationsVuelogical
componentVIsBindsVuelogical
componentWillUpdateSetStatesReactlogical (strict)
computedAsyncPropertiesVuelogical
computedPropertyLikeMethodsVuelogical
computedPropertyReturnsVuelogical
computedPropertySideEffectsVuelogical
conditionalExpectsViteststylistic (strict)
configValidityPackageJSONlogical
consecutiveNonNullAssertionsReports unnecessary extra non-null assertions.TypeScriptstylistic
consoleCallsReports calls to console methods.TypeScript(none)
consoleSpacesDisallow leading or trailing spaces in console method string arguments.Node.jsstylistic (strict)
constantAssignmentsReports attempting to reassign variables declared with const.TypeScriptuntyped
constructorReturnsReports returning values from constructor functions.TypeScriptuntyped
constructorSupersReports constructors of derived classes that do not call super(), and constructors of non-derived classes that call super().TypeScriptuntyped
constVariablesTypeScriptlogical
contextValueReferencesReactlogical (strict)
cpuValidityPackageJSONlogical
cspellRuns the CSpell spell checker on any source code file.Spellinglogical
cssManualStylesheetsNext.jslogical
customFontsInPagesNext.jslogical
dangerouslySetInnerHTMLWithChildrenReactlogical
dangerousPropsReactlogical (strict)
dataComputedPropertiesVuelogical
dateConstructorClonesPrefer passing a Date directly to the Date constructor when cloning, rather than calling getTime().TypeScriptlogical
dateNowTimestampsPrefer the shorter Date.now() to get the number of milliseconds since the Unix Epoch.TypeScriptlogical (strict)
debuggerStatementsReports using debugger statements.TypeScriptlogical
decoratorsSortingstylistic
defaultCaseLastReports switch statements where the default clause is not last.TypeScriptlogical
defaultParameterLastEnforce default parameters to be last.TypeScriptuntyped
defaultPropsMatchingPropTypesReactlogical
defaultPropTypesVuelogical
defineEmitsValidityVuelogical
defineOptionsValidityVuelogical
definePropsValidityVuelogical
definitionContentsReports definitions with empty URLs or only empty fragments.Markdownlogical
definitionDuplicatesReports duplicate definition identifiers (case-insensitive).Markdownlogical
definitionUsesReports unused reference definitions.Markdownlogical
deletesReports using the delete operator.Performancelogical
dependenciesPresencePackageJSON(none)
dependenciesValidityPackageJSONlogical
dependencyRangesPackageJSON(none)
dependencyUniquenessPackageJSONlogical
deprecatedDisallow using code marked as @deprecated.TypeScriptlogical
deprecatedDataObjectDeclarationsVuelogical
deprecatedDestroyedLifecycleHooksVuelogical
deprecatedFiltersVuelogical
deprecatedFunctionalTemplatesVuelogical
deprecatedThisDefaultPropsVuelogical
describeCallbackValidityVitestlogical
describePaddingLinesViteststylistic (strict)
describeTitleReferencesViteststylistic
descriptionPresencePackageJSONlogical
descriptionValidityPackageJSONlogical
destructuringReactstylistic
destructuringConsistencyUse destructured variables over properties for consistency.TypeScriptstylistic (strict)
devDependenciesPresencePackageJSON(none)
devDependenciesValidityPackageJSONlogical
directivePairsTypeScriptlogical (strict)
directiveRequireDescriptionsTypeScriptstylistic (strict)
directoriesValidityPackageJSONlogical
distractingElementsReports distracting elements like <marquee> and <blink>.JSXlogical
documentCookiesReports uses of document.cookie which can be error-prone and has security implications.Browserlogical (strict)
duplicateArgumentsReports functions with duplicate parameter names in their signatures.TypeScriptuntyped
duplicateAttributesVuelogical
duplicateVElseIfConditionsVuelogical
dynamicDeletesDisallow using the delete operator on computed key expressions.TypeScriptlogical
eachLoopsViteststylistic
effectSetStatesReactlogical
elementChildrenValidityReports void DOM elements that have children, which is invalid HTML.JSXlogical (strict)
elseDirectiveValidityVuelogical
elseIfDirectiveValidityVuelogical
elseIfDuplicatesReports duplicate conditions in if-else-if chains that make code unreachable.TypeScriptlogical
elseReturnsReports unnecessary else blocks following if statements that always return or throw.TypeScriptstylistic (strict)
emitsValidatorReturnsVuelogical
emptyBlocksReports empty block statements that should contain code.TypeScriptstylistic
emptyDestructuresReports using empty destructuring patterns that destructure no values.TypeScriptlogical
emptyDocumentsReports empty YAML documents that contain only document markers.YAMLlogical
emptyEnumsReports empty enum declarations with no members.TypeScriptlogical
emptyExportsReports empty export statements that don't make a file a module.TypeScriptlogical
emptyFieldsPackageJSONlogical
emptyFilesReports files that contain no meaningful code.TypeScriptstylistic (strict)
emptyFunctionsReports empty functions that should contain code or a comment.TypeScriptstylistic (strict)
emptyMappingKeysReports empty mapping keys.YAMLlogical
emptyMappingValuesReports empty mapping values.YAMLlogical
emptyModuleAttributesReports empty import/export attributes that serve no purpose.TypeScriptstylistic
emptyObjectTypesReports empty object type literals and empty interfaces that are often used incorrectly.TypeScriptlogical
emptySequenceEntriesReports empty sequence entries.YAMLlogical
emptyStaticBlocksReports empty static initialization blocks within class declarations.TypeScriptstylistic
emptyTypeParameterListsReports empty type parameter lists in type aliases and interfaces.TypeScriptstylistic
endTagPresenceVuelogical
enginesPresencePackageJSON(none)
enumInitializersReports enum members without explicit initial values.TypeScript(none)
enumMemberLiteralsRequires all enum members to be literal values.TypeScriptlogical (strict)
enumMixedValuesTypeScriptlogical
enumValueConsistencyReports enums that contain both string and number members.TypeScriptlogical
enumValueDuplicatesReports enum members with duplicate values.TypeScriptlogical
equalityMatchersViteststylistic
equalityOperatorNegationsReports negated expressions on the left side of equality checks.TypeScript(none)
equalityOperatorsTypeScriptlogical
errorBoundariesReactlogical
errorMessagesRequires a message value when creating a built-in error.TypeScriptlogical (strict)
errorSubclassPropertiesReports incorrect Error subclass definitions that don't follow best practices.TypeScriptlogical (strict)
errorUnnecessaryCaptureStackTracesReports unnecessary Error.captureStackTrace() calls in Error subclass constructors.TypeScriptlogical
escapeSequenceCasingTypeScriptstylistic (strict)
evalsReports uses of the eval function.TypeScriptlogical
eventClassesPrefer EventTarget over EventEmitter for cross-platform compatibility.Node.jslogical (strict)
eventHandlerCasingSolidJSlogical
eventListenerSubscriptionsPrefer addEventListener over assigning to on* event handler properties.Browserlogical (strict)
eventTriggerExplicitEmitsVuelogical
evolvingVariableTypesReports variables declared without type annotation or initializer.TypeScript(none)
exceptionAssignmentsReports reassigning exception parameters in catch clauses.TypeScriptlogical
exhaustiveDepsReactlogical
expectGroupPaddingLinesViteststylistic (strict)
expectResolvesViteststylistic
expectsOutsideTestsVitestlogical (strict)
expectTypeOfsViteststylistic
expectValidityVitestlogical
explicitAnysTypeScriptlogical
exponentiationOperatorsTypeScriptstylistic
exportFromImportsTypeScriptstylistic
exportMutablesReports exporting mutable bindings (let or var).TypeScriptlogical
exportsSortingstylistic
exportsAssignmentsPrevent assignment to the exports variable in CommonJS modules.Node.jslogical
exportsValidityPackageJSONlogical
exportUniqueNamesReports duplicate export names in a module.TypeScriptuntyped
exposeAfterAwaitsVuelogical
extraneousClassesTypeScriptlogical (strict)
fencedCodeLanguagesReports fenced code blocks without a language specified.Markdownstylistic (strict)
fetchMethodBodiesDisallow providing a body with GET or HEAD fetch requests.TypeScriptlogical
fileExtensionsYAMLstylistic (strict)
filenamesVitest(none)
filePathsFromImportMetaPrefer import.meta.dirname and import.meta.filename over legacy file path techniques.Node.jsstylistic (strict)
fileReadJSONBuffersPrefer reading JSON files as buffers when using JSON.parse for better performance.Node.jsstylistic (strict)
filesPresencePackageJSON(none)
filesRedundancyPackageJSONlogical
filesValidityPackageJSONlogical
finallyStatementSafetyReports control flow statements in finally blocks that can override control flow in try/catch blocks.TypeScriptlogical
floatingPromisesTypeScriptlogical
forBindKeysVuelogical
forDirectionsReports for loops with counter variables that move in the wrong direction.TypeScriptstylistic
forDirectiveValidityVuelogical
forInArraysReports iterating over an array with a for-in loop.TypeScriptlogical
forInGuardsReports for-in loops without an if statement to filter inherited properties.TypeScript(none)
forMapsSolidJSlogical
fragmentElementsJSXstylistic
functionApplySpreadsPrefer the spread operator over .apply() calls.TypeScriptstylistic
functionAssignmentsReports reassigning variables declared with function declarations.TypeScriptuntyped
functionComponentDefinitionsReactstylistic
functionComponentThisReferencesReactuntyped
functionCurryingRedundancyReports using .apply() or .call() or when the context (this value) provides no benefit.TypeScriptlogical
functionDeclarationStylesReports functions that don't match the configured style (declaration vs expression).TypeScript(none)
functionDefinitionScopeConsistencyTypeScriptstylistic (strict)
functionNameMatchesReports function names that don't match the variable or property they're assigned to.TypeScript(none)
functionNewCallsReports using the Function constructor to create functions from strings.TypeScriptlogical
functionTypeDeclarationsTypeScriptstylistic
gatingReactconfig
generatorFunctionYieldsReports generator functions that do not yield values.TypeScriptlogical
genericConstructorCallsTypeScriptstylistic
getterReturnsTypeScriptuntyped
getterSetterPairedTypesTypeScriptlogical
globalAssignmentsReports attempting to assign to read-only global variables such as undefined, NaN, Infinity, Object, etc.TypeScriptuntyped
globalMutationsReactlogical
globalObjectCallsReports calling global objects like Math, JSON, or Reflect as functions.TypeScriptuntyped
globalThisAliasesTypeScriptstylistic (strict)
googleAnalyticsInlineScriptNext.jslogical
googleFontDisplayNext.jslogical
googleFontPreconnectNext.jslogical
groupedAccessorPairsTypeScriptstylistic
hashbangsNode.jslogical
headDuplicatesNext.jslogical
headImportsInDocumentsNext.jslogical
headingContentsReports heading elements without accessible content.JSXlogical
headingDuplicatesMarkdownstylistic (strict)
headingEmphasisEquivalentsMarkdownstylistic (strict)
headingIncrementsReports heading levels incrementing by more than one.Markdownlogical
headingRootDuplicatesReports multiple H1 headings in the same document.Markdownlogical (strict)
headingRootPresenceMarkdownlogical (strict)
headingTrailingPunctuationMarkdownstylistic (strict)
headNativesNext.jslogical
heritageClausesSortingstylistic
hoistedApiPositionsVitestlogical (strict)
homepageValidityPackageJSONlogical
hookDuplicatesVitestlogical (strict)
hookOrdersViteststylistic (strict)
hooksBeforeTestCasesViteststylistic (strict)
htmlDirectiveValidityVuelogical
htmlLangsReports <html> elements without a lang prop.JSXlogical
ifDirectiveValidityVuelogical
iframeSandboxesJSXlogical (strict)
iframeTitlesReports <iframe> elements without a title prop.JSXlogical
imageAltTextsReports images without alternative text.Markdownlogical
imageContentsReports images with empty URLs or only empty fragments.Markdownlogical
imgNativesNext.jslogical
immutabilityReactlogical
implicitGlobalsPrevents implicit global variable declarations in browser scripts.Browserlogical
impliedEvalsReports using string arguments in setTimeout, setInterval, setImmediate, execScript, or the Function constructor.TypeScriptlogical
importAssignmentsTypeScriptuntyped
importCyclesTypeScriptstylistic
importDuplicatesTypeScriptstylistic
importedNamespaceDynamicAccessesDisallow computed member access on imported namespace identifiers.Performancelogical
importEmptyBlocksReports empty named import blocks.TypeScriptlogical
importExtraneousDependenciesTypeScriptnone
importFileExtensionsNode.js(none)
importMetaPropertiesNuxtstylistic
importSelfTypeScriptstylistic
importsInMocksVitest(none)
importTypeSideEffectsReports imports that use inline type qualifiers on all specifiers when a top-level type qualifier should be used instead.TypeScriptlogical
importUnnecessaryPathSegmentsTypeScriptstylistic
incompatibleLibrariesReactlogical
indexedObjectTypesTypeScriptstylistic
inlineScriptIdNext.jslogical
innerHTMLPropsSolidJSlogical (strict)
inputCheckedMutabilityJSXlogical
instanceOfArraysReports using instanceof Array instead of Array.isArray().TypeScriptlogical
interactiveElementRolesReports interactive elements with non-interactive ARIA roles.JSXlogical
interactiveElementsFocusableReports interactive elements that are not focusable via keyboard.JSXlogical
interfacesSortingstylistic
intersectionTypesSortingstylistic
invalidCodeLinesReports cases for invalid code that isn't formatted across lines.Flintlogical
invalidThisTypeScriptuntyped
invalidVoidTypesTypeScriptlogical (strict)
irregularWhitespaceYAMLstylistic
irregularWhitespacesTypeScriptlogical
isDirectiveValidityVuelogical
isNaNComparisonsReports comparisons with NaN, which should use Number.isNaN() instead.TypeScriptlogical
iterableKeysReactlogical (strict)
jsdocAccessTagsTypeScriptstylistic
jsdocAsterisksTypeScriptstylistic (strict)
jsdocEmptyBlocksTypeScriptstylistic
jsdocEmptyTagsTypeScriptstylistic
jsdocImplementsTagsTypeScriptstylistic
jsdocInformativeDocsTypeScriptstylistic (strict)
jsdocMisleadingBlocksTypeScriptstylistic (strict)
jsdocMultilineBlocksTypeScriptstylistic (strict)
jsdocParameterDescriptionHyphensTypeScriptstylistic (strict)
jsdocParameterNamesTypeScriptstylistic
jsdocPropertyNamesTypeScriptstylistic
jsdocRedundantTypesTypeScriptstylistic
jsdocTagNamesTypeScriptstylistic (strict)
jsdocTagsSortingstylistic
jsdocTemplateNamesTypeScriptstylistic
jsdocTypesSyntaxTypeScriptstylistic
jsdocUnnecessaryReturnsTypeScriptstylistic
jsdocUnnecessaryYieldsTypeScriptstylistic
jsdocValidTypesTypeScriptstylistic
jsdocValuesTypeScriptstylistic
jsdocYieldsTypeScriptstylistic
jsonKeysSortingstylistic
jsxPropsSortingstylistic
keyboardEventKeysPrefer KeyboardEvent.key over deprecated properties like keyCode, charCode, and which.Browserlogical
keyDuplicatesReports unnecessary duplicate keys that override previous values.JSONlogical
keyDuplicatesVuelogical
keyNormalizationReports object keys that are not normalized using Unicode normalization forms.JSONlogical
keyValidityVuelogical
keywordsPresencePackageJSON(none)
keywordsValidityPackageJSONlogical
labelAssociatedControlsReports <label> elements without an associated control element.JSXlogical
labelReferencesReports missing label references.Markdownlogical
labelReferenceValidityReports invalid label references with whitespace.Markdownlogical
langValidityReports invalid lang attribute values.JSXlogical (strict)
licenseRequiredPackageJSONlogical
licenseValidityPackageJSONlogical
lifecyclesAfterAwaitsVuelogical
linkContentsReports links with empty URLs or only empty fragments.Markdownlogical
linkDescriptionsMarkdownlogical (strict)
linkFragmentsReports link fragments that don't exist in the document.Markdownlogical
literalConstructorWrappersTypeScriptstylistic
loneTemplatesVuelogical (strict)
loopAwaitsReports using await expressions inside loops.Performancelogical
loopFunctionsReports function declarations and expressions inside loops that reference variables modified by the loop.Performancelogical
mainValidityPackageJSONlogical
manualMemoizationPreservationsReactlogical
manValidityPackageJSONlogical
mapsSortingstylistic
mathMethodsPrefer modern Math methods over legacy patterns.TypeScriptstylistic (strict)
meaninglessVoidOperatorsReports using the void operator on expressions that are already void or undefined.TypeScriptlogical
mediaCaptionsReports media elements without captions.JSXlogical
mediaSyntaxReversalsReports reversed link and image syntax in Markdown.Markdownstylistic
memoDirectiveValidityVuelogical
messagePhrasesFlintlogical (strict)
methodSignatureStylesTypeScriptstylistic
misleadingVoidExpressionsRequire expressions of type void to appear in statement position.TypeScriptlogical
missingPlaceholdersFlintlogical
misusedPromisesTypeScriptlogical
mockedFunctionInstancesViteststylistic (strict)
mockTypeParametersViteststylistic (strict)
modelDirectiveValidityVuelogical
moduleAssignmentsNext.jsuntyped
modulesSortingstylistic
moduleSpecifierListsRequire non-empty specifier lists in import and export statements.TypeScriptlogical
mouseEventKeyEventsReports mouse events without corresponding keyboard events.JSXlogical
multilineAmbiguitiesReports ambiguous multiline expressions that could be misinterpreted.TypeScriptstylistic
namedDefaultExportsTypeScriptstylistic (strict)
namePresencePackageJSONlogical
namespaceDeclarationsReports using legacy namespace declarations.TypeScriptlogical
namespaceImplicitAmbientImportsTypeScriptstylistic (strict)
namespaceKeywordsTypeScriptstylistic
namespaceValiditySolidJSuntyped
nameValidityPackageJSONlogical
nativeObjectExtensionsTypeScriptuntyped
negativeIndexLengthMethodsTypeScriptstylistic (strict)
negativeZeroComparisonsReports comparisons with -0 that may not behave as expected.TypeScriptlogical
nestedStandaloneIfsTypeScriptstylistic
newDefinitionsTypeScriptlogical
newExpressionsReports standalone new expressions that don't use the constructed object.TypeScriptlogical
newNativeNonConstructorsDisallows using new with global non-constructor functions like Symbol and BigInt.TypeScriptuntyped
nextDocumentOutsidePageNext.jslogical
nextScriptInHeadsNext.jslogical
nextScriptInteractiveOutsideDocumentNext.jslogical
nextTickValidityVuelogical
nodeAppendMethodsPrefer modern DOM append/prepend methods over appendChild/insertBefore.Browserlogical (strict)
nodeDatasetAttributesPrefer using element.dataset over getAttribute/setAttribute for data-* attributes.Browserlogical (strict)
nodeModificationMethodsPrefer modern DOM APIs like .replaceWith() and .before() over legacy methods like .replaceChild() and .insertBefore().Browserlogical (strict)
nodePropertyInChecksFlintlogical
nodeProtocolsPrefer the node: protocol prefix for Node.js built-in modules for clarity and consistency.Node.jslogical
nodeQueryMethodsPrefer modern querySelector and querySelectorAll over legacy DOM query methods.Browserstylistic (strict)
nodeRemoveMethodsPrefer the modern node.remove() method over the legacy parentNode.removeChild(node) API.Browserlogical (strict)
nodeTestImportsVitestlogical
nodeTextContentsPrefer textContent over innerText for DOM nodes.Browserlogical (strict)
nonInteractiveElementInteractionsReports non-interactive elements with interactive event handlers.JSXlogical
nonInteractiveElementRolesReports non-interactive elements with interactive ARIA roles.JSXlogical
nonInteractiveElementTabIndexesReports non-interactive elements with positive or zero tabIndex values.JSXlogical
nonNullableTypeAssertionsTypeScriptstylistic
nonNullAssertedNullishCoalescesTypeScriptlogical (strict)
nonNullAssertedOptionalChainsTypeScriptlogical
nonNullAssertionPlacementTypeScriptstylistic (strict)
nonNullAssertionsTypeScriptlogical (strict)
nonOctalDecimalEscapesReports non-octal decimal escape sequences (\8 and \9) in string literals.TypeScriptlogical
nullishCoalescingOperatorsTypeScriptstylistic
numberMethodRangesTypeScriptlogical
numberStaticMethodsTypeScriptstylistic (strict)
numericErasingOperationsTypeScriptlogical
numericLiteralCasingTypeScriptstylistic (strict)
numericLiteralParsingReports parseInt calls with binary, hexadecimal, or octal strings that can be replaced with numeric literals.TypeScriptstylistic
numericPrecisionTypeScriptlogical
numericSeparatorGroupsTypeScriptstylistic (strict)
numericTrailingZerosReports trailing zeros in numeric values.YAMLstylistic (strict)
objectAssignSpreadsTypeScriptstylistic
objectCallsPrefer {} object literal notation or Object.create instead of calling or constructing Object.TypeScriptlogical
objectEntriesMethodsTypeScriptstylistic (strict)
objectHasOwnsPrefer Object.hasOwn() over Object.prototype.hasOwnProperty.call() for checking own properties.TypeScriptstylistic
objectKeyDuplicatesReports unnecessary duplicate keys that override previous values.TypeScriptuntyped
objectProtoReports using the deprecated proto property to access or modify an object's prototype.TypeScriptuntyped
objectPrototypeBuiltInsReports direct calls to Object.prototype methods on object instances.TypeScriptlogical
objectsSortingstylistic
objectShorthandTypeScriptstylistic
objectSpreadUnnecessaryFallbacksTypeScriptlogical
objectTypeDefinitionsTypeScriptstylistic
objectTypesSortingstylistic
octalEscapesReports using octal escape sequences in string literals.TypeScriptuntyped
octalNumbersReports using legacy octal numeric literals.TypeScriptuntyped
olPrefixesMarkdownstylistic (strict)
onceDirectiveValidityVuelogical
onDirectiveValidityVuelogical
onEventHyphensVuestylistic
onEventStylesVuestylistic
onExactModifiersVuelogical
operatorAssignmentShorthandTypeScriptstylistic
optionalChainOperatorsTypeScriptstylistic
optionalDependenciesPresencePackageJSON(none)
optionalDependenciesValidityPackageJSONlogical
optionalPropDefaultsVuelogical
osValidityPackageJSONlogical
overloadSignaturesAdjacentTypeScriptstylistic
packageCollectionsSortingstylistic
parameterPropertyAssignmentTypeScriptlogical
parameterReassignmentsTypeScriptstylistic (strict)
parseIntRadixesTypeScriptlogical
peerDependenciesPresencePackageJSON(none)
peerDependenciesValidityPackageJSONlogical
plainScalarsPrefer plain style scalars over quoted scalars.YAMLstylistic (strict)
plusOperandsTypeScriptlogical
polyfillDuplicatesNext.jslogical
preDirectiveValidityVuelogical
privateValidityPackageJSONlogical
processExitsPrevent direct use of process.exit() for better error handling and testing.Node.jslogical
promiseExecutorReturnsTypeScriptlogical
promiseFinallyReturnsTypeScriptlogical
promiseFunctionAsyncTypeScriptstylistic
promiseMethodSingleArrayArgumentsTypeScriptlogical
promiseRejectErrorsTypeScriptlogical
promiseSettleAssertionsViteststylistic
propDestructuresSolidJSlogical
propDuplicatesDisallow duplicate props in JSX elements.JSXlogical
propertyAccessNotationTypeScriptstylistic
propertyOrderingPackageJSONlogical
propertyValidityReactuntyped
propNameCasingVuestylistic
propNameValidityVuelogical
propRequiredAndDefaultsVuelogical (strict)
propTypeConstructorsVuelogical
propTypesReactuntyped
propTypesVuelogical
publishConfigValidityPackageJSONlogical
pureComponentShouldUpdateDefinitionsJSXlogical (strict)
purityReactlogical
reactivitySolidJSlogical
reactLikeDepsSolidJSuntyped
reactLikePropsSolidJSuntyped
recursionOnlyArgumentsTypeScriptlogical
reduceTypeParametersTypeScriptlogical (strict)
redundantTypeConstituentsTypeScriptlogical
referenceLikeUrlsReports resource links/images with URLs that match definition identifiers.Markdownlogical
refOperandsVuelogical
refsReactlogical
refStringsReactlogical
regexAllGlobalFlagsTypeScriptlogical
regexAmbiguousInvalidityTypeScriptlogical
regexCharacterClassesTypeScriptstylistic (strict)
regexCharacterClassRangesTypeScriptstylistic
regexCharacterClassSetOperationsTypeScriptstylistic
regexConciseCharacterClassNegationsTypeScriptstylistic
regexContradictoryAssertionsTypeScriptlogical
regexControlCharacterEscapesTypeScriptlogical
regexControlCharactersTypeScriptlogical
regexDigitMatchersTypeScriptstylistic (strict)
regexDollarEscapesTypeScriptstylistic
regexDuplicateCharacterClassCharactersTypeScriptlogical
regexDuplicateDisjunctionsTypeScriptlogical
regexEmptyAlternativesTypeScriptlogical
regexEmptyCapturingGroupsTypeScriptlogical
regexEmptyCharacterClassesTypeScriptlogical
regexEmptyGroupsTypeScriptlogical
regexEmptyLazyQuantifiersTypeScriptlogical
regexEmptyLookaroundsAssertionsTypeScriptlogical
regexEmptyStringLiteralsTypeScriptlogical
regexEscapeBackspacesTypeScriptlogical
regexExecutorsTypeScriptstylistic (strict)
regexFlagsSortingstylistic
regexGraphemeStringLiteralsTypeScriptlogical (strict)
regexHexadecimalEscapesTypeScriptstylistic (strict)
regexIgnoreCaseFlagsTypeScriptlogical
regexInvisibleCharactersTypeScriptlogical
regexLegacyFeaturesTypeScriptlogical
regexLetterCasingTypeScriptstylistic (strict)
regexListsSortingstylistic
regexLiteralsTypeScriptlogical
regexLookaroundAssertionsTypeScriptstylistic (strict)
regexLookaroundQuantifierOptimizationsTypeScriptlogical
regexMatchNotationTypeScriptstylistic (strict)
regexMisleadingCapturingGroupsTypeScriptlogical
regexMisleadingQuantifiersTypeScriptlogical
regexMisleadingUnicodeCharactersTypeScriptlogical
regexNamedBackreferencesTypeScriptstylistic (strict)
regexNamedCaptureGroupsTypeScriptlogical
regexNamedReplacementsTypeScriptstylistic (strict)
regexNonStandardFlagsTypeScriptlogical
regexObscureRangesTypeScriptlogical
regexOctalEscapesTypeScriptlogical
regexPlusQuantifiersTypeScriptstylistic (strict)
regexPredefinedAssertionsTypeScriptstylistic
regexQuantifierOptimizationsTypeScriptlogical
regexQuestionQuantifiersTypeScriptstylistic (strict)
regexRepeatQuantifiersTypeScriptstylistic
regexResultArrayGroupsTypeScriptstylistic (strict)
regexSetOperationOptimizationsTypeScriptlogical
regexStandaloneBackslashesTypeScriptlogical
regexStarQuantifiersTypeScriptstylistic (strict)
regexSuperLinearBacktrackingTypeScriptlogical
regexSuperLinearMovesTypeScriptlogical
regexTestMethodsTypeScriptstylistic
regexUnicodeCodepointEscapesTypeScriptstylistic (strict)
regexUnicodeEscapesTypeScriptstylistic
regexUnicodeFlagTypeScript(none)
regexUnicodePropertiesTypeScriptstylistic
regexUnnecessaryAssertionsTypeScriptlogical
regexUnnecessaryBackreferencesTypeScriptlogical
regexUnnecessaryCharacterClassesTypeScriptlogical
regexUnnecessaryCharacterRangesTypeScriptlogical
regexUnnecessaryDisjunctionsTypeScriptlogical
regexUnnecessaryDollarReplacementsTypeScriptlogical
regexUnnecessaryEscapesTypeScriptstylistic
regexUnnecessaryLookaroundAssertionsTypeScriptlogical
regexUnnecessaryNestedAssertionsTypeScriptlogical
regexUnnecessaryNestedQuantifiersTypeScriptlogical
regexUnnecessaryNonCapturingGroupsTypeScriptstylistic (strict)
regexUnnecessaryNumericQuantifiersTypeScriptlogical
regexUnnecessaryOptionalAssertionsTypeScriptlogical
regexUnnecessaryReferentialBackreferencesTypeScriptlogical
regexUnnecessarySetOperandsTypeScriptlogical
regexUnusedCapturingGroupsTypeScriptlogical
regexUnusedFlagsTypeScriptlogical
regexUnusedLazyQuantifiersTypeScriptlogical
regexUnusedQuantifiersTypeScriptlogical
regexValidityTypeScriptlogical
regexWordMatchersTypeScriptstylistic (strict)
regexZeroQuantifiersTypeScriptlogical
removeEventListenerExpressionsDisallow inline function expressions in removeEventListener calls.Browserlogical
renderedLiteralLeaksJSXlogical (strict)
renderReturnsVuelogical
renderSetStatesReactlogical
repositoryDirectoryValidityPackageJSONlogical
repositoryShorthandPackageJSONlogical
repositoryValidityPackageJSONlogical
requireImportsTypeScriptlogical
responseMethodsTypeScriptstylistic
restrictedComponentPropsReact(none)
restrictedDomPropsReact(none)
restrictedElementsReact(none)
restrictedGlobalsTypeScript(none)
restrictedIdentifiersTypeScript(none)
restrictedImportsTypeScript(none)
restrictedMatchersVitest(none)
restrictedPropertiesTypeScript(none)
restrictedPropTypesReact(none)
restrictedSyntaxTypeScript(none)
restrictedTypesTypeScript(none)
restrictedViMethodsVitest(none)
returnAssignmentsReports using assignment expressions in return statements.TypeScriptstylistic
returnAwaitPromisesTypeScriptlogical
returnThisTypesTypeScriptlogical (strict)
roleRedundanciesReports redundant ARIA roles on elements with implicit roles.JSXlogical
roleRequiredAriaPropsReports ARIA roles missing their required ARIA properties.JSXlogical
roleSupportedAriaPropsReports ARIA properties that are not supported by an element's role.JSXlogical
roleTagsReports ARIA roles that have semantic HTML element equivalents.JSXlogical (strict)
ruleDescriptionsFlintlogical
rulePresetsFlintlogical
rulesOfHooksReactlogical
ruleURLsFlintlogical
scopePropsReports scope props on non-th elements.JSXlogical
scriptSetupExportsVuelogical
scriptsValidityPackageJSONlogical
scriptSyncsNext.jslogical
scriptUrlsReports javascript: URLs that can act as a form of eval.Browserlogical
scriptUrlsJSXlogical
selfAssignmentsReports self-assignments which have no effect and are likely errors.TypeScriptlogical
selfClosingTagsJSXstylistic
selfComparisonsReports comparing a value to itself.TypeScriptlogical (strict)
sequencesReports using the comma operator in expressions.TypeScriptuntyped
setDirectiveChildContentConflictsAstrological
setHasExistenceChecksTypeScriptstylistic (strict)
setHtmlDirectivesAstrosecurity
setsSortingstylistic
setSizeLengthChecksTypeScriptstylistic (strict)
setterReturnsTypeScriptuntyped
setTextDirectivesAstrological
shadowedRestrictedNamesReports variable declarations that shadow JavaScript's restricted names.TypeScriptuntyped
shadowsTypeScriptstylistic
showDirectiveValidityVuelogical
showWhensSolidJSstylistic
singleVariableDeclarationsTypeScriptlogical
sizeComparisonOperatorsTypeScriptstylistic (strict)
slotArgumentsVuelogical (strict)
slotDirectiveValidityVuelogical
slotsAsFunctionsVuelogical
slotStylesVuestylistic
snapshotLocalTextContextsVitestlogical
solidImportsSolidJSlogical
sparseArraysReports array literals with holes (sparse arrays).TypeScriptlogical
spreadAccumulatorsReports spread operations that accumulate values in loops, causing quadratic time complexity.Performancelogical
stateMutationsReactlogical
staticComponentsReactlogical
staticElementInteractionsReports static elements with event handlers that lack ARIA roles.JSXlogical
staticMemberOnlyClassesTypeScriptstylistic (strict)
strictBooleanExpressionsTypeScriptlogical
stringCaseMismatchesTypeScriptlogical
stringCodePointsTypeScriptlogical (strict)
stringMappingKeysEnforces mapping keys to be strings.YAMLlogical (strict)
stringSliceMethodsTypeScriptstylistic (strict)
stringStartsEndsWithTypeScriptstylistic
stringTrimMethodsTypeScriptstylistic (strict)
structuredCloneMethodsTypeScriptstylistic (strict)
styledJsxInDocumentsNext.jslogical
stylePropObjectsReactlogical (strict)
stylePropValiditySolidJSuntyped
svgTitlesReports <svg> elements without a <title> child element.JSXlogical
switchCasesSortingstylistic
symbolDescriptionsReports Symbol() calls without description arguments.TypeScriptstylistic
tabIndexPositiveValuesReports positive tabIndex values.JSXlogical
tableColumnCountsReports table rows with column counts that don't match the header.Markdownlogical
templateExpressionValuesTypeScriptlogical
templateKeysVuelogical
templateRootValidityVuelogical
templateShadowsVuelogical (strict)
templateVForOnChildrenVuelogical
testBodyExpectationsVitestlogical
testCaseAssertionsViteststylistic
testCaseDuplicatesReports test cases that are identical to previous test cases.Flintlogical
testCaseOnliesFlintlogical
testCasePaddingLinesViteststylistic (strict)
testCasesWithinDescribesViteststylistic (strict)
testConditionalsVitestlogical (strict)
testDefinitionFunctionsVitest(none)
testPrefixesViteststylistic
testShorthandsFlintstylistic
textareaMustacheChildrenVuelogical
textDirectiveValidityVuelogical
thisAliasesTypeScriptlogical
thisBeforeSuperTypeScriptuntyped
thisInTemplatesVuelogical (strict)
throwErrorsTypeScriptlogical
titleInDocumentHeadsNext.jslogical
titleRepeatsVitestlogical
titleValidityVitestlogical
toContainMatchersViteststylistic
toHaveLengthMatchersViteststylistic
topLevelAwaitsTypeScriptstylistic (strict)
transitionTogglesVuelogical
tripleSlashReferencesTypeScriptlogical
tripleSlashReferenceValidityTypeScriptlogical
tsCommentsTypeScriptlogical
tslintCommentsTypeScriptstylistic
typeAssertionsTypeScriptstylistic
typeConstituentDuplicatesTypeScriptlogical
typeConstituentsSortingstylistic
typeExportsTypeScriptstylistic
typeImportsTypeScriptstylistic
typeofComparisonsReports typeof expressions that compare impossible string literals.TypeScriptuntyped
typePresencePackageJSONlogical
typeRequiredPackageJSONlogical
typesPresencePackageJSON(none)
typeValidityPackageJSONlogical
typosNext.jslogical
typosReactlogical
unassignedVariablesReports variables that are declared but never assigned a value.TypeScriptuntyped
unboundMethodsTypeScriptlogical
undefinedInitialValuesTypeScriptstylistic
undefinedTypeofChecksTypeScriptstylistic (strict)
undefinedVariablesReports using variables that are not defined.TypeScriptuntyped
unescapedEntitiesDisallow unescaped HTML entities in JSX text that may cause rendering issues.JSXstylistic
unicodeBOMsReports files with Unicode Byte Order Marks (BOMs).TypeScriptstylistic
unifiedSignaturesTypeScriptlogical (strict)
unionTypesSortingstylistic
unnecessaryBindTypeScriptlogical
unnecessaryBlocksReports standalone block statements that don't create a meaningful scope.TypeScriptstylistic
unnecessaryBooleanCastsTypeScriptstylistic
unnecessaryCatchesReports catch clauses that only rethrow the caught error without modification.TypeScriptlogical
unnecessaryComparisonsTypeScriptlogical
unnecessaryComputedKeysTypeScriptstylistic
unnecessaryConcatenationReports string concatenation using the + operator when both operands are string literals.TypeScriptstylistic
unnecessaryConditionsTypeScriptlogical
unnecessaryConstructorsTypeScriptstylistic
unnecessaryContinuesTypeScriptlogical
unnecessaryEscapesTypeScriptstylistic
unnecessaryFragmentsDisallow unnecessary JSX fragments that wrap a single child or have no children.JSXstylistic
unnecessaryLogicalComparisonsTypeScriptlogical
unnecessaryMathClampsTypeScriptlogical
unnecessaryNumericFractionsTypeScriptlogical
unnecessaryQualifiersTypeScriptstylistic
unnecessaryRenamesTypeScriptstylistic
unnecessaryReturnsTypeScriptstylistic
unnecessarySpreadsTypeScriptlogical
unnecessaryTemplateAttributesVuelogical
unnecessaryTemplateExpressionsTypeScriptlogical
unnecessaryTernariesTypeScriptstylistic (strict)
unnecessaryTypeAnnotationsTypeScriptstylistic
unnecessaryTypeArgumentsTypeScriptlogical
unnecessaryTypeAssertionsTypeScriptlogical
unnecessaryTypeConstraintsTypeScriptlogical
unnecessaryTypeConversionsTypeScriptlogical
unnecessaryTypeParametersTypeScriptlogical
unnecessaryUndefinedDefaultsTypeScriptlogical
unnecessaryUseStrictsTypeScriptlogical
unpublishedBinsNode.jslogical
unpublishedImportsNode.jslogical
unreachableStatementsTypeScriptuntyped
unsafeDeclarationmergingTypeScriptlogical
unsafeEnumComparisonsTypeScriptlogical
unsafeFunctionTypesTypeScriptlogical
unsafeInlineScriptsAstrosecurity
unsafeNegationsReports negating the left operand of in or instanceof relations.TypeScriptuntyped
unsafeOptionalChainsTypeScriptuntyped
unsafeToStringTypeScriptlogical
unsafeTypeAssertionsTypeScriptlogical
unsafeUnaryNegationsTypeScriptlogical
unsupportedNodeAPIsNode.jslogical
unsupportedSyntaxReactlogical
unusedClassComponentMethodsReactlogical
unusedComponentsVuelogical
unusedCssSelectorsAstrological
unusedExpressionsTypeScriptlogical
unusedLabelsTypeScriptstylistic
unusedMessageIdsFlintlogical
unusedPlaceholdersFlintlogical
unusedPrivateClassMembersTypeScriptlogical
unusedPropTypesReactlogical
unusedStateReactlogical
unusedStyleDefineVarsAstrological
unusedSwitchStatementsTypeScriptlogical
unusedValuesTypeScriptlogical
unusedVariablesTypeScriptlogical
unusedVariablesVuelogical
usageBeforeDefinitionTypeScriptuntyped
uselessDefaultAssignmentsTypeScriptlogical
useMemoReturnsReactlogical
useStateDestructuresReactstylistic
useStrictDirectivesTypeScriptuntyped
valueSafetyReports JSON values that are unsafe for data interchange.JSONlogical
varDeclarationsTypeScriptstylistic
variableBlockScopeUsageTypeScriptuntyped
variableDeclarationsSortingstylistic
variableDeletionsReports attempting to delete variables with the delete operator.TypeScriptuntyped
variableRedeclarationsTypeScriptuntyped
versionPresencePackageJSONlogical
versionValidityPackageJSONlogical
vHtmlDirectivesVuelogical (strict)
vIfsWithVForsVuelogical
viNamespaceNamesVitest(none)
vitestGlobalImportsViteststylistic
voidOperatorReports using the void operator.TypeScriptstylistic
vuePackageImportsVuelogical
watchAfterAwaitsVuelogical
watchArrowFunctionsVuelogical
windowMessagingTargetOriginRequires specifying the targetOrigin argument when calling window.postMessage().Browserlogical
withStatementsReports using with statementsTypeScriptuntyped
workspacesValidityPackageJSONlogical
wrapperObjectsTypeScriptlogical
wrapperObjectTypesTypeScriptlogical
yamlKeysSortingstylistic
yamlSequenceValuesSortingstylistic
Made with ❤️‍🔥 in Boston by Josh Goldberg and contributors.