Skip to content

Instantly share code, notes, and snippets.

@patrickleet
Created November 22, 2017 01:58
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patrickleet/052610cc90e58942a10175d3af324e7a to your computer and use it in GitHub Desktop.
Save patrickleet/052610cc90e58942a10175d3af324e7a to your computer and use it in GitHub Desktop.
{
"env": {
"node": true,
"es6": true
},
"extends": "standard",
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"plugins": [],
"globals": {
"gql": true,
"ga": true,
"describe": true,
"it": true,
"test": true,
"expect": true,
"jest": true,
"beforeEach": true,
"afterEach": true,
"jasmine": true,
"beforeAll": true,
"afterAll": true
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"space-before-function-paren": 0
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment