Skip to content

Commit 69a6c57

Browse files
authored
Use prettier, fix CI (#701)
1 parent 369c991 commit 69a6c57

10 files changed

+367
-1247
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ attach_workspace: &attach_workspace
66

77
docker_defaults: &docker_defaults
88
docker:
9-
- image: circleci/python:3.6.4-stretch-node-browsers
9+
- image: circleci/python:3.10.11-node
1010
working_directory: ~/react-native-twilio-video-webrtc
1111

1212
jobs:

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
Example/
22
.idea
33
.circleci
4+
.gradle

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
"build": "expo-module build",
1313
"clean": "expo-module clean",
1414
"test": "expo-module test",
15-
"lint": "standard 'src/**/*.js'",
16-
"lint:fix": "standard 'src/**/*.js' --fix",
15+
"lint": "prettier -c 'src/**/*.js'",
16+
"lint:fix": "prettier -w 'src/**/*.js'",
1717
"ci": "yarn lint"
1818
},
1919
"standard": {
@@ -38,8 +38,8 @@
3838
"gulp-load-plugins": "^1.5.0",
3939
"gulp-react-docs": "^0.1.3",
4040
"gulp-tap": "^1.0.1",
41-
"react-docgen": "^2.15.0",
42-
"standard": "^13.1.0"
41+
"prettier": "^2.8.8",
42+
"react-docgen": "^2.15.0"
4343
},
4444
"peerDependencies": {
4545
"expo": ">=47.0.0",

0 commit comments

Comments
 (0)