0.1.3 • Published 2 years ago

@gorrion/eslint-config v0.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@gorrion/eslint-config

ESLint config used at Gorrion Software House

Installation

Install the packages using npm (or yarn or pnpm)

npm install --save-dev eslint @gorrion/eslint-config eslint-plugin-import eslint-config-prettier

This will allow you to use the base package.

If you are using typescript, install the following packages:

npm install --save-dev typescript @typescript-eslint/parser @typescript-eslint/eslint-plugin

Usage

Then add the extends to your .eslintrc.js:

module.exports = {
  extends: "@gorrion",
  rules: {
    // your overrides
  },
};