Skip to content

Instantly share code, notes, and snippets.

@lamogura
Created September 27, 2016 07:35
Show Gist options
  • Select an option

  • Save lamogura/4b1d398fde0487324ff922fdb82e3f08 to your computer and use it in GitHub Desktop.

Select an option

Save lamogura/4b1d398fde0487324ff922fdb82e3f08 to your computer and use it in GitHub Desktop.
eslint for JS project
{
"install-then-remove": "npm i -D eslint eslint-config-standard eslint-plugin-babel eslint-plugin-promise eslint-plugin-standard babel-eslint",
"extends": ["standard"],
"ecmaFeatures": {
"modules": true
},
"env": {
"browser": true,
"es6": true,
"node": true
},
"parser": "babel-eslint",
"rules": {
"quotes": [2, "single"],
"strict": [2, "never"],
"brace-style": ["error", "stroustrup"],
"comma-dangle": ["error", "only-multiline"],
"curly": ["error", "all"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment