Last active
February 16, 2017 20:56
-
-
Save nmerouze/42a8d2000c390548b491 to your computer and use it in GitHub Desktop.
.eslintrc
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
{ | |
"parser": "babel-eslint", | |
/*"plugins": ["react"],*/ | |
"ecmaFeatures": { | |
/*"jsx": true,*/ | |
"modules": true | |
}, | |
"env": { | |
"browser": true, | |
"node": true, | |
"es6": true | |
}, | |
"rules": { | |
"strict": 0, | |
"no-underscore-dangle": 0, | |
"quotes": [ | |
2, | |
"single" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment