Skip to content

Instantly share code, notes, and snippets.

@stigok
Forked from i-van/.eslintrc
Last active February 19, 2016 01:20
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 stigok/08818dfddc82cce3d622 to your computer and use it in GitHub Desktop.
Save stigok/08818dfddc82cce3d622 to your computer and use it in GitHub Desktop.
ESLint rules my ego likes
module.exports = {
'rules': {
'indent': [
2,
2
],
'quotes': [
2,
'single'
],
'linebreak-style': [
2,
'unix'
],
'semi': [
2,
'always'
]
},
'env': {
'es6': true,
'node': true,
'browser': true
},
'extends': 'eslint:recommended'
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment