1.0.0 • Published 3 years ago

@aldertv/eslint-config v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

A common eslint config with no hassle

The default config @paperfeed (located in index.js) is finetuned for a Typescript React project and adds a lot of fixable rules. Sorting is automatic and beautiful.

Recommended usage:

In the project you want to use it in run npm i -D @rushstack/eslint-patch

and edit your eslint config to contain the following:

// .eslintrc.js:
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
  extends: ['@paperfeed'],
}

Highly recommend using an IDE that allows you to run prettier and eslint on save.