Skip to content

Instantly share code, notes, and snippets.

@velopert
Created December 7, 2016 14:11
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 velopert/6ab9af22317c2648eb177f8fa937faac to your computer and use it in GitHub Desktop.
Save velopert/6ab9af22317c2648eb177f8fa937faac to your computer and use it in GitHub Desktop.
ESLint configuration
module.exports = {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"windows"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
],
"no-console": 0
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment