app
- makefile.js
- test.js
- test
- app.js
- app1
-- app1.jsconsole.time("Makefile run");
nodeCli.exec("eslint", "./");
console.timeEnd("Makefile run");Makefile run: 958msMakefile run: 830msMakefile run: 989msMakefile run: 882msMakefile run: 1173msMakefile run: 1128ms- If we only require the
config-initializermodule only when someone has theinitflag on then we save70ms. So basically from the above times just subtract70ms.- The reason is
inquirermodule load time is high
- The reason is
- This can be achieved with minimum changes.
- Changes link: eslint/eslint#3931