@truenine/eslint9-config
Version:
ESLint 9 configuration package for Compose Client projects with TypeScript, Vue, and modern JavaScript support
12 lines (11 loc) • 433 B
text/typescript
import { Linter } from "eslint";
//#region src/presets/typescript-rules.d.ts
/**
* TypeScript 专用规则配置
* 包含 @typescript-eslint 插件的规则,用于增强 TypeScript 代码质量。
* 这些规则需要类型信息,因此需要配置 parserOptions.project。
*/
declare const typescriptRulesPreset: Linter.RulesRecord;
//#endregion
export { typescriptRulesPreset };
//# sourceMappingURL=typescript-rules.d.mts.map