mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
const config = require('../.eslintrc');
|
|
|
|
module.exports = {
|
|
...config,
|
|
rules: {
|
|
...config.rules,
|
|
'import/no-extraneous-dependencies': 0,
|
|
'react/no-danger': 0,
|
|
'no-param-reassign': 0,
|
|
},
|
|
};
|