forked from brave/brave-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: explicitly set remaining prettier options (brave#20597)
* chore: explicitly set remaining prettier options * chore: apply prettier formatting to Brave Wallet * chore: reduce long lines in Brave Wallet
- Loading branch information
1 parent
8771908
commit b2a19a6
Showing
748 changed files
with
22,526 additions
and
19,053 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 |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# Ignored files identified within .gitignore: | ||
/vendor/* | ||
/components/brave_new_tab_ui/data/LICENSE | ||
/components/brave_webtorrent/extension/out/ | ||
/components/brave_rewards/resources/extension/brave_rewards/out/ | ||
/components/third_party/adblock/LICENSE | ||
/components/third_party/local_data/LICENSE | ||
/dist/ | ||
/out/ | ||
node_modules/ | ||
/third_party/ | ||
.vs/ | ||
.vscode/ | ||
.npmrc | ||
.env | ||
cmake-build-debug/ | ||
coverage/ | ||
/build/rustup/ | ||
venv/ | ||
.storybook-out | ||
|
||
# Ignore version control files | ||
**/.git | ||
**/.svn | ||
**/.hg | ||
|
||
# Ignore node_modules | ||
**/node_modules | ||
|
||
|
||
# Ignore HTML Files - incompatable with presubmit rules | ||
*.html | ||
|
||
# Ignore non-component top level folders (remove to opt-in): | ||
/android | ||
/app | ||
/base | ||
/brave_domains | ||
/browser | ||
/build | ||
/chromium_src | ||
/common | ||
/content | ||
/coverage | ||
/docs | ||
/extensions | ||
/fuzzers | ||
/installer | ||
/ios | ||
/mojo | ||
/mojo/brave_ast_patcher | ||
/net | ||
/node_modules | ||
/patches | ||
/renderer | ||
/resources | ||
/sandbox | ||
/script | ||
/services | ||
/test | ||
/third_party | ||
/tools | ||
/ui | ||
/utility | ||
/v8 | ||
/vector_icons | ||
/vendor | ||
/win_build_output | ||
|
||
# Ignore github .yml files: | ||
.github/**/*.yml | ||
|
||
# Ignored markdown files: | ||
.github/PULL_REQUEST_TEMPLATE.md | ||
CONTRIBUTING.md | ||
README.md | ||
|
||
# Ignored top-level files: | ||
.clang-tidy | ||
chromium_presubmit_config.json5 | ||
|
||
# Ignored minified javascript | ||
components/brave_wallet/resources/solana_web3_script.js |
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,9 +1,7 @@ | ||
{ | ||
"presets": [ | ||
"@babel/preset-react" | ||
], | ||
"presets": ["@babel/preset-react"], | ||
"plugins": [ | ||
"@babel/plugin-proposal-object-rest-spread", | ||
"@babel/plugin-syntax-dynamic-import" | ||
] | ||
} | ||
} |
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,2 +1,4 @@ | ||
export function addWebUIListener(eventName: string, handler: Function) {} | ||
export function sendWithPromise(message: string, ...args: any[]): Promise<any> { return new Promise(resolve => console.log('sendWithPromise', message, args)) } | ||
export function sendWithPromise(message: string, ...args: any[]): Promise<any> { | ||
return new Promise((resolve) => console.log('sendWithPromise', message, args)) | ||
} |
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
Oops, something went wrong.