We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 67e1aeb + 2784ea6 commit 8d3f4c3Copy full SHA for 8d3f4c3
src/constants/config.ts
@@ -21,6 +21,33 @@ export const DEFAULT_IGNORED_FILES_GLOBS = [
21
'mono_crash.*.json',
22
'*.apk',
23
'*.aab',
24
+ // OS cruft
25
+ '.DS_Store',
26
+ 'Thumbs.db',
27
+ // IDE project files
28
+ '*.iml',
29
+ '.idea/',
30
+ '.vscode/',
31
+ // Gradle + build outputs
32
+ '.gradle/',
33
+ '**/build/',
34
+ // Android local config
35
+ 'local.properties',
36
+ // Signing (keep secrets out of git)
37
+ '*.jks',
38
+ '*.keystore',
39
+ 'keystore.properties',
40
+ // NDK
41
+ '.cxx/',
42
+ '.externalNativeBuild/',
43
+ // Misc temp
44
+ '*.log',
45
+ '*.tmp',
46
+ '*.temp',
47
+ '*.swp',
48
+ '*.swo',
49
+ '*~',
50
+ '.env',
51
]
52
53
const PRIMARY_DOMAIN = 'shipth.is'
0 commit comments