Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
Add components to `rust-toolchain` file
Merged did:key:z6MkkfM3...sVz5 opened 10 months ago

This seems to be helping since GitHub changed the behavior of the rustup toolchain install from the default profile to a minimal which excludes fmt and clippy

source: https://github.com/rust-lang/rustup/issues/4337

Add .prettierignore

Don’t run prettier on a rust crate

check check-visual check-unit-test check-http-client-unit-test check-radicle-httpd check-e2e check-build check-http

πŸ‘‰ Preview πŸ‘‰ Workflow runs πŸ‘‰ Branch on GitHub

3 files changed +5 -2 33b8ecde β†’ 0603f63c
added .prettierignore
@@ -0,0 +1 @@
+
radicle-httpd
modified radicle-httpd/rust-toolchain
@@ -1 +1,3 @@
-
1.87
+
[toolchain]
+
channel = "1.87.0"
+
components = ["clippy", "rustfmt"]
modified scripts/check
@@ -4,4 +4,4 @@ set -e
npx tsc --noEmit
npx svelte-check --tsconfig tsconfig.json --fail-on-warnings --compiler-warnings options_missing_custom_element:ignore
npx eslint --cache --cache-location node_modules/.cache/eslint --max-warnings 0 .
-
npx prettier "**/*.@(ts|js|svelte|json|css|html|yml)" --ignore-path .gitignore --check --cache
+
npx prettier "**/*.@(ts|js|svelte|json|css|html|yml)" --ignore-path .gitignore --ignore-path .prettierignore --check --cache