File tree Expand file tree Collapse file tree 6 files changed +22
-19
lines changed
modeling-cmds-macros-impl/benches Expand file tree Collapse file tree 6 files changed +22
-19
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 98
98
steps :
99
99
- name : Checkout
100
100
uses : actions/checkout@v4
101
- - uses : taiki-e/install-action@just
102
- - name : Install the latest version of uv
103
- uses : astral-sh/setup-uv@v6
104
- - name : Install codespell
105
- run : |
106
- uv venv .venv
107
- echo "VIRTUAL_ENV=.venv" >> $GITHUB_ENV
108
- echo "$PWD/.venv/bin" >> $GITHUB_PATH
109
- uv pip install codespell
110
101
- name : Run codespell
111
- # Edit this file to tweak the typo list and other configuration.
112
- run : just check-typos
102
+
113
103
114
104
cargo-toml-sorted :
115
105
name : Check Cargo.toml is sorted
@@ -121,3 +111,4 @@ jobs:
121
111
run : cargo install cargo-sort
122
112
- name : Run check
123
113
run : cargo sort --workspace --check
114
+
Original file line number Diff line number Diff line change
1
+ [files ]
2
+ extend-exclude = [
3
+ " **/target" ,
4
+ ]
5
+
6
+
7
+ [default .extend-words ]
8
+ metalness = " metalness" # appearance API
9
+ typ = " typ" # used to declare a variable named 'type' which is a reserved keyword in Rust
10
+ "colinear" = " colinear" # some engine shit, kidding
11
+
12
+ [default ]
13
+ extend-ignore-identifiers-re = [
14
+ " \\ dnd" , # e.g. 2nd
15
+ ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ check-wasm:
10
10
cargo check -p kittycad-modeling-cmds --target wasm32 -unknown-unknown --features websocket
11
11
12
12
check-typos :
13
- codespell --config .codespellrc
13
+ typos
14
14
15
15
test :
16
16
cargo nextest run --all-features
Original file line number Diff line number Diff line change @@ -611,7 +611,7 @@ fn criterion_benchmark(c: &mut Criterion) {
611
611
/// Which face is being queried.
612
612
pub object_id: Uuid ,
613
613
614
- /// The 2D paramter -space u,v position to evaluate the surface at
614
+ /// The 2D parameter -space u,v position to evaluate the surface at
615
615
pub uv: Point2d <f64 >,
616
616
}
617
617
@@ -628,7 +628,7 @@ fn criterion_benchmark(c: &mut Criterion) {
628
628
/// Which face is being queried.
629
629
pub object_id: Uuid ,
630
630
631
- /// The 2D paramter -space u,v position to evaluate the surface at
631
+ /// The 2D parameter -space u,v position to evaluate the surface at
632
632
pub uv: Point2d <f64 >,
633
633
}
634
634
Original file line number Diff line number Diff line change @@ -921,7 +921,7 @@ define_modeling_cmd_enum! {
921
921
/// Which face is being queried.
922
922
pub object_id: Uuid ,
923
923
924
- /// The 2D paramter -space u,v position to evaluate the surface at
924
+ /// The 2D parameter -space u,v position to evaluate the surface at
925
925
pub uv: Point2d <f64 >,
926
926
}
927
927
@@ -942,7 +942,7 @@ define_modeling_cmd_enum! {
942
942
/// Which face is being queried.
943
943
pub object_id: Uuid ,
944
944
945
- /// The 2D paramter -space u,v position to evaluate the surface at
945
+ /// The 2D parameter -space u,v position to evaluate the surface at
946
946
pub uv: Point2d <f64 >,
947
947
}
948
948
You can’t perform that action at this time.
0 commit comments