Skip to content

Actively maintained fork of `eslint-config-standard`: ESLint Config for JavaScript Standard Style

License

Notifications You must be signed in to change notification settings

eslinter/eslint-config-standard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@eslinter/eslint-config-standard

GitHub Actions Workflow Status Codecov type-coverage CodeRabbit Pull Request Reviews npm GitHub Release

Conventional Commits Renovate enabled JavaScript Style Guide Code Style: Prettier changesets

Actively maintained fork of eslint-config-standard: ESLint Config for JavaScript Standard Style

TOC

The ESLint config of JavaScript Standard Style

JavaScript Style Guide - Standard Style

This module is for advanced users. You probably want to use standard instead :)

Usage

This package exports a flat ESLint configuration on the main @eslinter/eslint-config-standard entry, and also exports a legacy ESLintrc configuration on the @eslinter/eslint-config-standard/legacy entry.

# npm
npm install -D eslint @eslinter/eslint-config-standard

# yarn
yarn add -D eslint @eslinter/eslint-config-standard

# pnpm
pnpm add -D eslint @eslinter/eslint-config-standard

# bun
bun add -D eslint @eslinter/eslint-config-standard

Flat config

Example eslint.config.js:

import standard from '@eslinter/eslint-config-standard'

export default [
  standard,
  {
    // your overrides here
  },
]

Legacy ESLintrc config

Example .eslintrc.json:

{
  "extends": "@eslinter/eslint-config-standard/legacy",
  "overrides": [
    {
      // your overrides here
    },
  ],
}

Learn more

For the full listing of rules, editor plugins, FAQs, and more, visit the main JavaScript Standard Style repo.

Sponsors and Backers

Sponsors and Backers

Sponsors

1stG RxTS UnTS
1stG Open Collective sponsors RxTS Open Collective sponsors UnTS Open Collective sponsors

Backers

1stG RxTS UnTS
1stG Open Collective backers RxTS Open Collective backers UnTS Open Collective backers

Changelog

Detailed changes for each release are documented in CHANGELOG.md.

License

MIT © JounQin@1stG.me