trex-hooks
Version:
Common hooks used for antd 4.0
14 lines (12 loc) • 354 B
JavaScript
const fabric = require('@umijs/fabric');
module.exports = {
...fabric.eslint,
// extends: [...fabric.eslint.extends],
rules: {
...fabric.eslint.rules,
'import/no-named-as-default': 0,
'react/self-closing-comp': 1,
'react-hooks/rules-of-hooks': "error",
'react-hooks/exhaustive-deps': "warn",
}
};