Created
November 22, 2017 01:58
-
-
Save patrickleet/052610cc90e58942a10175d3af324e7a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"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