Node modules

This commit is contained in:
fkereki
2018-04-05 15:24:54 -03:00
parent d86802252a
commit 405fa03d1d
5 changed files with 50 additions and 23 deletions
+7 -23
View File
@@ -15,10 +15,7 @@
"author": "Federico Kereki",
"license": "ISC",
"babel": {
"presets": [
"env",
"flow"
]
"presets": ["env", "flow"]
},
"eslintConfig": {
"parserOptions": {
@@ -31,34 +28,21 @@
"node": true,
"es6": true
},
"extends": [
"eslint:recommended",
"plugin:flowtype/recommended"
],
"plugins": [
"babel",
"flowtype"
],
"extends": ["eslint:recommended", "plugin:flowtype/recommended"],
"plugins": ["babel", "flowtype"],
"rules": {
"no-console": "off",
"no-var": "error",
"prefer-const": "error"
}
},
"eslintIgnore": ["**/out/*.js"],
"flow-coverage-report": {
"concurrentFiles": 1,
"excludeGlob": [
"node_modules/**"
],
"includeGlob": [
"src/**/*.js"
],
"excludeGlob": ["node_modules/**"],
"includeGlob": ["src/**/*.js"],
"threshold": 90,
"type": [
"text",
"html",
"json"
]
"type": ["text", "html", "json"]
},
"prettier": {
"tabWidth": 4,