@aerian/eslint-config-preact
v13.2.0
Published
This is a sharable ESLint config for Preact. If you're using TypeScript, add `@aerian/eslint-config-typescript` too.
Downloads
52
Readme
@aerian/eslint-config-preact
This is a sharable ESLint config for Preact. If you're using TypeScript, add
@aerian/eslint-config-typescript
too.
If you're not using React, try @aerian/eslint-config
instead. If you're using
React, try @aerian/eslint-config-react
To install, run:
#npm
npm i -D eslint prettier @aerian/eslint-config-preact
#yarn
yarn add -D eslint prettier @aerian/eslint-config-preact
To use it, create the following .eslintrc.json:
{
"extends": ["@aerian/eslint-config-preact"]
}
..or if you're using TypeScript:
{
"extends": [
"@aerian/eslint-config-preact",
"@aerian/eslint-config-typescript"
]
}
The base formatting uses Prettier, which parses and reformats your code. It runs
this through ESLint, so you can run use eslint . --fix
to apply Prettier
formatting as well as ESLint rules.