Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default-cli-options.js 649B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * @fileoverview Default CLIEngineOptions.
  3. * @author Ian VanSchooten
  4. */
  5. "use strict";
  6. module.exports = {
  7. configFile: null,
  8. baseConfig: false,
  9. rulePaths: [],
  10. useEslintrc: true,
  11. envs: [],
  12. globals: [],
  13. extensions: [".js"],
  14. ignore: true,
  15. ignorePath: null,
  16. cache: false,
  17. /*
  18. * in order to honor the cacheFile option if specified
  19. * this option should not have a default value otherwise
  20. * it will always be used
  21. */
  22. cacheLocation: "",
  23. cacheFile: ".eslintcache",
  24. fix: false,
  25. allowInlineConfig: true,
  26. reportUnusedDisableDirectives: false,
  27. globInputPaths: true
  28. };