Skip to content

Commit 9d27c83

Browse files
committed
chore: apply prettier
1 parent 0174e5f commit 9d27c83

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,7 @@ buck-out/
4545
*.keystore
4646

4747
# Editor config
48-
.vscode
48+
.vscode
49+
50+
# eslintcache
51+
.eslintcache

.prettierrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ module.exports = {
22
bracketSpacing: false,
33
jsxBracketSameLine: true,
44
singleQuote: true,
5-
trailingComma: "all"
5+
trailingComma: 'all',
66
};

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"test": "yarn test:flow && yarn test:js",
1616
"test:flow": "flow check",
1717
"test:js": "echo 0",
18-
"lint": "eslint .",
18+
"lint": "eslint \"js/*.js\" --cache",
1919
"test:tsc": "tsc --noEmit"
2020
},
2121
"keywords": [
@@ -53,4 +53,4 @@
5353
"type": "git",
5454
"url": "https://github.com/react-native-community/react-native-push-notification-ios.git"
5555
}
56-
}
56+
}

0 commit comments

Comments
 (0)