Created
February 19, 2019 06:08
-
-
Save StefanoDeVuono/7c725ff5364d2f99c7712f2ad4b93326 to your computer and use it in GitHub Desktop.
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
{ | |
"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