blame ignore and contributing update

This commit is contained in:
aronwk-aaron 2022-07-28 08:47:28 -05:00
parent 19e77a38d8
commit 0e46b875a5
2 changed files with 12 additions and 1 deletions

View File

@ -0,0 +1,2 @@
# format codebase
19e77a38d837ce781ba0ca6ea8e78b67a6e3b5a5

View File

@ -123,6 +123,15 @@ added, which produced InvalidScript errors.
Check out a compiled list of development resources and tools [here](https://lu-dev.net/). Check out a compiled list of development resources and tools [here](https://lu-dev.net/).
Please use [.editorconfig](https://editorconfig.org/#pre-installed) with your preferred IDE.
And run:
```bash
git config blame.ignoreRevsFile .git-blame-ignore-revs
```
to ignore the gitblame of mass formatting commits
## Coding Style ## Coding Style
This project has gone through multiple iterations of coding style. In the code you'll find a number of different coding styles in use. What follows is the preferred style for this project. This project has gone through multiple iterations of coding style. In the code you'll find a number of different coding styles in use. What follows is the preferred style for this project.
@ -154,7 +163,7 @@ if (x) {
} }
``` ```
Instead of Instead of
```cpp ```cpp
if ( x ) { if ( x ) {