Skip to content

Instantly share code, notes, and snippets.

@anthonybrown
Created May 24, 2018 16:24
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 anthonybrown/dfdf85a298a4cd5759f60e488cac7312 to your computer and use it in GitHub Desktop.
Save anthonybrown/dfdf85a298a4cd5759f60e488cac7312 to your computer and use it in GitHub Desktop.
a good default eslintrc file for react / node/ express apps
{
"extends": "airbnb",
"plugins": ["jest"],
"env": {
"jest/globals": true
},
"rules": {
"no-unused-vars": ["error", {"argsIgnorePattern": "next"}],
"no-multi-spaces": 0
}
}
@anthonybrown
Copy link
Author

I like lining up my = signs or other characters to make my code more readable.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment