Skip to content
This repository has been archived by the owner on Aug 31, 2023. It is now read-only.

Commit

Permalink
improv justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
xunilrj committed Dec 3, 2022
1 parent 35fbc30 commit a39b9bd
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 9 deletions.
8 changes: 2 additions & 6 deletions crates/rome_js_unicode_table/src/tables.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions editors/vscode/configuration_schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ test-lintrule name:
cargo test -p rome_js_analyze -- {{snakecase(name)}}

check-ready:
git diff --exit-code
git diff --exit-code --quiet
just codegen
just documentation
cargo lint
cargo fmt
cargo test
git diff --exit-code
git diff --exit-code --quiet
5 changes: 5 additions & 0 deletions npm/backend-jsonrpc/src/workspace.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions npm/rome/configuration_schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion xtask/codegen/src/generate_new_lintrule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::{path::PathBuf, str::FromStr};
use case::CaseExt;

pub fn generate_new_lintrule(path: &str, rule_name: &str) {
let rule_folder = PathBuf::from_str(&path).unwrap();
let rule_folder = PathBuf::from_str(path).unwrap();
match rule_folder.file_stem()
.and_then(|x| x.to_str()) {
Some("nursery") => {},
Expand Down

0 comments on commit a39b9bd

Please sign in to comment.