Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .github/workflows/formatting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Auto Formatting

on:
push:
branches:
- master
- main

jobs:
formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20

- name: Install Prettier
run: |
npm install --global prettier

- name: Format with Prettier
run: prettier --write "**/*.{js,jsx,ts,tsx,md,mdx,css,yaml,json}"

- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Apply Formatting Fixes

76 changes: 75 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,75 @@
.vscode
# OSX
#
.DS_Store

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate

# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# BUCK
buck-out/
\.buckd/
*.keystore
!debug.keystore

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/

*/fastlane/report.xml
*/fastlane/Preview.html
*/fastlane/screenshots

# Bundle artifact
*.jsbundle

# CocoaPods
/ios/Pods/

# Expo
.expo
.expo-shared

# Jest
coverage

# Bob
lib/

# Dot Env
.env

# VSCODE
.vscode/
6 changes: 0 additions & 6 deletions .vscode/settings.json

This file was deleted.

Loading