Skip to content

Commit 9c13b18

Browse files
committed
docs: add 2.0.5 docs
Signed-off-by: Brian McGee <[email protected]>
1 parent 12db876 commit 9c13b18

File tree

10 files changed

+665
-1
lines changed

10 files changed

+665
-1
lines changed

docs/.vitepress/config.mts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const sidebar = {
2020
}
2121

2222
// static version list, KISS
23-
const versions = ["v2.0.1", "v2.0.2", "v2.0.3", "v2.0.4"]
23+
const versions = ["v2.0.1", "v2.0.2", "v2.0.3", "v2.0.4", "v2.0.5"]
2424

2525
versions.forEach(version => {
2626
sidebar[`/${version}/`] = sidebar["/"].map(({ text, link }) => ({ text, link: `/${version}${link}`}))

docs/versions/v2.0.5/about.md

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# About the project
2+
3+
`treefmt` is a formatting tool that saves you time: it provides developers with a universal way to trigger all
4+
formatters needed for the project in one place.
5+
6+
## Background
7+
8+
Typically, each project has its own code standards enforced by the project's owner. Any code contributions must match
9+
that given standard, i.e. be formatted in a specific manner.
10+
11+
At first glance, the task of code formatting may seem trivial: the formatter can be automatically triggered when you
12+
save a file in your IDE. Indeed, formatting doesn't take much effort if you're working on a single project long term:
13+
setting up the formatters in your IDE won't take much of your time, and then you're ready to go.
14+
15+
Contrary to that, if you're working on multiple projects at the same time, you may have to update your formatter
16+
configs in the IDE each time you switch between the projects. This is because formatter settings aren't
17+
project-specific --- they are set up globally for all projects.
18+
19+
Alternatively, you can trigger formatters manually, one-by-one or in a script. Actually, for bigger projects, it's
20+
common to have a script that runs over your project's directories and calls formatters consequently. But it takes time
21+
to iterate through all the files.
22+
23+
All the solutions take up a significant amount of time which a developer could spend doing the actual work. They also
24+
require you to remember which formatters and options are used by each project you are working on.
25+
26+
`treefmt` solves these issues.
27+
28+
## Why treefmt?
29+
30+
`treefmt`'s configuration is project-specific, so you don't need to re-configure formatters each time you switch
31+
between projects, like you have to when working with formatters in the IDE.
32+
33+
Contrary to calling formatters from the command line, there's no need to remember all the specific formatters required
34+
for each project. Once you set up the config, you can run the tool in any of your project's folders without any
35+
additional flags or options.
36+
37+
Typically, formatters have different ways to say there was a specific error. With `treefmt`, you get a standardized
38+
output which is easier to understand than the variegated outputs of different formatters, so it takes less time to
39+
grasp what's wrong.
40+
41+
In addition, `treefmt` works faster than the custom script solution because the changed files are cached and the
42+
formatters run only against them. Moreover, formatters are run in parallel, which makes the tool even faster.
43+
44+
The difference may not be significant for smaller projects, but it gets quite visible as the project grows. For
45+
instance, take the caching optimization.
46+
47+
It takes about 23 seconds to traverse a project of 40,559 files and no changes without caching:
48+
49+
```console
50+
traversed 41273 files
51+
emitted 41273 files for processing
52+
formatted 34111 files (14338 changed) in 23.679s
53+
```
54+
55+
...while it takes **239 milliseconds** to traverse the same project with caching:
56+
57+
```console
58+
traversed 41273 files
59+
emitted 0 files for processing
60+
formatted 0 files (0 changed) in 239ms
61+
```
62+
63+
The tool can be invoked manually or integrated into your CI. There's currently no integration with IDEs, but the feature is coming soon.
64+
65+
## What we still need help with
66+
67+
- **IDE integration:** Most of developers are used to formatting a file upon save in the IDE. So far, you can't use `treefmt` for this purpose, but we're working on it 😀
68+
- **Pre-commit hook:** It's good to have your code checked for adherence to the project's standards before commit. `treefmt` pre-commit hook won't let you commit if you have formatting issues.
69+
70+
As a next step, learn how to [install] and [run] `treefmt`.
71+
72+
[install]: install.md
73+
[run]: usage.md

docs/versions/v2.0.5/configure.md

+89
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
---
2+
outline: deep
3+
---
4+
5+
# Configure Treefmt
6+
7+
The `treefmt.toml` configuration file consists of a mixture of global options and formatter sections:
8+
9+
```toml
10+
[global]
11+
excludes = ["*.md", "*.dat"]
12+
13+
[formatter.elm]
14+
command = "elm-format"
15+
options = ["--yes"]
16+
includes = ["*.elm"]
17+
18+
[formatter.go]
19+
command = "gofmt"
20+
options = ["-w"]
21+
includes = ["*.go"]
22+
23+
[formatter.python]
24+
command = "black"
25+
includes = ["*.py"]
26+
27+
# use the priority field to control the order of execution
28+
29+
# run shellcheck first
30+
[formatter.shellcheck]
31+
command = "shellcheck"
32+
includes = ["*.sh"]
33+
priority = 0 # default is 0, but we set it here for clarity
34+
35+
# shfmt second
36+
[formatter.shfmt]
37+
command = "shfmt"
38+
options = ["-s", "-w"]
39+
includes = ["*.sh"]
40+
priority = 1
41+
```
42+
43+
## Global Options
44+
45+
- `excludes` - an optional list of [glob patterns](#glob-patterns-format) used to exclude certain files from all formatters.
46+
47+
## Formatter Options
48+
49+
- `command` - the command to invoke when applying the formatter.
50+
- `options` - an optional list of args to be passed to `command`.
51+
- `includes` - a list of [glob patterns](#glob-patterns-format) used to determine whether the formatter should be applied against a given path.
52+
- `excludes` - an optional list of [glob patterns](#glob-patterns-format) used to exclude certain files from this formatter.
53+
- `priority` - influences the order of execution. Greater precedence is given to lower numbers, with the default being `0`.
54+
55+
## Same file, multiple formatters?
56+
57+
For each file, `treefmt` determines a list of formatters based on the configured `includes` / `excludes` rules. This list is
58+
then sorted, first by priority (lower the value, higher the precedence) and secondly by formatter name (lexicographically).
59+
60+
The resultant sequence of formatters is used to create a batch key, and similarly matched files get added to that batch
61+
until it is full, at which point the files are passed to each formatter in turn.
62+
63+
This means that `treefmt` **guarantees only one formatter will be operating on a given file at any point in time**.
64+
Another consequence is that formatting is deterministic for a given file and a given `treefmt` configuration.
65+
66+
By setting the priority fields appropriately, you can control the order in which those formatters are applied for any
67+
files they _both happen to match on_.
68+
69+
## Glob patterns format
70+
71+
This is a variant of the Unix glob pattern. It supports all the usual
72+
selectors such as `*` and `?`.
73+
74+
### Examples
75+
76+
- `*.go` - match all files in the project that end with a ".go" file extension.
77+
- `vendor/*` - match all files under the vendor folder, recursively.
78+
79+
## Supported Formatters
80+
81+
Any formatter that follows the [spec] is supported out of the box.
82+
83+
Already 60+ formatters are supported.
84+
85+
To find examples, take a look at <https://github.com/numtide/treefmt-nix/tree/main/examples>.
86+
87+
If you are a Nix user, you might also like <https://github.com/numtide/treefmt-nix>, which uses Nix to pull in the right formatter package and seamlessly integrates both together.
88+
89+
[spec]: formatter-spec.md

docs/versions/v2.0.5/contributing.md

+142
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
---
2+
outline: deep
3+
---
4+
5+
# Contribution guidelines
6+
7+
This file contains instructions that will help you make a contribution.
8+
9+
## Licensing
10+
11+
The `treefmt` binaries and this user guide are licensed under the [MIT license](https://github.com/numtide/treefmt/blob/main/LICENSE).
12+
13+
## Before you contribute
14+
15+
Here you can take a look at the [existing issues](https://github.com/numtide/treefmt/issues). Feel free to contribute, but make sure you have a
16+
[GitHub account](https://github.com/join) first :slightly_smiling_face:.
17+
18+
If you're new to open source, please read GitHub's guide on [How to Contribute to Open Source](https://opensource.guide/how-to-contribute/). It's a quick read,
19+
and it's a great way to introduce yourself to how things work behind the scenes in open-source projects.
20+
21+
Before sending a pull request, make sure that you've read all the guidelines. If you don't understand something, please
22+
[state your question clearly in an issue](https://github.com/numtide/treefmt/issues/new) or ask the community on the [treefmt matrix server](https://matrix.to/#/#treefmt:numtide.com).
23+
24+
## Creating an issue
25+
26+
If you need to create an issue, make sure to clearly describe it, including:
27+
28+
- The steps to reproduce it (if it's a bug)
29+
- The version of `treefmt` used
30+
31+
The cache database is stored in a `.db` file in the `~/.cache/treefmt/eval-cache` directory.
32+
33+
## Making changes
34+
35+
If you want to introduce changes to the project, please follow these steps:
36+
37+
- Fork the repository on GitHub
38+
- Create a branch on your fork. Don't commit directly to main
39+
- Add the necessary tests for your changes
40+
- Run `treefmt` in the source directory before you commit your changes
41+
- Push your changes to the branch in your repository fork
42+
- Submit a pull request to the original repository
43+
44+
Make sure you based your commits on logical and atomic units!
45+
46+
## Examples of git history
47+
48+
<details>
49+
50+
<summary>Git history that we want to have</summary>
51+
52+
```
53+
54+
* e3ed88b (HEAD -> contribution-guide, upstream/main, origin/main, origin/HEAD, main) Merge pull request #470 from zimbatm/fix_lru_cache
55+
56+
|\
57+
58+
| * 1ab7d9f Use rayon for multithreading command
59+
60+
|/
61+
62+
* e9c5bb4 Merge pull request #468 from zimbatm/multithread
63+
64+
|\
65+
66+
| * de2d6cf Add lint property for Formatter struct
67+
68+
| * cd2ed17 Fix impl on Formatter get_command() function
69+
70+
|/
71+
72+
* 028c344 Merge pull request #465 from rayon/0.15.0-release
73+
74+
|\
75+
76+
| * 7b619d6 0.15.0 release
77+
78+
|/
79+
80+
* acdf7df Merge pull request #463 from zimbatm/support-multi-part-namespaces
81+
82+
```
83+
84+
</details>
85+
86+
<details>
87+
88+
<summary>Git history that we are <b>trying</b> to avoid</summary>
89+
90+
```
91+
92+
* 4c8aca8 Merge pull request #120 from zimbatm/add-rayon
93+
94+
|\
95+
96+
| * fc2b449 use rayon for engine now
97+
98+
| * 2304683 add rayon config
99+
100+
| * 5285bd3 bump base image to F30
101+
102+
* | 4d0fbe2 Merge pull request #114 from rizary/create_method_create_release
103+
104+
|\ \
105+
106+
| * | 36a9396 test changed
107+
108+
| * | 22f681d method create release for github created
109+
110+
* | | 2ef4ea1 Merge pull request #119 from rizary/config.rs
111+
112+
|\ \ \
113+
114+
| |/ /
115+
116+
|/| |
117+
118+
| * | 5f1b8f0 unused functions removed
119+
120+
* | | a93c361 Merge pull request #117 from zimbatm/add-getreleases-to-abstract
121+
122+
|\ \ \
123+
124+
| |/ /
125+
126+
|/| |
127+
128+
| * | 0a97236 add get_releses for Cargo
129+
130+
| * | 55e4c57 add get_releases/get_release into engine.rs
131+
132+
|/ /
133+
134+
* | badeddd Merge pull request #101 from zimbatm/extreme-cachin
135+
136+
```
137+
138+
</details>
139+
140+
Additionally, it's always good to work on improving documentation and adding examples.
141+
142+
Thank you for considering contributing to `treefmt`.

docs/versions/v2.0.5/faq.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# FAQ
2+
3+
## How does treefmt function?
4+
5+
`Treefmt` traverses all your project's folders, maps files to specific code formatters, and formats the code
6+
accordingly. Other tools also traverse the filesystem, but not necessarily starting from the root of the project.
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).
11+
12+
You can also rely on version control if errors were introduced into your code as a result of disruptions in the
13+
formatter's work.
14+
15+
## How is the cache organized?
16+
17+
At the moment, the cache is a [BoltDB] database file in which file paths are mapped to `mtimes`.
18+
19+
The file is located in:
20+
21+
```
22+
~/.cache/treefmt/eval-cache/<hash-of-the-treefmt.toml-path>.db
23+
```
24+
25+
At the end of each run, the database is updated with the last formatting time entries. In this way, we can
26+
compare the last change time of the file to the last formatting time, and figure out which files need re-formatting.
27+
28+
[BoltDB]: https://github.com/etcd-io/bbolt

0 commit comments

Comments
 (0)