Skip to content

Instantly share code, notes, and snippets.

@mateuszwrobel
Created October 25, 2017 09:40
Show Gist options
  • Save mateuszwrobel/2082c292eec024c16e52e205dab2559f to your computer and use it in GitHub Desktop.
Save mateuszwrobel/2082c292eec024c16e52e205dab2559f to your computer and use it in GitHub Desktop.
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"no-var": [0],
"comma-dangle": [1, "always-multiline"],
"no-console": [0],
"indent": [1, "tab", {
"SwitchCase": 1
}],
"quotes": [1, "single"],
"linebreak-style": [1, "unix"],
"semi": [1, "always"],
"no-undef": [0],
"brace-style": [2],
"no-unused-vars": [0],
"no-fallthrough": [0],
"eol-last": 2,
"no-trailing-spaces": 2,
"no-multiple-empty-lines": [2, {
"max": 2,
"maxEOF": 1
}]
},
"ecmaFeatures": {
"arrowFunctions": true,
"blockBindings": true,
"jsx": true
},
"env": {
"browser": true,
"es6": true
},
"globals": {
"require": true,
"module": true
},
"extends": "eslint:recommended"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment