1.2.0 • Published 1 year ago

@elibol/eslint-config v1.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@elibol/eslint-config

Prettier and ESLint configuration for JavaScript & Vue projects

Table Of Contents

Installation

  1. Install the packages to your project with the command below:
npm install -D eslint prettier@^2.7.1 @elibol/eslint-config eslint-config-prettier eslint-plugin-prettier eslint-plugin-vue
  1. Create .eslintrc.js file in your project root if it doesn't exist
  2. Pick the configuration you need from the list below and replace the content of the file with one of the examples below
  3. Create prettier.config.js file in your project root if it doesn't exist and replace the content with the example below

Vue 2/3 (default config)

// .eslintrc.js
module.exports = {
  root: true,
  extends: ['@elibol/eslint-config'],
}

NOTE: that some rules might not work perfectly with Vue version 2. For those, feel free to override rules in .eslintrc.js file.

Vue 3 & TypeScript

To be able to use TypeScript configuration, make sure to install dependencies below:

npm install -D @typescript-eslint/parser vue-eslint-parser @vue/eslint-config-typescript
// .eslintrc.js
module.exports = {
  root: true,
  extends: ['@elibol/eslint-config/vue3-typescript'],
}

JavaScript only

If you would only need to import JavaScript rules but not Vue, then you can use the package as following:

module.exports = {
  extends: ['@elibol/eslint-config/javascript'],
}

If this is the scenario, you don't need to install eslint-plugin-vue either.

Example prettier.config.js file

This package uses prettier by default. For the config to work properly, you need to inherit prettier rules from the project.

To do that, replace content of your prettier.config.js file with the code below

module.exports = require('@elibol/eslint-config/prettier.config')

NOTE: By default the package exports Vue configuration. So using extends: ["@elibol/eslint-config"] or extends: ["@elibol"] will by default include JavaScript and eslint-plugin-vue rules. If you want to use pure JavaScript or Vue TypeScript configuration, see below.

Linting your project with npm scripts

Add the scripts below to your package.json file. Then you will be able to run

  • npm lint or yarn lint for running the linter dry
  • npm lint:fix or yarn lint:fix to run the linter and fix errors/warnings (those that are fixable)
{
  "scripts": {
    "lint": "eslint \"**/*.{vue,ts,js}\"",
    "lint-fix": "eslint --fix \"**/*.{vue,ts,js}\""
  }
}

Enabling autofix on save for VS Code

Add the settings below to your VSCode settings to run linter on every save

.vscode/settings.json

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

License

MIT