-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: make sure all text files end with a newline (#312)
The [POSIX standard says](https://stackoverflow.com/questions/729692/why-should-text-files-end-with-a-newline) all text files should end with a newline. Not that the standard matters that much, but git's diff output is a bit nicer without the `\ No newline at end of file` warning, and some command line tools work better if all lines terminate with a newline. Similar for github's diff view. If you are curious, you can use ripgrep (or a similar tool) to find all offending files: ```bash rg --files-with-matches --multiline '[^\n]\z' ``` Co-authored-by: Ming <[email protected]>
- Loading branch information
1 parent
e02c819
commit f526d5d
Showing
5 changed files
with
5 additions
and
5 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
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 |
---|---|---|
|
@@ -71,4 +71,4 @@ harness = false | |
|
||
[[bench]] | ||
name = "utils" | ||
harness = false | ||
harness = false |
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 |
---|---|---|
|
@@ -46,4 +46,4 @@ name = "add" | |
harness = false | ||
|
||
[profile.bench] | ||
opt-level = 0 | ||
opt-level = 0 |
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 |
---|---|---|
|
@@ -31,4 +31,4 @@ name = "devirgo_sumcheck" | |
harness = false | ||
|
||
[features] | ||
non_pow2_rayon_thread = [ ] | ||
non_pow2_rayon_thread = [ ] |
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