After installing eslint, it is possible to run npx eslint --init which will prompt for the generation of an .eslintrc. I wonder if this can be used during the yeoman generator.
Rather than having the npx eslint --init command included withing the yeoman generator, it should be sufficient to just have it run as a post-install command in the generated package.json.
After installing eslint, it is possible to run
npx eslint --init
which will prompt for the generation of an .eslintrc. I wonder if this can be used during the yeoman generator.