eslint-config-airlight-base
v7.7.1
Published
ESLint configure base focused on code quality, security and performance on top of eslint-config-airbnb-typescript/base
Downloads
119
Readme
eslint-config-airlight-base
ESLint configure for base focused on code quality, security and performance on top of eslint-config-airbnb-typescript/base.
Now compatible with oxlint
and biome
configuration
Installation
npm install eslint-config-airlight-base --save-dev
# or
yarn add eslint-config-airlight-base -D
Peer dependencies
Dependencies
- https://github.com/iamturns/eslint-config-airbnb-typescript
- https://github.com/typescript-eslint/typescript-eslint
- https://github.com/prettier/eslint-config-prettier
- https://github.com/benmosher/eslint-plugin-import
- https://github.com/nickdeis/eslint-plugin-no-secrets
- https://github.com/dolsem/eslint-plugin-filename-rules [
REMOVED
]
Dependencies reason
- eslint-config-airbnb-typescript - Main config
- @typescript-eslint/eslint-plugin - Config for TypeScript codebase
- eslint-config-prettier - Prettier config
- eslint-plugin-import - ESLint plugin with rules that help validate proper imports
- eslint-plugin-no-secrets - secrets/credentials finder/matched plug-in for ESLint
Usage
.eslintrc
{
"extends": "airlight-base/legacy"
}
eslint.config.js
import airlightBase from 'eslint-config-airlight-base';
export default [
...airlightBase,
// your rules
]
oxlint
If you are using eslint + oxlint combo, see here and follow guide
oxlint -c ./node_modules/eslint-config-airlight-base/oxlintrc.json
biome
If you are using eslint + biome combo, see here and follow guide
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"extends": ["eslint-config-airlight-base/biome.json"]
}
biome check . --write
Rules
We customized following rules.
Change these flat config or legacy config by your needs
License
MIT