UNPKG

566 BJavaScriptView Raw
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: [".js"],
16 ignore: true,
17 ignorePath: null,
18 cache: false,
19
20 // in order to honor the cacheFile option if specified
21 // this option should not have a default value otherwise
22 // it will always be used
23 cacheLocation: "",
24 cacheFile: ".eslintcache",
25 fix: false,
26 allowInlineConfig: true
27};