We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3454296 commit a128d95Copy full SHA for a128d95
src/index.ts
@@ -17,7 +17,7 @@ export default function createConfig({
17
}: ConfigOptions = {}): ConfigArray {
18
const mayHaveJsxInSfc = supportedScriptLangs.jsx || supportedScriptLangs.tsx
19
const needsTypeAwareLinting = configNamesToExtend.some(name =>
20
- name.endsWith('-type-checked'),
+ name.includes('TypeChecked') && name !== 'disableTypeChecked',
21
)
22
23
// Type-aware linting is in conflict with JSX syntax in `.vue` files
0 commit comments