Created
March 22, 2017 12:36
-
-
Save olegpolyakov/ecb6dd5fd5ea820c96c4d7e45cec3c36 to your computer and use it in GitHub Desktop.
ES List configuration
This file contains 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
{ | |
"env": { | |
"es6": true, | |
"node": true | |
}, | |
"extends": "eslint:recommended", | |
"parserOptions": { | |
"ecmaVersion": 2017 | |
}, | |
"rules": { | |
"indent": ["error", 4, { "SwitchCase": 1 }], | |
"linebreak-style": ["error", "windows"], | |
"quotes": ["error", "single"], | |
"semi": ["error", "always"] | |
}, | |
"ignore": [ | |
"node_modules" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment