Skip to content

Commit

Permalink
Migrating from spm to pod for iOS
Browse files Browse the repository at this point in the history
f

f

f
  • Loading branch information
Muhieddine-El-Kaissi committed Apr 25, 2023
1 parent d6e3035 commit 61e7262
Show file tree
Hide file tree
Showing 11 changed files with 553 additions and 193 deletions.
154 changes: 109 additions & 45 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,11 @@ dist
### Generated with gitignore.io ###
###################################



# Created by https://www.gitignore.io/api/osx,node,gradle,cocoapods,intellij+all,androidstudio
# Edit at https://www.gitignore.io/?templates=osx,node,gradle,cocoapods,intellij+all,androidstudio

### CocoaPods ###
## CocoaPods GitIgnore Template

# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
# - Also handy if you have a large number of dependant pods
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
Pods/
# Created by https://www.toptal.com/developers/gitignore/api/osx,node,gradle,intellij+all,androidstudio,swiftpackagemanager
# Edit at https://www.toptal.com/developers/gitignore?templates=osx,node,gradle,intellij+all,androidstudio,swiftpackagemanager

### Intellij+all ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
Expand All @@ -40,6 +30,9 @@ Pods/
.idea/**/dictionaries
.idea/**/shelf

# AWS User-specific
.idea/**/aws.xml

# Generated files
.idea/**/contentModel.xml

Expand All @@ -60,6 +53,9 @@ Pods/
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
Expand Down Expand Up @@ -87,6 +83,9 @@ atlassian-ide-plugin.xml
# Cursive Clojure plugin
.idea/replstate.xml

# SonarLint plugin
.idea/sonarlint/

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
Expand All @@ -100,20 +99,13 @@ fabric.properties
.idea/caches/build_file_checksums.ser

### Intellij+all Patch ###
# Ignores the whole .idea folder and all .iml files
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360

.idea/

# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
# Ignore everything but code style settings and run configurations
# that are supposed to be shared within teams.

*.iml
modules.xml
.idea/misc.xml
*.ipr
.idea/*

# Sonarlint plugin
.idea/sonarlint
!.idea/codeStyles
!.idea/runConfigurations

### Node ###
# Logs
Expand All @@ -123,6 +115,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
Expand Down Expand Up @@ -159,8 +152,8 @@ build/Release
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo
Expand All @@ -171,6 +164,15 @@ typings/
# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

Expand All @@ -180,25 +182,40 @@ typings/
# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
# dotenv environment variable files
.env
.env.test
.env.development.local
.env.test.local
.env.production.local
.env.local

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# next.js build output
# Next.js build output
.next
out

# nuxt.js build output
# Nuxt.js build / generate output
.nuxt
dist

# react / gatsby
public/
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# vuepress v2.x temp and cache directory
.temp

# Docusaurus cache and generated files
.docusaurus

# Serverless directories
.serverless/

Expand All @@ -208,6 +225,28 @@ public/
# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*

### Node Patch ###
# Serverless Webpack directories
.webpack/

# Optional stylelint cache

# SvelteKit build / generate output
.svelte-kit

### OSX ###
# General
.DS_Store
Expand All @@ -217,6 +256,7 @@ public/
# Icon must end with two \r
Icon


# Thumbnails
._*

Expand All @@ -236,31 +276,48 @@ Network Trash Folder
Temporary Items
.apdisk

### SwiftPackageManager ###
Packages
.build/
xcuserdata
DerivedData/
*.xcodeproj


### Gradle ###
.gradle
build/
**/build/
!src/**/build/

# Ignore Gradle GUI config
gradle-app.setting

# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar

# Avoid ignore Gradle wrappper properties
!gradle-wrapper.properties

# Cache of project
.gradletasknamecache

# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties
# Eclipse Gradle plugin generated files
# Eclipse Core
.project
# JDT-specific (Eclipse Java Development Tools)
.classpath

### Gradle Patch ###
**/build/
# Java heap dump
*.hprof

### AndroidStudio ###
# Covers files to be ignored for android development using Android Studio.

# Built application files
*.apk
*.ap_
*.aab

# Files for the ART/Dalvik VM
*.dex
Expand All @@ -274,6 +331,7 @@ gen/

# Gradle files
.gradle/
build/

# Signing files
.signing/
Expand All @@ -294,9 +352,17 @@ proguard/
/*/*/production
captures/
.navigation/
*.ipr
*~
*.swp

# Keystore files
*.jks
*.keystore

# Google Services (e.g. APIs or Firebase)
# google-services.json

# Android Patch
gen-external-apklibs

Expand All @@ -307,6 +373,7 @@ gen-external-apklibs
obj/

# IntelliJ IDEA
*.iml
/out/

# User-specific configurations
Expand All @@ -319,6 +386,7 @@ obj/
.idea/compiler.xml
.idea/copyright/profiles_settings.xml
.idea/encodings.xml
.idea/misc.xml
.idea/modules.xml
.idea/scopes/scope_settings.xml
.idea/dictionaries
Expand All @@ -330,15 +398,11 @@ obj/
.idea/dynamic.xml
.idea/uiDesigner.xml
.idea/assetWizardSettings.xml

# OS-specific files
.DS_Store?
ehthumbs.db
Thumbs.db
.idea/gradle.xml
.idea/jarRepositories.xml
.idea/navEditor.xml

# Legacy Eclipse project files
.classpath
.project
.cproject
.settings/

Expand Down Expand Up @@ -367,4 +431,4 @@ hs_err_pid*

!/gradle/wrapper/gradle-wrapper.jar

# End of https://www.gitignore.io/api/osx,node,gradle,cocoapods,intellij+all,androidstudio
# End of https://www.toptal.com/developers/gitignore/api/osx,node,gradle,intellij+all,androidstudio,swiftpackagemanager
Loading

0 comments on commit 61e7262

Please sign in to comment.