main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
680 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * @fileoverview Default CLIEngineOptions.
|
---|
3 | * @author Ian VanSchooten
|
---|
4 | */
|
---|
5 |
|
---|
6 | "use strict";
|
---|
7 |
|
---|
8 | module.exports = {
|
---|
9 | configFile: null,
|
---|
10 | baseConfig: false,
|
---|
11 | rulePaths: [],
|
---|
12 | useEslintrc: true,
|
---|
13 | envs: [],
|
---|
14 | globals: [],
|
---|
15 | extensions: null,
|
---|
16 | ignore: true,
|
---|
17 | ignorePath: void 0,
|
---|
18 | cache: false,
|
---|
19 |
|
---|
20 | /*
|
---|
21 | * in order to honor the cacheFile option if specified
|
---|
22 | * this option should not have a default value otherwise
|
---|
23 | * it will always be used
|
---|
24 | */
|
---|
25 | cacheLocation: "",
|
---|
26 | cacheFile: ".eslintcache",
|
---|
27 | cacheStrategy: "metadata",
|
---|
28 | fix: false,
|
---|
29 | allowInlineConfig: true,
|
---|
30 | reportUnusedDisableDirectives: void 0,
|
---|
31 | globInputPaths: true
|
---|
32 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.