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