2.1.5 • Published 6 years ago

eslint-config-dqnt v2.1.5

Weekly downloads
-
License
ISC
Repository
-
Last release
6 years ago

eslint-config-dqnt

Eslint config based on create-react-app with some tweaks and included prettier.

Installation

yarn add eslint prettier eslint-config-dqnt --dev

or

npm install eslint prettier eslint-config-dqnt --save-dev

Usage

Create a file named .eslintrc with following contents in the root folder of your project:

{
  "extends": "dqnt"
}

Create a file named .prettierrc with prettier settings best fit your preferences:

{
  "printWidth": 80,
  "singleQuote": true,
  "trailingComma": "es5"
}