Skip to content

Latest commit

 

History

History

eslint-config-base

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

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