Skip to content

Instantly share code, notes, and snippets.

@asci
Created January 22, 2017 19:29
Show Gist options
  • Save asci/dc5dfe08233b94b4b57a89d566c1233a to your computer and use it in GitHub Desktop.
Save asci/dc5dfe08233b94b4b57a89d566c1233a to your computer and use it in GitHub Desktop.
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment