From 8cabdb9b7233993958f1629e88035c89eebce7bc Mon Sep 17 00:00:00 2001 From: Jeroen Engels Date: Sun, 15 Oct 2023 10:56:51 +0200 Subject: [PATCH] Add missing result-cache folder in tooling-integration document --- documentation/tooling-integration.md | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/tooling-integration.md b/documentation/tooling-integration.md index 5e586d233..9afa5b431 100644 --- a/documentation/tooling-integration.md +++ b/documentation/tooling-integration.md @@ -17,6 +17,7 @@ The CLI creates a bunch of cache inside `elm-stuff/generated-code/jfmengels/elm- - `file-cache/`: Caching of the file's ASTs. - `review-applications/`: Caching of the project's configuration. This is the application we build by compiling the source code in the CLI's `template/` directory. +- `result-cache/`: Caching of the results of each module's analysis for every rule. - `dependencies-cache/`: Caching of the dependencies of the project's configuration computed by `elm-json`. `elm-json` is a bit slow, and doesn't work great offline. This is done so we don't have to compute the dependencies again if the configuration changed but not `review/elm.json`. - `elm-parser/`: Caching of the parser application. This is the application we build by compiling with the user's version of `stil4m/elm-syntax`, and the name of the file reflect the version. This is used to parallelize the parsing of the files, which is kind of slow, at startup.