summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/conf/default-cli-options.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/node_modules/eslint/conf/default-cli-options.js')
-rw-r--r--tools/node_modules/eslint/conf/default-cli-options.js30
1 files changed, 30 insertions, 0 deletions
diff --git a/tools/node_modules/eslint/conf/default-cli-options.js b/tools/node_modules/eslint/conf/default-cli-options.js
new file mode 100644
index 0000000000..7d46d46c52
--- /dev/null
+++ b/tools/node_modules/eslint/conf/default-cli-options.js
@@ -0,0 +1,30 @@
+/**
+ * @fileoverview Default CLIEngineOptions.
+ * @author Ian VanSchooten
+ */
+
+"use strict";
+
+module.exports = {
+ configFile: null,
+ baseConfig: false,
+ rulePaths: [],
+ useEslintrc: true,
+ envs: [],
+ globals: [],
+ extensions: [".js"],
+ ignore: true,
+ ignorePath: null,
+ 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,
+ reportUnusedDisableDirectives: false
+};