.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / eslint / conf / default-cli-options.js
1 /**
2  * @fileoverview Default CLIEngineOptions.
3  * @author Ian VanSchooten
4  */
5
6 "use strict";
7
8 module.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     cacheStrategy: "metadata",
28     fix: false,
29     allowInlineConfig: true,
30     reportUnusedDisableDirectives: void 0,
31     globInputPaths: true
32 };