Files
SCM-Manager/scm-ui/eslint-config/index.js
2019-10-08 09:44:19 +02:00

14 lines
290 B
JavaScript

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"
}
};