@pentible/eslint-config-storybook
v0.116.0
Published
Pentible's standard eslint config (storybook)
Readme
eslint-config-storybook
usage
npm i -D @pentible/eslint-config @pentible/eslint-config-storybook @pentible/eslint-config-prettiereslint.config.mjs
import { pentible, relativeIgnoreFile } from "@pentible/eslint-config";
import { pentibleStorybook } from "@pentible/eslint-config-storybook";
import { pentiblePrettier } from "@pentible/eslint-config-prettier";
import { defineConfig } from "eslint/config";
const config = defineConfig([
relativeIgnoreFile(".gitignore", import.meta.url),
pentible,
pentibleStorybook,
pentiblePrettier,
]);
export default config;