Fetch CI tooling directly from releases
Also adds a timeout and specific paths to trigger CI
This commit is contained in:
parent
9dfd493bf5
commit
a24a877ad7
5 changed files with 190 additions and 18 deletions
18
docs/development/notes.md
Normal file
18
docs/development/notes.md
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Notes
|
||||
|
||||
## BTreeMap
|
||||
|
||||
Consider replacing HashMap with BTreeMap to stop nodes from shifting position constantly on every page load.
|
||||
|
||||
See also:
|
||||
- <https://doc.rust-lang.org/std/collections/struct.BTreeMap.html#background>
|
||||
- `clippy::iter_over_hash_type`
|
||||
|
||||
|
||||
## Overall guidelines
|
||||
|
||||
- Take refs, return owned
|
||||
- Avoid opacity
|
||||
- Third-party macros
|
||||
- Procedural macro attributes
|
||||
- Returning opaque types, like `impl Trait`
|
||||
Loading…
Add table
Add a link
Reference in a new issue