Skip to content

luooooob/eslint-config

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@luooooob/eslint-config

My shareable ESLint configuration. Inspired by https://github.com/antfu/eslint-config

Feature

  1. Out of the box.
  2. Support javascript, typescript, javascriptreact, typescriptreact, vue and json, package.json, tsconfig.json files.

Usage

Install

npm i -D @luooooob/eslint-config

Config .eslintrc

{
  "extends": "@luooooob"
}

Add script for package.json

{
  "scripts": {
    "lint": "eslint . --fix"
  }
}

Config editor

I recommend using eslint as the default formatter of your editor. For example, if you are using VS Code, create a .vscode/settings.json:

{
  "editor.formatOnSave": true,
  "eslint.format.enable": true,
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    "typescript",
    "typescriptreact",
    "vue",
    "json"
  ],
  "[javascript]": {
    "editor.defaultFormatter": "dbaeumer.vscode-eslint",
  },
  "[javascriptreact]": {
    "editor.defaultFormatter": "dbaeumer.vscode-eslint",
  },
  "[typescript]": {
    "editor.defaultFormatter": "dbaeumer.vscode-eslint",
  },
  "[typescriptreact]": {
    "editor.defaultFormatter": "dbaeumer.vscode-eslint",
  },
  "[vue]": {
    "editor.defaultFormatter": "dbaeumer.vscode-eslint",
  },
  "[json]": {
    "editor.defaultFormatter": "dbaeumer.vscode-eslint",
  },
}

About

My shareable ESLint configuration.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published