Skip to content

Commit 84346a3

Browse files
TheBuggedYRNymabdallah
authored andcommitted
[MOB-11553] Update Ignores (#874)
1 parent f35c969 commit 84346a3

File tree

10 files changed

+675
-187
lines changed

10 files changed

+675
-187
lines changed

.gitignore

Lines changed: 42 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,24 @@
1-
*.iml
2-
.idea/
1+
# Distribution
2+
dist/
3+
bin/
34

4-
.DS_Store
5-
android/.DS_Store
6-
ios/.DS_Store
5+
# NodeJS
6+
node_modules/
7+
npm-debug.log
8+
yarn-debug.log
9+
yarn-error.log
10+
coverage/
11+
.jest/cache/
712

8-
build/
9-
.gradle
10-
local.properties
11-
.idea
12-
/android/src/main/java/com/instabug/reactlibrary/wrappedAPIs
13+
# OSX
14+
.DS_Store
1315

16+
# VSCode
1417
.vscode/
18+
jsconfig.json
1519

1620
# Xcode
17-
18-
## Build generated
1921
build/
20-
DerivedData/
21-
22-
## Various settings
2322
*.pbxuser
2423
!default.pbxuser
2524
*.mode1v3
@@ -28,15 +27,33 @@ DerivedData/
2827
!default.mode2v3
2928
*.perspectivev3
3029
!default.perspectivev3
31-
xcuserdata/
32-
30+
xcuserdata
31+
*.xccheckout
32+
*.moved-aside
33+
DerivedData
34+
*.hmap
35+
*.ipa
36+
*.xcuserstate
37+
project.xcworkspace
38+
39+
# Cocoapods
40+
example/ios/Pods
41+
42+
# Android/IJ
43+
.classpath
44+
.cxx
45+
.gradle
46+
.idea
47+
.project
48+
.settings
49+
local.properties
50+
android.iml
3351

34-
coverage/
35-
.jest/cache/
36-
*node_modules/
37-
*Pods/
38-
*Podfile.lock
52+
# BUCK
53+
buck-out/
54+
\.buckd/
55+
android/app/libs
56+
android/keystores/debug.keystore
3957

40-
# Typescript build
41-
dist/
42-
bin/
58+
# Expo
59+
.expo/*

.npmignore

Lines changed: 74 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,83 @@
1+
## Extra ignores
2+
3+
# Misc
14
.github/
25
.circleci/
6+
example/
37

4-
*.iml
5-
.idea/
6-
.DS_Store
8+
# Config files
9+
.eslintrc.js
10+
.prettierrc.js
11+
Dangerfile
712

8-
android/.DS_Store
9-
android/android.iml
10-
android/gradlew
11-
android/gradlew.bat
12-
android/local.properties
13-
android/.project
14-
android/.settings
15-
*Test.java
13+
# CLI Config files
14+
rollup.config.js
15+
tsconfig.cli.json
1616

17-
ios/.DS_Store
17+
# Tests
18+
android/src/test/
19+
tests/
20+
jest.config.js
1821

19-
build/
20-
example/
22+
## Same as .gitignore
23+
24+
# Must be Included in published npm package
25+
# # Distribution
26+
# dist/
27+
# bin/
28+
29+
# NodeJS
2130
node_modules/
31+
npm-debug.log
32+
yarn-debug.log
33+
yarn-error.log
2234
coverage/
23-
test/
35+
.jest/cache/
2436

25-
Dangerfile
26-
babel.config.js
27-
.prettierrc.js
37+
# OSX
38+
.DS_Store
39+
40+
# VSCode
41+
.vscode/
42+
jsconfig.json
43+
44+
# Xcode
45+
build/
46+
*.pbxuser
47+
!default.pbxuser
48+
*.mode1v3
49+
!default.mode1v3
50+
*.mode2v3
51+
!default.mode2v3
52+
*.perspectivev3
53+
!default.perspectivev3
54+
xcuserdata
55+
*.xccheckout
56+
*.moved-aside
57+
DerivedData
58+
*.hmap
59+
*.ipa
60+
*.xcuserstate
61+
project.xcworkspace
62+
63+
# Cocoapods
64+
example/ios/Pods
65+
66+
# Android/IJ
67+
.classpath
68+
.cxx
69+
.gradle
70+
.idea
71+
.project
72+
.settings
73+
local.properties
74+
android.iml
75+
76+
# BUCK
77+
buck-out/
78+
\.buckd/
79+
android/app/libs
80+
android/keystores/debug.keystore
81+
82+
# Expo
83+
.expo/*

android/.project

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

android/.settings/org.eclipse.buildship.core.prefs

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

0 commit comments

Comments
 (0)