Skip to content

Commit 5b5a771

Browse files
1 parent f8cbf17 commit 5b5a771

File tree

5 files changed

+55
-9
lines changed

5 files changed

+55
-9
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*.{cr,ecr}]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 2
9+
trim_trailing_whitespace = true

.envrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.gitattributes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
*.cr text eol=lf
44

5+
## Sourced-in dependencies
6+
7+
lib/** linguist-vendored
8+
59
## Generated files
610

711
# produced by `make manpages`
@@ -12,6 +16,10 @@ man/shard.yml.5 linguist-generated
1216
docs/shards.html linguist-generated
1317
docs/shard.yml.html linguist-generated
1418

19+
# devenv
20+
.devenv.flake.nix -merge linguist-generated
21+
devenv.lock -merge linguist-generated
22+
1523
## Syntax highlighting
1624

1725
Makefile.win linguist-language=makefile

.gitignore

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,42 @@
1+
# Environment configuration
2+
/Makefile.local
3+
/Makefile.win.local
4+
.env
5+
.env.*
6+
.envrc
7+
.envrc.*
8+
9+
# Shards cache
110
/.crystal
211
/.shards
3-
/bin/shards
4-
/bin/shards.dwarf
5-
/bin/shards.exe
6-
/bin/shards.pdb
12+
13+
# Test artifacts
714
/spec/.repositories
8-
/spec/.shards
915
/spec/unit/.lib
10-
/tmp
16+
/spec/.shards
17+
18+
# Build artifacts
19+
/bin/shards
20+
*.o
21+
*.ll
22+
*.s
23+
*.obj
24+
*.dwo
25+
*.dwarf
26+
*.pdb
27+
*.exe
1128
/docs/*.html
29+
/man/*.gz
30+
31+
# CI
32+
/coverage/
33+
/tmp/
34+
/.junit/
35+
1236
# Devenv
1337
.devenv*
1438
devenv.local.nix
39+
devenv.local.yaml
1540

1641
# direnv
1742
.direnv

.mailmap

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Beta Ziliani <beta@manas.tech> <beta@mpi-sws.org>
2+
Brian J. Cardiff <bcardiff@gmail.com> <bcardiff@manas.com.ar>
3+
Brian J. Cardiff <bcardiff@gmail.com> <bcardiff@manas.tech>
4+
Kim Burgess <kim@simple.industries> <kim@place.technology>
5+
Luis Lavena <luislavena@gmail.com> <luislavena@users.noreply.github.com
6+
Stephanie Hobbs <steph@rx14.co.uk> <chris@rx14.co.uk>
7+
Stephanie Hobbs <steph@rx14.co.uk> <steph@rx14.co.uk>

0 commit comments

Comments
 (0)