Skip to content

Instantly share code, notes, and snippets.

@StefanoDeVuono
Created February 19, 2019 06:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save StefanoDeVuono/7c725ff5364d2f99c7712f2ad4b93326 to your computer and use it in GitHub Desktop.
Save StefanoDeVuono/7c725ff5364d2f99c7712f2ad4b93326 to your computer and use it in GitHub Desktop.
{
"eslintConfig": {
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"extends": [
"standard",
"plugin:react/recommended"
],
"rules": {
"one-var": [
"error",
{
"separateRequires": true
}
],
"no-unused-vars": [
"error",
{
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": false,
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment