|
2 | 2 |
|
3 | 3 | ## How does treefmt function?
|
4 | 4 |
|
5 |
| -`Treefmt` traverses all your project's folders, maps files to specific code formatters, and formats the code |
| 5 | +`Treefmt` traverses all your project's folders, maps files to specific code formatters, and formats the code |
6 | 6 | accordingly. Other tools also traverse the filesystem, but not necessarily starting from the root of the project.
|
7 | 7 |
|
8 |
| -Contrary to other formatters, `treefmt` doesn't preview the changes before writing them to a file. If you want to view |
9 |
| -the changes, you can always check the diff in your version control (we assume that your project is checked into a |
10 |
| -version control system). |
| 8 | +Contrary to other formatters, `treefmt` doesn't preview the changes before writing them to a file. If you want to view |
| 9 | +the changes, you can always check the diff in your version control (we assume that your project is checked into a |
| 10 | +version control system). |
11 | 11 |
|
12 |
| -You can also rely on version control if errors were introduced into your code as a result of disruptions in the |
| 12 | +You can also rely on version control if errors were introduced into your code as a result of disruptions in the |
13 | 13 | formatter's work.
|
14 | 14 |
|
15 | 15 | ## How is the cache organized?
|
16 | 16 |
|
17 |
| -At the moment, the cache is a [BoltDB] database file in which file paths are mapped to `mtimes`. |
| 17 | +At the moment, the cache is a [BoltDB] database file in which file paths are mapped to `mtimes`. |
18 | 18 |
|
19 | 19 | The file is located in:
|
20 | 20 |
|
21 | 21 | ```
|
22 | 22 | ~/.cache/treefmt/eval-cache/<hash-of-the-treefmt.toml-path>.db
|
23 | 23 | ```
|
24 | 24 |
|
25 |
| -At the end of each run, the database is updated with the last formatting time entries. In this way, we can |
| 25 | +At the end of each run, the database is updated with the last formatting time entries. In this way, we can |
26 | 26 | compare the last change time of the file to the last formatting time, and figure out which files need re-formatting.
|
27 | 27 |
|
28 |
| -[BoltDB]: https://github.com/etcd-io/bbolt |
| 28 | +[BoltDB]: https://github.com/etcd-io/bbolt |
0 commit comments