You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/tasks/eslint.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,8 @@ grumphp:
34
34
- /^resources\/js\/(.*)/
35
35
config: .eslintrc.json
36
36
ignore_path: .eslintignore
37
+
cache: ~
38
+
cache_location: ~
37
39
debug: false
38
40
format: ~
39
41
max_warnings: ~
@@ -79,6 +81,18 @@ The path to your eslint's configuration file. Not necessary if using a standard
79
81
80
82
The path to your eslint's ignore file ([eslint.org](https://eslint.org/docs/user-guide/configuring/ignoring-code#using-an-alternate-file)). Not necessary if using standard .eslintignore name.
81
83
84
+
**cache**
85
+
86
+
*Default: null*
87
+
88
+
Store the results of processed files so that eslint only operates on the changed ones. By default, the cache is stored in `./.eslintcache ` in `process.cwd()`. ([eslint.org](https://eslint.org/docs/latest/use/command-line-interface#caching)).
89
+
90
+
**cache_location**
91
+
92
+
*Default: null*
93
+
94
+
Path to a file or directory for the cache location. ([eslint.org](https://eslint.org/docs/latest/use/command-line-interface#--cache-location)).
0 commit comments