1.3.4 • Published 3 years ago

@coreyleelarson/eslint-config-default v1.3.4

Weekly downloads
1
License
MIT
Repository
-
Last release
3 years ago

eslint-config-default

I created this package for easy reuse in all of my personal projects with all of my sensible defaults.

Install

Install this package and all its peerDependencies with the following command:

npx install-peerdeps --dev @coreyleelarson/eslint-config-default

Configure

Eslint

Create a .eslintrc.json file:

{
  "extends": "@coreyleelarson/default"
}

Prettier

Create a .prettierrc.json file with desired prettier settings:

{
  "singleQuote": true,
  "trailingComma": "all"
}