mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-05 21:15:43 +01:00
14 lines
290 B
JavaScript
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"
|
||
|
|
}
|
||
|
|
};
|