Skip to content

Commit a5b4f5b

Browse files
chore: add ignore configuration files
1 parent 3076359 commit a5b4f5b

File tree

3 files changed

+74
-0
lines changed

3 files changed

+74
-0
lines changed

.eslintignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build
2+
dist

.gitignore

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# node files
2+
dist
3+
node_modules
4+
5+
# iOS files
6+
Pods
7+
Podfile.lock
8+
Package.resolved
9+
Build
10+
xcuserdata
11+
/.build
12+
/Packages
13+
xcuserdata/
14+
DerivedData/
15+
.swiftpm/configuration/registries.json
16+
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
17+
.netrc
18+
19+
20+
# macOS files
21+
.DS_Store
22+
23+
24+
25+
# Based on Android gitignore template: https://github.com/github/gitignore/blob/HEAD/Android.gitignore
26+
27+
# Built application files
28+
*.apk
29+
*.ap_
30+
31+
# Files for the ART/Dalvik VM
32+
*.dex
33+
34+
# Java class files
35+
*.class
36+
37+
# Generated files
38+
bin
39+
gen
40+
out
41+
42+
# Gradle files
43+
.gradle
44+
build
45+
46+
# Local configuration file (sdk path, etc)
47+
local.properties
48+
49+
# Proguard folder generated by Eclipse
50+
proguard
51+
52+
# Log Files
53+
*.log
54+
55+
# Android Studio Navigation editor temp files
56+
.navigation
57+
58+
# Android Studio captures folder
59+
captures
60+
61+
# IntelliJ
62+
*.iml
63+
.idea
64+
65+
# Keystore files
66+
# Uncomment the following line if you do not want to check your keystore files in.
67+
#*.jks
68+
69+
# External native build folder generated in Android Studio 2.2 and later
70+
.externalNativeBuild

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build
2+
dist

0 commit comments

Comments
 (0)