@leomotors/config
v2.0.0
Published
My personal config for node projects, include ESLint Config
Maintainers
Readme
@leomotors/config
My personal config for node projects, include ESLint Config
Install
pnpm add -D @leomotors/configUsage
File: eslint.config.js
import { createESLintConfig } from "@leomotors/config";
export default createESLintConfig();To add other rules:
import { createESLintConfig } from "@leomotors/config";
import { defineConfig } from "eslint/config";
export default defineConfig(
...createESLintConfig(),
{
files: ["**/*.ts", "**/*.svelte", "**/*.mts"],
rules: {
"no-undef": "off",
},
},
);