We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c7d27fb + 56f1ab6 commit c8938bcCopy full SHA for c8938bc
README.md
@@ -12,22 +12,23 @@ Use In Your Project
12
13
Add the plugin to your `rebar.config`:
14
15
- {plugins, [pc]}.
16
- {provider_hooks,
17
- [
18
- {pre,
19
20
- {compile, {pc, compile}},
21
- {clean, {pc, clean}}
22
- ]
23
- }
24
25
- }.
26
-
+```erlang
+{plugins, [pc]}.
+{provider_hooks,
+ [
+ {pre,
+ {compile, {pc, compile}},
+ {clean, {pc, clean}}
+ ]
+ }
+}.
27
+```
28
29
If you want to use tools like clang-tidy, don't forget to enable the compile commands db like this:
30
-```
31
32
{pc_clang_db, true}.
33
```
34
0 commit comments