mirror of
https://github.com/alacritty/alacritty.git
synced 2024-12-16 14:27:41 -05:00
Add editorconfig
This commit also purges .gitignore, since the files mentioned in it should be handled by global ignore file. Fixes #4378.
This commit is contained in:
parent
ec42b42ce6
commit
812c8bc14a
3 changed files with 22 additions and 39 deletions
18
.editorconfig
Normal file
18
.editorconfig
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
root = true
|
||||||
|
|
||||||
|
[*]
|
||||||
|
charset = utf-8
|
||||||
|
end_of_line = lf
|
||||||
|
trim_trailing-whitespace = true
|
||||||
|
insert_final_newline = true
|
||||||
|
|
||||||
|
[*.{glsl,rs,toml}]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 4
|
||||||
|
|
||||||
|
[*.yml]
|
||||||
|
indent_style = space
|
||||||
|
indent_size = 2
|
||||||
|
|
||||||
|
[Makefile]
|
||||||
|
indent_style = tab
|
37
.gitignore
vendored
37
.gitignore
vendored
|
@ -1,36 +1 @@
|
||||||
# Rust build directory
|
target
|
||||||
**/target
|
|
||||||
|
|
||||||
# Rust subcrate lockfiles
|
|
||||||
*/Cargo.lock
|
|
||||||
|
|
||||||
# Temp files
|
|
||||||
.idea
|
|
||||||
.vscode
|
|
||||||
*.iml
|
|
||||||
*~
|
|
||||||
|
|
||||||
# vim temporary files
|
|
||||||
*.swp
|
|
||||||
|
|
||||||
# other ignores
|
|
||||||
*.DS_Store
|
|
||||||
=======
|
|
||||||
|
|
||||||
# Snapcraft files
|
|
||||||
stage
|
|
||||||
prime
|
|
||||||
parts
|
|
||||||
*.snap
|
|
||||||
*.pyc
|
|
||||||
alacritty_*_source.tar.bz2
|
|
||||||
|
|
||||||
# WiX files
|
|
||||||
/Wix.3.11.1
|
|
||||||
*.msi
|
|
||||||
*.wixobj
|
|
||||||
*.wixpdb
|
|
||||||
|
|
||||||
# Perf tools
|
|
||||||
perf.data*
|
|
||||||
flamegraph.svg
|
|
||||||
|
|
Loading…
Reference in a new issue