2.0.1 • Published 17 days ago

@squonk/eslint-config v2.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
17 days ago

eslint-config-squonk

ESLint config used by Squonk front-end apps

Installation

This assumes you are using pnpm.

  1. Install package:
pnpm add -D eslint @squonk/eslint-config
  1. Create (or modify) a eslint.config.js for your flat eslint config file and merge the configs you need for the project:
import config from "@squonk/eslint-config";

export default config.map((c) => ({ ...c, ignores: ["**/dist/**"] }));

Add any files and directories you wish to ignore since .eslintignore is removed for flat configs.

  1. Install peer dependencies or (preferred) set --resolve--resolve-plugins-relative-to="path/to/@squonk/eslint-config" (may be a monorepo or the node-modules folder)

Development

Releasing a new version:

  1. Merge the PR created by release-please
  2. From the repo run pnpm publish