Skip to content

Instantly share code, notes, and snippets.

@jeremychone
Created August 10, 2016 03:23
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 jeremychone/22d1acf0e76f62c8fa5b411ad60098f5 to your computer and use it in GitHub Desktop.
Save jeremychone/22d1acf0e76f62c8fa5b411ad60098f5 to your computer and use it in GitHub Desktop.
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"plugins": ["react"],
"extends": ["eslint:recommended","plugin:react/recommended"],
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"indent": [
2,
"tab"
],
"linebreak-style": [
2,
"unix"
],
"quotes": [
0,
"double"
],
"semi": [
2,
"always"
],
"no-undef": [
0],
"no-console": [
0],
"no-unused-vars": [
1,{"vars":"local","args": "none"}]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment