2.1.0 • Published 2 months ago

@egor.xyz/eslint-config v2.1.0

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

eslint-config

Introduction

This is my ESLint configuration. It contains all of our lintint rules, and helps us keep our codebases aligned and in-sync with the highest standards.

Install the package

npm i @egor.xyz/eslint-config

Usage

Option 1

Add to package.json in the root of your project:

{
...
"eslintConfig": {
  "extends": [
    ...,
    "@egor.xyz"
  ]
},
...
}

Option 2

Add .eslintrc.js to the root of your project:

module.exports = {
  extends: '@egor.xyz'
};