Skip to content

Instantly share code, notes, and snippets.

@starfeeling
Created February 23, 2018 01:47
Show Gist options
  • Save starfeeling/7affbe8c3066a97d2e25554abb09804b to your computer and use it in GitHub Desktop.
Save starfeeling/7affbe8c3066a97d2e25554abb09804b to your computer and use it in GitHub Desktop.
eslint config
{
"parser": "babel-eslint",
"env": {
"es6": true,
"node": true
},
"extends": "airbnb-base",
"rules": {
"indent": [
"error",
"tab"
],
"semi": [
2,
"never"
],
"arrow-body-style": [
"error",
"always"
],
"comma-dangle": [
"error",
"never"
],
"no-console": 1,
"no-tabs": 0,
"object-curly-newline": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment