Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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 680B

1234567891011121314151617181920212223242526272829303132
  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: null,
  14. ignore: true,
  15. ignorePath: void 0,
  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. cacheStrategy: "metadata",
  25. fix: false,
  26. allowInlineConfig: true,
  27. reportUnusedDisableDirectives: void 0,
  28. globInputPaths: true
  29. };