Urara-Blog/node_modules/.pnpm-store/v3/files/4c/a6274f3c8383f6616e1a66e285421e97a8daed921e752055dfc540976ff787c3141e0890e550484a4a9e8bc7decaed11b81f0aacd2bff6cddd9120e2ecc83e
2022-08-14 01:14:53 +08:00

32 lines
680 B
Text

/**
* @fileoverview Default CLIEngineOptions.
* @author Ian VanSchooten
*/
"use strict";
module.exports = {
configFile: null,
baseConfig: false,
rulePaths: [],
useEslintrc: true,
envs: [],
globals: [],
extensions: null,
ignore: true,
ignorePath: void 0,
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",
cacheStrategy: "metadata",
fix: false,
allowInlineConfig: true,
reportUnusedDisableDirectives: void 0,
globInputPaths: true
};