Created
March 28, 2018 05:20
-
-
Save mudivili/b51e2e3aebdd40ac1a8371f00367070b to your computer and use it in GitHub Desktop.
Eslint Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"env": | |
{ | |
"es6": true, | |
"node": true | |
}, | |
"extends": "eslint:recommended", | |
"rules": | |
{ | |
"indent": [ | |
"error", | |
2 | |
], | |
"linebreak-style": [ | |
"error", | |
"unix" | |
], | |
"quotes": [ | |
"error", | |
"single" | |
], | |
"semi": [ | |
"error", | |
"always" | |
] | |
}, | |
"parserOptions": | |
{ | |
"ecmaVersion": 2017 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment