Skip to content

Commit b9b6453

Browse files
fix(doc): replace duniter typescript by rust
1 parent db18f61 commit b9b6453

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This project is tracked on our hosted gitlab server at: https://git.duniter.org/nodes/typescript/duniter/gitlab
1+
This project is tracked on our hosted gitlab server at: https://git.duniter.org/nodes/rust/duniter-v2s
22

33
The current github repository is a simple clone taken up to date at each push on the main gitlab repository.
44

.vscode/settings.json

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
{
22
"editor.formatOnSave": true,
3-
"editor.rulers": [100],
4-
"[typescript]": {
5-
"editor.defaultFormatter": "esbenp.prettier-vscode"
6-
},
3+
"editor.rulers": [
4+
100
5+
],
76
"[json]": {
87
"editor.defaultFormatter": "esbenp.prettier-vscode"
98
},
10-
"[javascript]": {
11-
"editor.defaultFormatter": "esbenp.prettier-vscode"
12-
},
139
"[yaml]": {
1410
"editor.defaultFormatter": "esbenp.prettier-vscode"
1511
},
@@ -19,4 +15,4 @@
1915
"port_rpc": 19932,
2016
"port_ws": 19933
2117
}
22-
}
18+
}

CONTRIBUTING.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ Please read [Developer documentation] before contribute.
3131

3232
2. Ensure that you respect the [commit naming conventions].
3333

34-
3. Ensure that all automated tests pass with the `npm test` command.
34+
3. Ensure that all automated tests pass with the `cargo test` command.
35+
36+
3. Ensure that the code is well formated `cargo fmt` and comply with the good practices `cargo clippy`. If you have been working on tests, check everything with `cargo clippy --all --tests`.
3537

3638
4. Update the documentation with details of changes to the interface, this includes new environment
3739
variables, exposed ports, useful file locations and container parameters.

xtask/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Duniter-v2s xtask"
44
edition = "2018"
55
license = "AGPL-3.0"
66
name = "xtask"
7-
repository = "https://git.duniter.org/nodes/typescript/duniter"
7+
repository = "https://git.duniter.org/nodes/rust/duniter-v2s"
88
version = "0.1.0"
99

1010
[[bin]]

0 commit comments

Comments
 (0)