-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: apply prettier formatting consistently, mod script, readme typo
- Loading branch information
1 parent
0748148
commit 28b48ae
Showing
8 changed files
with
29 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
import { CapacitorConfig } from '@capacitor/cli'; | ||
import { CapacitorConfig } from "@capacitor/cli"; | ||
|
||
const config: CapacitorConfig = { | ||
appId: 'com.mutinywallet.mutinywallet', | ||
backgroundColor: "171717", | ||
appName: 'Mutiny Wallet', | ||
webDir: 'dist/public', | ||
server: { | ||
androidScheme: 'https' | ||
} | ||
appId: "com.mutinywallet.mutinywallet", | ||
backgroundColor: "171717", | ||
appName: "Mutiny Wallet", | ||
webDir: "dist/public", | ||
server: { | ||
androidScheme: "https" | ||
} | ||
}; | ||
|
||
export default config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
/** @type {import("prettier").Options} */ | ||
export default { | ||
trailingComma: "none", | ||
tabWidth: 4, | ||
semi: true, | ||
singleQuote: false, | ||
arrowParens: "always", | ||
printWidth: 80, | ||
useTabs: false, | ||
trailingComma: "none", | ||
tabWidth: 4, | ||
semi: true, | ||
singleQuote: false, | ||
arrowParens: "always", | ||
printWidth: 80, | ||
useTabs: false, | ||
|
||
plugins: [ | ||
"@ianvs/prettier-plugin-sort-imports", | ||
"prettier-plugin-tailwindcss", // MUST come last | ||
], | ||
plugins: [ | ||
"@ianvs/prettier-plugin-sort-imports", | ||
"prettier-plugin-tailwindcss" // MUST come last | ||
], | ||
|
||
tailwindFunctions: ["classList"], | ||
tailwindFunctions: ["classList"], | ||
|
||
importOrder: ["<THIRD_PARTY_MODULES>", "", "^[~/]", "", "^[./]"], | ||
importOrder: ["<THIRD_PARTY_MODULES>", "", "^[~/]", "", "^[./]"] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters