-
Notifications
You must be signed in to change notification settings - Fork 577
/
.ignore
22 lines (18 loc) · 869 Bytes
/
.ignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This file is used by tools like rg (AKA ripgrep) and fd to decide which
# files to examine, with a higher precidence than .gitignore.
# Don't hide source files generated by binding generator.
# This is a bit tricky because .gitignore drops whole paths.
# We need to unignore the whole dir, then re-ignore *, then
# unignore the files we want to see. Sigh.
# Everything here we want to see, so this one is easy.
!/packages/bindgen/generated/
# Only want to see generated sources in build dir
!/packages/realm/bindgen/build
/packages/realm/bindgen/build/*
!/packages/realm/bindgen/build/*.cpp
# We also generate extracted .d.ts files into realm/generated/types,
# but those are redundant with the source files so we don't need to see them.
!/packages/realm/generated
/packages/realm/generated/*
!/packages/realm/generated/ts
/packages/realm/generated/ts/realm.node