Setup, react dev tools, logging

This commit is contained in:
Federico Kereki
2018-08-01 23:03:47 -03:00
parent e6b1e331af
commit 84a0b22cd3
37 changed files with 18432 additions and 1 deletions
+25
View File
@@ -0,0 +1,25 @@
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"env": {
"node": true,
"browser": true,
"es6": true,
"jest": true
},
"extends": [
"eslint:recommended",
"plugin:flowtype/recommended",
"plugin:react/recommended"
],
"plugins": ["babel", "flowtype", "react"],
"rules": {
"no-console": "off",
"no-var": "error",
"prefer-const": "error",
"flowtype/no-types-missing-file-annotation": 0
}
}