-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #355 from NotAShelf/v0.7
v0.7 at last!
- Loading branch information
Showing
192 changed files
with
6,191 additions
and
3,820 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 |
---|---|---|
|
@@ -8,23 +8,42 @@ | |
|
||
## Welcome | ||
|
||
I'm glad you are thinking about contributing to neovim-flake! If you're unsure about anything, just ask - or submit the issue or pull request anyway. The worst that can happen is you'll be politely asked to change something. Friendly contributions are always welcome. | ||
I'm glad you are thinking about contributing to nvf! If you're unsure about | ||
anything, just ask - or submit the issue or pull request anyway. The worst that | ||
can happen is you'll be politely asked to change something. Friendly | ||
contributions are always welcome. | ||
|
||
Before you contribute, I encourage you to read this project's CONTRIBUTING policy (you are here), its [LICENSE](LICENSE.md), and its [README](README.md). | ||
Before you contribute, I encourage you to read this project's CONTRIBUTING | ||
policy (you are here) and its [LICENSE](../LICENSE) to understand how your | ||
contributions are licensed. | ||
|
||
If you have any questions regarding those files, feel free to open an issue or [shoot me an email](mailto:[email protected]). Discussions tab is also available for more informal discussions. | ||
If you have any questions regarding those files, feel free to open an issue or | ||
[shoot me an email](mailto:[email protected]). Discussions tab is also available | ||
for more informal discussions. | ||
|
||
## Contributing | ||
|
||
The contribution process is mostly documented in the [pull request template](pull_request_template.md). You will find a checklist of items to complete before submitting a pull request. Please make sure you complete it before submitting a pull request. If you are unsure about any of the items, please ask. | ||
The contribution process is mostly documented in the | ||
[pull request template](PULL_REQUEST_TEMPLATE/pull_request_template.md). You | ||
will find a checklist of items to complete before submitting a pull request. | ||
Please make sure you complete it before submitting a pull request. If you are | ||
unsure about any of the items, please ask. | ||
|
||
### Guidelines | ||
|
||
We provide instructions on a healthy contribution to neovim-flake - including styling, commit formats, how-to guides for adding new modules and options. | ||
You are very well recommended to read the contributing guideliner over at [the documentation](https://notashelf.github.io/neovim-flake#hacking) | ||
We provide instructions on a healthy contribution to neovim-flake - including | ||
styling, commit formats, how-to guides for adding new modules and options. You | ||
are very well recommended to read the contributing guidelines over at | ||
[the documentation](https://notashelf.github.io/nvf#hacking) | ||
|
||
### Code of Conduct | ||
|
||
This project does not quite have a code of conduct yet. And to be honest, I'm not sure if I want one or if it will ever have one. I'm not expecting this project to be a hotbed of activity, but I do want to make sure that everyone who does contribute feels welcome and safe. As such, I will do my best to make sure that those who distrupt the project are dealt with swiftly and appropriately. | ||
This project does not quite have a code of conduct yet. And to be perfectly | ||
honest, I'm not sure if I want one or if it will ever have one. I'm not | ||
expecting this project to be a hotbed of activity, but I do want to make sure | ||
that everyone who does contribute feels welcome and safe. As such, I will do my | ||
best to make sure that those who distrupt the project are dealt with swiftly and | ||
appropriately. | ||
|
||
If you feel that you are not being treated with respect, please contact me directly. | ||
If you feel that you are not being treated with respect, please contact me | ||
directly. |
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,2 @@ | ||
|
||
default.extend-ignore-words-re = ["(?i)(noice)", "befores", "annote", "viw"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: "Check for typos in the source tree" | ||
|
||
permissions: read-all | ||
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
push: | ||
|
||
jobs: | ||
check-typos: | ||
runs-on: ubuntu-latest | ||
if: "!contains(github.event.pull_request.title, '[skip ci]')" | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Check for typos | ||
uses: crate-ci/typos@master | ||
with: | ||
config: .github/typos.toml | ||
|
||
- name: Fail Gracefully | ||
if: ${{ failure() }} | ||
shell: bash | ||
run: | | ||
echo "::error:: Current codebase contains typos that were caught by the CI!" | ||
echo "If those typos were intentional, please add them to the ignored regexes in .github/typos.toml" | ||
echo "[skip ci] label may be used if this is a one-time issue" | ||
exit 1 |
Oops, something went wrong.