-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build: add tasks.json for vscode * fix: locale supports fallback of en * test: process_inputs instead of process_input * fix: output margins * fix: error handling for is a directory
- Loading branch information
Showing
8 changed files
with
448 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "cargo build", | ||
"type": "shell", | ||
"command": "cargo build -r", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"close": false | ||
} | ||
}, | ||
{ | ||
"label": "cargo check", | ||
"type": "shell", | ||
"command": "cargo check", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"close": false | ||
} | ||
}, | ||
{ | ||
"label": "cargo clean", | ||
"type": "shell", | ||
"command": "cargo clean", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"close": false | ||
} | ||
}, | ||
{ | ||
"label": "cargo run", | ||
"type": "shell", | ||
"command": "cargo run", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"close": false | ||
} | ||
}, | ||
{ | ||
"label": "cargo test", | ||
"type": "shell", | ||
"command": "cargo test", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"close": false | ||
} | ||
}, | ||
{ | ||
"label": "cargo clippy", | ||
"type": "shell", | ||
"command": "cargo clippy -- -D warnings", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"close": false | ||
} | ||
}, | ||
{ | ||
"label": "cargo fmt", | ||
"type": "shell", | ||
"command": "cargo fmt -v", | ||
"group": { | ||
"kind": "build", | ||
"isDefault": false | ||
}, | ||
"presentation": { | ||
"echo": true, | ||
"reveal": "always", | ||
"close": false | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.