Skip to content

Latest commit

 

History

History
66 lines (50 loc) · 1.48 KB

README.md

File metadata and controls

66 lines (50 loc) · 1.48 KB

@moso/eslint-config

Extremely oppinionated ESLint configs for development for vanilla JavaScript, TypeScript, and Vue 3.

Each package can be installed separately, and they all extend the basic package.

Usage

Install

pnpm add -D eslint @moso/eslint-config

Configure your .eslintrc

{
  "extends": "@moso",
}

You shouldn't need an .eslintignore as presets are providing it

Add script tag for package.json

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

Configure VS Code auto fix

Install the VS Code ESLint extension and create the file .vscode/settings.json with the following config:

{
  "editor.formatOnSave": false,
  "editor.codeActionsOnSave": {
    "source.fixAll.eslint": true
  }
}

TypeScript-aware

When a .tsconfig is found, TypeScript overrides will kick in, otherwise the basic rules are in play.

CSS?

Install and configure stylelint yourself. This project doesn't lint CSS.

Need to configure these?

Just override the rules in your .eslintrc-file:

{
  "extends": "@moso",
  "rules": {
    // insert your rules here
  },
}

Coming soon

Linting rules specific for React (JSX) and Nuxt.