Skip to content

Latest commit

 

History

History

eslint-config-base

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

@nice-move/eslint-config-base eslint

A eslint config for best practice.

npm github node

Installation

npm install eslint @nice-move/eslint-config-base --save-dev

Usage

Add to package.json

// example: package.json
{
  "eslintConfig": {
    "extends": "@nice-move/eslint-config-base"
  }
}

Then run

eslint --fix .

Specification

Environment pattern
browser .js, .html
node.js .mjs, .mts, .cjs, .cts
es modules .mjs, .mts, .js, .html
commonjs .cjs, source code in webpack project
webpack src/**, packages/*/**
ava {test,tests,spec,specs}/**, **/*.{test,spec}.*
when eslint-plugin-ava installed

Tips

Noiseless reporting

Rules can handle by prettier and garou is disabled by default.

Related