mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 22:09:09 +00:00
Merge pull request #6355 from B-Teague/merge-gitignore
Consolidate gitignore
This commit is contained in:
commit
79ed84fff3
44 changed files with 28 additions and 216 deletions
28
.gitignore
vendored
28
.gitignore
vendored
|
@ -1,3 +1,27 @@
|
||||||
|
### Do not modify these first three ignore rules. Needed to ignore files with no extension ###
|
||||||
|
# Ignore all files including binary files that have no extension
|
||||||
|
*
|
||||||
|
# Unignore all files with extensions
|
||||||
|
!*.*
|
||||||
|
# Unignore all directories
|
||||||
|
!*/
|
||||||
|
|
||||||
|
# Specifically keep these files with no extension
|
||||||
|
!Earthfile
|
||||||
|
!AUTHORS
|
||||||
|
!LICENSE*
|
||||||
|
!LEGAL*
|
||||||
|
!Dockerfile
|
||||||
|
# .reuse/dep5 see https://reuse.software/
|
||||||
|
!dep5
|
||||||
|
# NotARocFile is used for formatter test
|
||||||
|
!NotARocFile
|
||||||
|
# also includes keeping one exe benchmark file
|
||||||
|
!dynhost_benchmarks*
|
||||||
|
|
||||||
|
### Add specific file extensions and directories below ###
|
||||||
|
|
||||||
|
# Ignore the following directories and file extensions
|
||||||
target
|
target
|
||||||
generated-docs
|
generated-docs
|
||||||
zig-cache
|
zig-cache
|
||||||
|
@ -63,7 +87,7 @@ result
|
||||||
|
|
||||||
# Only keep Cargo.lock dependencies for the main compiler.
|
# Only keep Cargo.lock dependencies for the main compiler.
|
||||||
# Examples and test only crates should be fine to be unlocked.
|
# Examples and test only crates should be fine to be unlocked.
|
||||||
# This remove unneccessary lock file versioning.
|
# This remove unnecessary lock file versioning.
|
||||||
# It also ensures the compiler can always pull in 1 version of things and doesn't get restricted by sub lockfiles.
|
# It also ensures the compiler can always pull in 1 version of things and doesn't get restricted by sub lockfiles.
|
||||||
/**/Cargo.lock
|
/**/Cargo.lock
|
||||||
!/Cargo.lock
|
!/Cargo.lock
|
||||||
|
@ -84,3 +108,5 @@ www/dist
|
||||||
www/content/examples
|
www/content/examples
|
||||||
www/examples-main.zip
|
www/examples-main.zip
|
||||||
www/examples-main
|
www/examples-main
|
||||||
|
|
||||||
|
examples/static-site-gen/**/*.html
|
11
crates/cli/tests/fixtures/.gitignore
vendored
11
crates/cli/tests/fixtures/.gitignore
vendored
|
@ -1,11 +0,0 @@
|
||||||
app
|
|
||||||
*.o
|
|
||||||
*.dSYM
|
|
||||||
dynhost
|
|
||||||
libapp.so
|
|
||||||
metadata
|
|
||||||
preprocessedhost
|
|
||||||
packages-test
|
|
||||||
|
|
||||||
multi-dep-str/multi-dep-str
|
|
||||||
multi-dep-thunk/multi-dep-thunk
|
|
|
@ -1 +0,0 @@
|
||||||
Main
|
|
|
@ -1 +0,0 @@
|
||||||
Main
|
|
12
crates/cli_testing_examples/.gitignore
vendored
12
crates/cli_testing_examples/.gitignore
vendored
|
@ -1,12 +0,0 @@
|
||||||
*.dSYM
|
|
||||||
libhost.a
|
|
||||||
libapp.so
|
|
||||||
dynhost
|
|
||||||
preprocessedhost
|
|
||||||
metadata
|
|
||||||
|
|
||||||
expects/expects
|
|
||||||
benchmarks/rbtree-ck
|
|
||||||
benchmarks/rbtree-insert
|
|
||||||
benchmarks/test-astar
|
|
||||||
benchmarks/test-base64
|
|
|
@ -1,2 +0,0 @@
|
||||||
fibonacci
|
|
||||||
quicksort
|
|
|
@ -1,12 +0,0 @@
|
||||||
cfold
|
|
||||||
closure
|
|
||||||
deriv
|
|
||||||
issue2279
|
|
||||||
nqueens
|
|
||||||
quicksortapp
|
|
||||||
RBTreeCk
|
|
||||||
RBTreeDel
|
|
||||||
RBTreeInsert
|
|
||||||
TestAStar
|
|
||||||
TestBase64
|
|
||||||
*.wasm
|
|
1
crates/compiler/builtins/.gitignore
vendored
1
crates/compiler/builtins/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
builtins.ll
|
|
5
crates/compiler/builtins/bitcode/.gitignore
vendored
5
crates/compiler/builtins/bitcode/.gitignore
vendored
|
@ -1,5 +0,0 @@
|
||||||
zig-out
|
|
||||||
zig-cache
|
|
||||||
src/zig-cache
|
|
||||||
benchmark/zig-cache
|
|
||||||
dec
|
|
17
crates/compiler/checkmate/www/.gitignore
vendored
17
crates/compiler/checkmate/www/.gitignore
vendored
|
@ -1,17 +0,0 @@
|
||||||
/node_modules
|
|
||||||
/.pnp
|
|
||||||
.pnp.js
|
|
||||||
|
|
||||||
/coverage
|
|
||||||
|
|
||||||
/build
|
|
||||||
|
|
||||||
.DS_Store
|
|
||||||
.env.local
|
|
||||||
.env.development.local
|
|
||||||
.env.test.local
|
|
||||||
.env.production.local
|
|
||||||
|
|
||||||
npm-debug.log*
|
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
4
crates/compiler/gen_wasm/.gitignore
vendored
4
crates/compiler/gen_wasm/.gitignore
vendored
|
@ -1,4 +0,0 @@
|
||||||
*.wasm
|
|
||||||
*.wat
|
|
||||||
/notes.md
|
|
||||||
/tmp
|
|
1
crates/compiler/load_internal/.gitignore
vendored
1
crates/compiler/load_internal/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
/tmp
|
|
1
crates/compiler/test_gen/.gitignore
vendored
1
crates/compiler/test_gen/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
/build
|
|
3
crates/compiler/test_syntax/fuzz/.gitignore
vendored
3
crates/compiler/test_syntax/fuzz/.gitignore
vendored
|
@ -1,3 +0,0 @@
|
||||||
target
|
|
||||||
corpus
|
|
||||||
artifacts
|
|
1
crates/docs/.gitignore
vendored
1
crates/docs/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
/build
|
|
3
crates/glue/.gitignore
vendored
3
crates/glue/.gitignore
vendored
|
@ -1,3 +0,0 @@
|
||||||
*.so
|
|
||||||
*.dylib
|
|
||||||
*.dll
|
|
12
crates/glue/tests/fixtures/.gitignore
vendored
12
crates/glue/tests/fixtures/.gitignore
vendored
|
@ -1,12 +0,0 @@
|
||||||
Cargo.lock
|
|
||||||
Cargo.toml
|
|
||||||
build.rs
|
|
||||||
host.c
|
|
||||||
test_glue
|
|
||||||
roc_externs.rs
|
|
||||||
main.rs
|
|
||||||
app
|
|
||||||
dynhost
|
|
||||||
libapp.so
|
|
||||||
metadata
|
|
||||||
preprocessedhost
|
|
5
crates/repl_wasm/.gitignore
vendored
5
crates/repl_wasm/.gitignore
vendored
|
@ -1,5 +0,0 @@
|
||||||
# wasm-pack
|
|
||||||
/pkg
|
|
||||||
|
|
||||||
# shell script output
|
|
||||||
/build
|
|
1
crates/reporting/.gitignore
vendored
1
crates/reporting/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
/tmp
|
|
2
crates/roc_std/.gitignore
vendored
2
crates/roc_std/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
*.o
|
|
||||||
*.a
|
|
2
crates/valgrind/zig-platform/.gitignore
vendored
2
crates/valgrind/zig-platform/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
dynhost
|
|
||||||
libapp.so
|
|
2
crates/vendor/morphic_lib/.gitignore
vendored
2
crates/vendor/morphic_lib/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
/target
|
|
||||||
Cargo.lock
|
|
18
examples/.gitignore
vendored
18
examples/.gitignore
vendored
|
@ -1,18 +0,0 @@
|
||||||
*.dSYM
|
|
||||||
libhost.a
|
|
||||||
libapp.so
|
|
||||||
dynhost
|
|
||||||
*.rm
|
|
||||||
*.rh
|
|
||||||
|
|
||||||
helloWorld
|
|
||||||
helloWorldNoURL
|
|
||||||
inspect-gui
|
|
||||||
inspect-logging
|
|
||||||
swiftui
|
|
||||||
parser/examples/example
|
|
||||||
gui/hello-gui
|
|
||||||
gui/breakout/breakout
|
|
||||||
gui/breakout/hello-gui
|
|
||||||
webserver/echo
|
|
||||||
webserver/http
|
|
13
examples/cli/.gitignore
vendored
13
examples/cli/.gitignore
vendored
|
@ -1,13 +0,0 @@
|
||||||
args
|
|
||||||
countdown
|
|
||||||
echo
|
|
||||||
effects
|
|
||||||
file
|
|
||||||
form
|
|
||||||
tui
|
|
||||||
http-get
|
|
||||||
file-io
|
|
||||||
env
|
|
||||||
ingested-file
|
|
||||||
ingested-file-bytes
|
|
||||||
out.txt
|
|
1
examples/cli/false-interpreter/.gitignore
vendored
1
examples/cli/false-interpreter/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
false
|
|
37
examples/glue/rust-platform/Cargo.lock
generated
37
examples/glue/rust-platform/Cargo.lock
generated
|
@ -1,37 +0,0 @@
|
||||||
# This file is automatically @generated by Cargo.
|
|
||||||
# It is not intended for manual editing.
|
|
||||||
version = 3
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "arrayvec"
|
|
||||||
version = "0.7.2"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "host"
|
|
||||||
version = "0.0.1"
|
|
||||||
dependencies = [
|
|
||||||
"libc",
|
|
||||||
"roc_std",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "libc"
|
|
||||||
version = "0.2.92"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "56d855069fafbb9b344c0f962150cd2c1187975cb1c22c1522c240d8c4986714"
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "roc_std"
|
|
||||||
version = "0.0.1"
|
|
||||||
dependencies = [
|
|
||||||
"arrayvec",
|
|
||||||
"static_assertions",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "static_assertions"
|
|
||||||
version = "1.1.0"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
Binary file not shown.
1
examples/gui/.gitignore
vendored
1
examples/gui/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
hello-guiBROKEN
|
|
2
examples/gui/breakout/.gitignore
vendored
2
examples/gui/breakout/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
breakoutBROKEN
|
|
||||||
hello-guiBROKEN
|
|
1
examples/gui/breakout/platform/.gitignore
vendored
1
examples/gui/breakout/platform/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
target
|
|
1
examples/gui/platform/.gitignore
vendored
1
examples/gui/platform/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
target
|
|
7
examples/jvm-interop/.gitignore
vendored
7
examples/jvm-interop/.gitignore
vendored
|
@ -1,7 +0,0 @@
|
||||||
*.log
|
|
||||||
*.class
|
|
||||||
*.o
|
|
||||||
*.so
|
|
||||||
*.jar
|
|
||||||
libhello*
|
|
||||||
*.h
|
|
2
examples/nodejs-interop/.gitignore
vendored
2
examples/nodejs-interop/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
build
|
|
||||||
node_modules
|
|
1
examples/nodejs-interop/wasm/.gitignore
vendored
1
examples/nodejs-interop/wasm/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
roc-app.wasm
|
|
1
examples/parser/.gitignore
vendored
1
examples/parser/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
parse-movies-csv
|
|
1
examples/parser/examples/.gitignore
vendored
1
examples/parser/examples/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
letter-counts
|
|
8
examples/platform-switching/.gitignore
vendored
8
examples/platform-switching/.gitignore
vendored
|
@ -1,8 +0,0 @@
|
||||||
rocLovesC
|
|
||||||
rocLovesPlatforms
|
|
||||||
rocLovesRust
|
|
||||||
rocLovesSwift
|
|
||||||
rocLovesWebAssembly
|
|
||||||
rocLovesZig
|
|
||||||
main
|
|
||||||
*.wasm
|
|
5
examples/python-interop/.gitignore
vendored
5
examples/python-interop/.gitignore
vendored
|
@ -1,5 +0,0 @@
|
||||||
libhello*
|
|
||||||
.interop_env/
|
|
||||||
build/
|
|
||||||
demo.egg-info/
|
|
||||||
dist/
|
|
9
examples/ruby-interop/.gitignore
vendored
9
examples/ruby-interop/.gitignore
vendored
|
@ -1,9 +0,0 @@
|
||||||
libhello
|
|
||||||
libhello.o
|
|
||||||
libhello.dylib
|
|
||||||
libhello.so
|
|
||||||
libhello.so.*
|
|
||||||
*.log
|
|
||||||
Makefile
|
|
||||||
*.bundle
|
|
||||||
extconf.h
|
|
4
examples/static-site-gen/.gitignore
vendored
4
examples/static-site-gen/.gitignore
vendored
|
@ -1,4 +0,0 @@
|
||||||
/output/*.html
|
|
||||||
/output/subFolder
|
|
||||||
/static-site
|
|
||||||
/bin
|
|
1
examples/swiftui/.gitignore
vendored
1
examples/swiftui/.gitignore
vendored
|
@ -1 +0,0 @@
|
||||||
main
|
|
2
www/.gitignore
vendored
2
www/.gitignore
vendored
|
@ -1,2 +0,0 @@
|
||||||
# ignore a symlink to the wasm repl code
|
|
||||||
public/repl
|
|
Loading…
Add table
Add a link
Reference in a new issue