Skip to content

Instantly share code, notes, and snippets.

@MPTG94
Last active December 8, 2017 08:28
Show Gist options
  • Select an option

  • Save MPTG94/4ab343e59d168e64c3f980077ec43598 to your computer and use it in GitHub Desktop.

Select an option

Save MPTG94/4ab343e59d168e64c3f980077ec43598 to your computer and use it in GitHub Desktop.
Basic ESLint Configuration
{
"extends": "prettier",
"env": {
"browser": true,
"node": true
},
"plugins": ["prettier", "react"],
"rules": {
"prettier/prettier": "error",
"new-cap": 1,
"linebreak-style": 0,
"no-unused-vars": 0,
"no-negated-condition": 1
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 6,
"sourceType": "module"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment