mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-25 21:55:42 +08:00
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
const clientESLintConfig = require('./config/eslint');
|
|
|
|
module.exports = Object.assign({}, clientESLintConfig, {
|
|
env: Object.assign({}, clientESLintConfig.env, {
|
|
node: true
|
|
})
|
|
});
|