addded central eslint-config

This commit is contained in:
Sebastian Sdorra
2019-10-08 09:29:11 +02:00
parent 0da8ac2fab
commit f218e8b64c
12 changed files with 575 additions and 47 deletions

View File

@@ -0,0 +1,15 @@
'use strict';
module.exports = {
"extends": [
"react-app",
"plugin:flowtype/recommended"
],
"rules": {
"semi": ["error", "always"],
"quotes": ["error", "double"],
"jsx-a11y/href-no-hash": [0],
"flowtype/no-types-missing-file-annotation": 2,
"no-console": "error"
}
};