Files
create-react-app/.eslintrc.js
Keyan Zhang b1ce4598ec Dogfood our eslint config (#68)
* dogfood eslint config

* moved linting to e2e
2016-07-22 03:30:43 +01:00

8 lines
188 B
JavaScript

const clientESLintConfig = require('./config/eslint');
module.exports = Object.assign({}, clientESLintConfig, {
env: Object.assign({}, clientESLintConfig.env, {
node: true
})
});