2022-11-14 23:43:15 +00:00
2022-01-24 19:01:03 +00:00
# Description
2023-04-12 17:30:12 +00:00
<!--
Thank you for improving Nushell. Please, check our [contributing guide ](../CONTRIBUTING.md ) and talk to the core team before making major changes.
2022-01-24 19:01:03 +00:00
2023-04-12 17:30:12 +00:00
Description of your pull request goes here. **Provide examples and/or screenshots** if your changes affect the user experience.
-->
2022-11-07 21:57:29 +00:00
2022-11-14 23:43:15 +00:00
# User-Facing Changes
2023-04-12 17:30:12 +00:00
<!-- List of all changes that impact the user experience here. This helps us keep track of breaking changes. -->
2022-01-24 18:58:09 +00:00
2022-11-14 23:43:15 +00:00
# Tests + Formatting
2023-04-12 17:30:12 +00:00
<!--
2022-11-14 23:43:15 +00:00
Don't forget to add tests that cover your changes.
2022-06-16 13:14:59 +00:00
2022-01-24 18:58:09 +00:00
Make sure you've run and fixed any issues with these commands:
2022-10-28 16:14:08 +00:00
- `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes)
2023-04-27 14:31:29 +00:00
- `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect -A clippy::result_large_err` to check that you're using the standard code style
2022-11-23 00:58:11 +00:00
- `cargo test --workspace` to check that all tests pass
2023-04-09 17:00:20 +00:00
- `cargo run -- crates/nu-std/tests/run.nu` to run the tests for the standard library
2022-10-16 15:19:54 +00:00
2023-03-11 18:10:32 +00:00
> **Note**
> from `nushell` you can also use the `toolkit` as follows
> ```bash
> use toolkit.nu # or use an `env_change` hook to activate it automatically
> toolkit check pr
> ```
2023-04-12 17:30:12 +00:00
-->
2023-03-11 18:10:32 +00:00
2022-11-07 21:57:29 +00:00
# After Submitting
2023-04-12 17:30:12 +00:00
<!-- If your PR had any user-facing changes, update [the documentation ](https://github.com/nushell/nushell.github.io ) after the PR is merged, if necessary. This will help us keep the docs up to date. -->