@seamly/eslint-config
v4.0.0
Published
Default eslint-config used within @seamly implementations
Readme
Seamly eslint-config
This is the default eslint configuration for @seamly/* implementations.
Installation
yarn add -D @seamly/eslint-config
// or
npm install -D @seamly/eslint-configUsage
This package can be used as @seamly/eslint-config following the Eslint documentation on Extending configuration files.
Example usage for eslint.config.mjs
import {
seamlyBaseRules,
seamlyJestRules,
seamlyReactRules,
seamlyTypescriptRules,
} from '@seamly/eslint-config'
import { defineConfig } from 'eslint/config'
export default defineConfig([
...seamlyBaseRules,
...seamlyJestRules,
...seamlyReactRules,
...seamlyTypescriptRules,
])