Skip to content

Instantly share code, notes, and snippets.

@rlemon
Created August 28, 2018 14:31
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 rlemon/ce9cc57d4818a8d3c23be925c8a12eaa to your computer and use it in GitHub Desktop.
Save rlemon/ce9cc57d4818a8d3c23be925c8a12eaa to your computer and use it in GitHub Desktop.
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "airbnb",
"rules": {
"array-bracket-spacing": ["error", "always"],
"arrow-parens": ["error", "as-needed"],
"comma-dangle": 0,
"consistent-return": 0,
"curly": ["error","all"],
"indent": [2, "tab"],
"keyword-spacing": ["error", {
"after": true,
"overrides": {
"if": {
"after": false
},
"for": {
"after": false
},
"while": {
"after": false
}
}
}],
"no-bitwise": 0,
"no-tabs": 0,
"no-console": 0,
"no-restricted-syntax": 0,
"no-param-reassign": ["error", {
"props": false
}],
"no-multiple-empty-lines": ["error", {
"max": 1
}],
"space-in-parens": ["error","always"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment