Files
med-notes/.pnpm-store/v10/files/22/34c94fe4c464b9e361560120db9dafff0bfef2f627743fcac2c0234c9740bfb83a5036943a2c8ad70d8f7d5b61f41477bb9565f8c02cb17c88e0586a8136b0
2025-05-09 05:30:08 +02:00

33 lines
615 B
Plaintext

/**
* @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,
};