Skip to content

Commit 1520fb6

Browse files
committed
chore: sort some keys alphabetically
1 parent ef43663 commit 1520fb6

File tree

5 files changed

+15
-19
lines changed

5 files changed

+15
-19
lines changed

.all-contributorsrc

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"contributions": ["code"]
1212
},
1313
{
14-
"login": "Joaguirrem",
14+
"login": "joaguirrem",
1515
"name": "Joaquin Aguirre",
1616
"avatar_url": "https://avatars2.githubusercontent.com/u/17858453?v=4",
17-
"profile": "https://github.com/Joaguirrem",
17+
"profile": "https://github.com/joaguirrem",
1818
"contributions": ["code"]
1919
},
2020
{

.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ buck-out/
7272
# Ruby / CocoaPods
7373
**/Pods/
7474
/vendor/bundle/
75-
75+
7676
# Temporary files created by Metro to check the health of the file watcher
7777
.metro-health-check*
78-
78+
7979
# testing
8080
/coverage
81-
81+
8282
# Yarn
8383
.yarn/*
8484
!.yarn/patches

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ source 'https://rubygems.org'
44
ruby ">= 2.6.10"
55

66
# Exclude problematic versions of cocoapods and activesupport that causes build failures.
7-
gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
87
gem 'activesupport', '>= 6.1.7.5', '!= 7.1.0'
8+
gem 'cocoapods', '>= 1.13', '!= 1.15.0', '!= 1.15.1'
99
gem 'xcodeproj', '< 1.26.0'

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@
2929
"dev": "tsc --watch",
3030
"ios": "react-native run-ios",
3131
"prepare": "yarn run build",
32-
"start": "react-native start",
33-
"test:ts": "tsc --noEmit"
32+
"start": "react-native start"
3433
},
3534
"devDependencies": {
3635
"@expo/config-plugins": "^9.0.13",

tsconfig.json

+8-11
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
{
22
"compilerOptions": {
3-
/* Basic Options */
4-
"target": "esnext" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */,
5-
"module": "commonjs" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */,
6-
"lib": [
7-
"es6"
8-
] /* Specify library files to be included in the compilation. */,
9-
"jsx": "react" /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */,
10-
"moduleResolution": "node" /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */,
113
"allowSyntheticDefaultImports": true,
4+
"declaration": true,
125
"esModuleInterop": true,
13-
"strict": true,
14-
"resolveJsonModule": true,
6+
"jsx": "react",
7+
"lib": ["ES6"],
8+
"module": "CommonJS",
9+
"moduleResolution": "node",
1510
"outDir": "./dist",
16-
"declaration": true
11+
"resolveJsonModule": true,
12+
"strict": true,
13+
"target": "ESNext"
1714
},
1815
"exclude": ["node_modules", "babel.config.js"],
1916
"include": ["src/**/*"],

0 commit comments

Comments
 (0)