Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f681834

Browse files
committedJun 14, 2024·
Fix newlines
1 parent 2bf0644 commit f681834

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed
 

‎.cargo/config.toml

-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
[alias]
2-
xtask = "run --package xtask --"
3-
41
# On Windows MSVC, statically link the C runtime so that the resulting EXE does
52
# not depend on the vcruntime DLL.
63
[target.'cfg(all(windows, target_env = "msvc"))']

‎.gitattributes

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
/contrib/completions/* eol=lf linguist-generated=true text
2-
/contrib/completions/README.md -eol -linguist-generated -text
3-
/init.fish eol=lf text
4-
/templates/*.txt eol=lf text
5-
/zoxide.plugin.zsh eol=lf text
1+
* text=auto eol=lf
2+
3+
/contrib/completions/** linguist-generated
4+
/contrib/completions/README.md -linguist-generated

‎rustfmt.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group_imports = "StdExternalCrate"
22
imports_granularity = "Module"
3-
newline_style = "Native"
3+
newline_style = "Unix"
44
use_field_init_shorthand = true
55
use_small_heuristics = "Max"
66
use_try_shorthand = true

0 commit comments

Comments
 (0)
Please sign in to comment.