0.15.1 • Published 6 years ago

eslint-config-easy v0.15.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

airbnb + babel + promise + import + react + html

eslint-config-easy is based on eslint-config-airbnb as airbnb is the most popular one.

But airbnb is too strict on some syntax rules(like consistent-return, global-require etc), make it hard to migrate my old projects.

I didn't change much more about the style rules(most about spaces), since using Visual Studio Code can auto-fix the spaces on save. I prefer you try it other than Sublime Text.

Features

  • Based on eslint-config-airbnb that supports es6/es7+, react, import and jsx-a11y
  • Use babel-eslint to support class properties, decorators, types.
  • Use eslint-plugin-promise to enforce best practices for promise
  • Use eslint-plugin-html to support .html/.vue. If you want auto-fix in VSCode for .vue, please see below

Install

Should only used with npm@>=3

npm i eslint-config-easy -D or yarn add eslint-config-easy -D

Usage

In your project root dir, create a file .eslintrc with content:

{
  "extends": "easy"
}

You can add NODE_ENV=production for production lint(like NODE_ENV=production eslint src), which will enforce no-alert, no-console, no-debugger.

Lint .vue files

Since eslint will only lint .js files default, you need add --ext .js,.html,.vue option for .vue files.

If you want auto-fix .vue files in VSCode with its eslint plugin, you should add the user/workspace settings below in VSCode:

  // Enable/disable JavaScript validation.
  "javascript.validate.enable": false,
  // Turns auto fix on save on or off.
  "eslint.autoFixOnSave": true,
  // An array of language ids which should be validated by ESLint
  "eslint.validate": [
    "javascript",
    "javascriptreact",
    { 
      "language": "html", "autoFix": true
    },
    { 
      "language": "vue", "autoFix": true
    }
  ],

Tools for dev

  • npm run diff-airbnb: to see the whole config of easy and airbnb, and their differences(result in diff-results dir in current project)
  • npm run diff-custom -- "the .eslintrc file full path": to see the differences between the specified config and easy

License

Licensed under MIT

Copyright (c) 2017 Tian Jian

0.15.1

6 years ago

0.15.0

6 years ago

0.14.2

6 years ago

0.14.0

7 years ago

0.13.0

7 years ago

0.12.0

7 years ago

0.11.0

7 years ago

0.10.0

7 years ago

0.9.0

7 years ago

0.8.0

7 years ago

0.7.2

7 years ago

0.7.1

7 years ago

0.7.0

7 years ago

0.6.6

7 years ago

0.6.5

7 years ago

0.6.4

7 years ago

0.6.1

7 years ago

0.6.0

7 years ago

0.5.2

8 years ago

0.5.1

8 years ago

0.5.0

8 years ago

0.4.0

8 years ago

0.3.2

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.2.3

8 years ago

0.2.2

8 years ago

0.2.1

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago