2020-03-07 11:45:40 +08:00
|
|
|
/**
|
|
|
|
* @fileoverview Default CLIEngineOptions.
|
|
|
|
* @author Ian VanSchooten
|
|
|
|
*/
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
configFile: null,
|
|
|
|
baseConfig: false,
|
|
|
|
rulePaths: [],
|
|
|
|
useEslintrc: true,
|
|
|
|
envs: [],
|
|
|
|
globals: [],
|
2020-05-15 05:33:08 +08:00
|
|
|
extensions: null,
|
2020-03-07 11:45:40 +08:00
|
|
|
ignore: true,
|
2020-03-31 20:40:00 +08:00
|
|
|
ignorePath: void 0,
|
2020-03-07 11:45:40 +08:00
|
|
|
cache: false,
|
|
|
|
|
|
|
|
/*
|
|
|
|
* in order to honor the cacheFile option if specified
|
|
|
|
* this option should not have a default value otherwise
|
|
|
|
* it will always be used
|
|
|
|
*/
|
|
|
|
cacheLocation: "",
|
|
|
|
cacheFile: ".eslintcache",
|
|
|
|
fix: false,
|
|
|
|
allowInlineConfig: true,
|
2020-03-31 20:40:00 +08:00
|
|
|
reportUnusedDisableDirectives: void 0,
|
2020-03-07 11:45:40 +08:00
|
|
|
globInputPaths: true
|
|
|
|
};
|