Skip to content

Commit 0f18608

Browse files
authored
gitignore: Remove editor specific git ignore rules (#106)
These truthfully should be up to users to maintain, as trying to add everyones editor of choice config directories here isn't ideal. This additionally adds a section in contributing on the new stance.
1 parent b39f132 commit 0f18608

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ DerivedData/
1010
.swiftpm
1111
workdir/
1212
installer/
13-
.xcode/
14-
.vscode/
15-
.idea/
1613
.venv/
1714
test_results/
1815
*.pid

CONTRIBUTING.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,14 @@ Before merging, we'll review the pull request title and body to ensure it:
4747

4848
The pull request description should be concise and accurately describe the *what* and *why* of your changes.
4949

50+
#### .gitignore contributions
51+
52+
We do not currently accept contributions to add editor specific additions to the root .gitignore. We urge contributors to make a global .gitignore file with their rulesets they may want to add instead. A global .gitignore file can be set like so:
53+
54+
```bash
55+
git config --global core.excludesfile ~/.gitignore
56+
```
57+
5058
#### Formatting Contributions
5159

5260
Make sure your contributions are consistent with the rest of the project's formatting. You can do this using our Makefile:

0 commit comments

Comments
 (0)