Files
SCM-Manager/scm-ui/eslint-config/index.js

14 lines
290 B
JavaScript
Raw Normal View History

2019-10-08 09:29:11 +02:00
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"
}
};