Skip to content

Instantly share code, notes, and snippets.

@cetrix13
Created January 30, 2019 07:59
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 cetrix13/53f595678057c3f3ae2b85c027356fe0 to your computer and use it in GitHub Desktop.
Save cetrix13/53f595678057c3f3ae2b85c027356fe0 to your computer and use it in GitHub Desktop.
Default configuration of eslint
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2016
},
"rules": {
"indent": [
"warn",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"warn",
"single"
],
"semi": [
"error",
"always"
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment