Skip to content

Instantly share code, notes, and snippets.

@storskegg
Last active August 2, 2017 13:39
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 storskegg/0cda749f8f7adc50161e63948e8397fa to your computer and use it in GitHub Desktop.
Save storskegg/0cda749f8f7adc50161e63948e8397fa to your computer and use it in GitHub Desktop.
Basic .eslintrc
{
"extends": "airbnb",
"env": {
"browser": true,
"jquery": true,
"worker": true
},
"globals": {
"Lemans": true
},
"rules": {
"func-names": ["error", "never"],
"import/extensions": 0,
"import/no-unresolved": 0,
"indent": ["error", 4, {
"SwitchCase": 1
}],
"jsx-a11y/href-no-hash": 0,
"linebreak-style": 0,
"no-plusplus": 0,
"no-underscore-dangle": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment