Skip to content

Instantly share code, notes, and snippets.

@jerrylau91
Last active July 21, 2016 01:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jerrylau91/3310bbe6ab667e26bcce8ecb379206ab to your computer and use it in GitHub Desktop.
Save jerrylau91/3310bbe6ab667e26bcce8ecb379206ab to your computer and use it in GitHub Desktop.
Shareable ESLint Configuration
{
"extends": "airbnb-base",
// env settings
"env": {
"browser": true,
"node": true
},
// globals
"globals": {
"global": true,
"huocheAPI": true
},
// plugin
"plugins": [
// e.g. "react" (must run `npm install eslint-plugin-react` first)
],
// rules
"rules": {
"indent": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment