@sveltek/eslint-config
Version:
Sveltek's config for ESLint.
17 lines (16 loc) • 573 B
TypeScript
import { Linter } from "eslint";
import { defineConfig, globalIgnores } from "eslint/config";
//#region src/js/types.d.ts
declare const jsConfig: Linter.Config;
//#endregion
//#region src/ts/types.d.ts
declare const tsConfig: Linter.Config;
//#endregion
//#region src/svelte/types.d.ts
declare const svelteConfig: Linter.Config;
//#endregion
//#region src/ignores/types.d.ts
declare const ignores: string[];
declare const ignoresConfig: Linter.Config;
//#endregion
export { type defineConfig, type globalIgnores, ignores, ignoresConfig, jsConfig, svelteConfig, tsConfig };