Skip to content

Instantly share code, notes, and snippets.

@dougajmcdonald
Created October 24, 2018 12:12
Show Gist options
  • Save dougajmcdonald/32e198b4db2e4dbaf244b83811b7104f to your computer and use it in GitHub Desktop.
Save dougajmcdonald/32e198b4db2e4dbaf244b83811b7104f to your computer and use it in GitHub Desktop.
VS Code EsLint config
{
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": ["plugin:react/recommended"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"plugins": ["react"],
"rules": {
"indent": ["error", 2],
"linebreak-style": ["error", "windows"],
"quotes": ["error", "single"],
"semi": ["error", "never"]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment