-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Consolidate contributing info (#12109)
- Loading branch information
Showing
11 changed files
with
87 additions
and
57 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 |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
resolver = "2" | ||
members = [ | ||
"crates/*", | ||
"contribution/*", | ||
"examples/*", | ||
] | ||
default-members = [ | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
!!! warning ":construction: Under Construction :construction: " | ||
!!! warning ":construction: Under Construction :construction:" | ||
|
||
This section is still under development. Want to help out? Consider contributing and making a [pull request](https://github.com/pola-rs/polars) to our repository. | ||
Please read our [Contribution Guidelines](https://github.com/pola-rs/polars/blob/main/CONTRIBUTING.md) on how to proceed. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# IDE configuration | ||
|
||
Using an integrated development environments (IDE) and configuring it properly will help you work on Polars more effectively. | ||
This page contains some recommendations for configuring popular IDEs. | ||
|
||
## Visual Studio Code | ||
|
||
The following extensions are recommended. | ||
|
||
### rust-analyzer | ||
|
||
If you work on the Rust code at all, you will need the [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer) extension. This extension provides code completion for the Rust code. | ||
|
||
For it to work well for the Polars code base, add the following settings to your `.vscode/settings.json`: | ||
|
||
```json | ||
{ | ||
"rust-analyzer.cargo.features": "all", | ||
"rust-analyzer.linkedProjects": ["py-polars/Cargo.toml"], | ||
} | ||
``` | ||
|
||
### Ruff | ||
|
||
The Ruff extension will help you conform to the formatting requirements of the Python code. | ||
We use both the Ruff linter and formatter. | ||
|
||
## PyCharm / RustRover / CLion | ||
|
||
!!! info | ||
|
||
More information needed. |
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
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