1.0.4 • Published 10 months ago

eslint-config-bever v1.0.4

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

eslint-config-bever

Usage

Install required npm packages

npm i -D eslint eslint-plugin-import eslint-config-bever

add an .eslintrc.json file to the root of the project with below content

{
  "root": true,
  "env": {
    "browser": true,
    "node": true,
    "es6": true
  },
  "parserOptions": {
    "ecmaVersion": "latest"
  },
  "extends": ["bever"]
}