-
Notifications
You must be signed in to change notification settings - Fork 1
Electron #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Electron #17
Changes from all commits
ab3896d
3cd79ba
89e9609
e027a1f
4b5f988
3d82721
8e89de5
40dae27
13d9cd7
1e9dc06
e06a87b
e3a31cc
57c03bb
ab598b9
31edec2
ca9ff16
3948d35
3653479
6672222
f48cb38
465d4fd
eb166b2
ef6fb63
d030722
9f80088
c2be417
a94b714
0900f96
508e361
c2e58a1
3c6868f
46e5382
a345d98
0e4f106
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| root = true | ||
|
|
||
| [*] | ||
| charset = utf-8 | ||
| end_of_line = lf | ||
| indent_size = 2 | ||
| indent_style = space | ||
| insert_final_newline = true |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| /.yarn/** linguist-vendored | ||
| /.yarn/releases/* binary | ||
| /.yarn/plugins/**/* binary | ||
| /.pnp.* binary linguist-generated |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,16 @@ | ||
| node_modules | ||
| workbench | ||
| *.log | ||
| # Xcode | ||
| # OSX | ||
| # | ||
| .DS_Store | ||
|
|
||
| # XDE | ||
| .expo/ | ||
|
|
||
| # VSCode | ||
| .vscode/ | ||
| jsconfig.json | ||
|
|
||
| # Xcode | ||
| # | ||
| build/ | ||
| *.pbxuser | ||
| !default.pbxuser | ||
|
|
@@ -12,18 +20,77 @@ build/ | |
| !default.mode2v3 | ||
| *.perspectivev3 | ||
| !default.perspectivev3 | ||
| *.xcworkspace | ||
| !default.xcworkspace | ||
| xcuserdata | ||
| profile | ||
| *.xccheckout | ||
| *.moved-aside | ||
| DerivedData | ||
| .idea/ | ||
| # Pods - for those of you who use CocoaPods | ||
| Pods | ||
| update-test.sh | ||
| .vscode/ | ||
| android/.gradle/* | ||
| android/gradle/* | ||
| android/*.iml | ||
| android/local.properties | ||
| *.hmap | ||
| *.ipa | ||
| *.xcuserstate | ||
| project.xcworkspace | ||
| **/.xcode.env.local | ||
|
|
||
| # Android/IJ | ||
| # | ||
| .classpath | ||
| .cxx | ||
| .gradle | ||
| .idea | ||
| .project | ||
| .settings | ||
| local.properties | ||
| android.iml | ||
|
|
||
| # Cocoapods | ||
| # | ||
| example/ios/Pods | ||
|
|
||
| # Ruby | ||
| example/vendor/ | ||
|
|
||
| # node.js | ||
| # | ||
| node_modules/ | ||
| npm-debug.log | ||
| yarn-debug.log | ||
| yarn-error.log | ||
|
|
||
| # BUCK | ||
| buck-out/ | ||
| \.buckd/ | ||
| android/app/libs | ||
| android/keystores/debug.keystore | ||
|
|
||
| # Yarn | ||
| .yarn/* | ||
| !.yarn/patches | ||
| !.yarn/plugins | ||
| !.yarn/releases | ||
| !.yarn/sdks | ||
| !.yarn/versions | ||
|
|
||
| # Expo | ||
| .expo/ | ||
|
|
||
| # Turborepo | ||
| .turbo/ | ||
|
|
||
| # generated by bob | ||
| lib/ | ||
|
|
||
| # React Native Codegen | ||
| ios/generated | ||
| android/generated | ||
|
|
||
| # React Native Nitro Modules | ||
| nitrogen/ | ||
|
|
||
| .yarn/* | ||
| !.yarn/cache | ||
| !.yarn/patches | ||
| !.yarn/plugins | ||
| !.yarn/releases | ||
| !.yarn/sdks | ||
| !.yarn/versions | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Duplicate Yarn ignore patterns with inconsistent negationsThe Additional Locations (1) |
||
| .pnp.cjs | ||
| .pnp.loader.mjs | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # Use the default npm registry for everything except @axsy-dev | ||
| @axsy-dev:registry=https://npm.pkg.github.com | ||
| legacy-peer-deps=true |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| lts/* |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| eslint.config.mjs | ||
| README.md | ||
| lib | ||
| .yarn | ||
| *.md |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| { | ||
| "printWidth": 80, | ||
| "tabWidth": 2, | ||
| "useTabs": false, | ||
| "semi": true, | ||
| "singleQuote": false, | ||
| "trailingComma": "none", | ||
| "bracketSpacing": true, | ||
| "arrowParens": "avoid", | ||
| "endOfLine": "lf", | ||
| "overrides": [ | ||
| { | ||
| "files": ["*.ts", "*.tsx"], | ||
| "options": { "parser": "typescript" } | ||
| }, | ||
| { | ||
| "files": ["*.js"], | ||
| "options": { "parser": "flow" } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Flow parser configured but Flow removedPrettier is configured to use the Flow parser for |
||
| } | ||
| ] | ||
| } | ||
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| nodeLinker: node-modules | ||
| nmHoistingLimits: workspaces | ||
|
|
||
| yarnPath: .yarn/releases/yarn-4.10.3.cjs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Incorrect backslash escape in buckd ignore pattern
The pattern
\.buckd/uses a backslash to escape the dot, but dots aren't special characters in gitignore syntax. This causes Git to match a directory literally named\.buckd/(including the backslash character) rather than the intended.buckd/directory, preventing the Buck daemon directory from being properly ignored.