Running `npm run lint` after scaffolding out a new project which has ESLint and Cypress via `npm init vue@latest` returns the following error: ```sh-session ➜ cypress-config-lint-test npm run lint > cypress-config-lint-test@0.0.0 lint > eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore /home/james/Development/cypress-config-lint-test/cypress.config.js 1:26 error 'require' is not defined no-undef 3:1 error 'module' is not defined no-undef ✖ 2 problems (2 errors, 0 warnings) ``` This can be fixed by adding `/* eslint-env node */` to the top of the `cypress.config.js` file. P.S. Thanks for the awesome open source software and all the work you put into it! :smiley: