-
Notifications
You must be signed in to change notification settings - Fork 414
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
Fix Electron linting errors #929
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
80b00fc
add brew update
7068eba
Clean .gitignore
a212b8d
Setup productName and comply package name with npm/yarn rules
8b37ec6
Comply naming with Airbnb guide
094c3b8
Merge branch 'master' into issue/397
aeb43ff
Replace keytar with keytar-prebuild for resolving https://github.com/…
d39bd9d
Upgrade Electron version
33d5834
Fix Electron linting errors (https://github.com/lbryio/lbry-app/issue…
e4dd7f8
Merge branch 'master' into issue/397
IGassmann 9d7f3f3
Add necessary deployment .gitignore rules
9f1d597
Move brew update to correct place
8947f9a
Merge branch 'issue/397' of https://github.com/lbryio/lbry-app into i…
0edf895
Add dependencies installation instructions for build script
6a3a3b6
Rename app as LBRY
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,9 @@ | ||
/node_modules | ||
/LBRY-darwin-x64 | ||
/dist | ||
|
||
/src/main/dist | ||
/src/main/locales | ||
/src/main/node_modules | ||
/src/renderer/dist | ||
/build/venv | ||
/build/daemon.ver | ||
/lbry-app-venv | ||
/lbry-app | ||
/lbry-venv | ||
/build/venv | ||
*.pyc | ||
/static/daemon/lbrynet* | ||
/static/locales | ||
/daemon/build | ||
/daemon/venv | ||
/daemon/requirements.txt | ||
/.idea | ||
|
||
*.pyc | ||
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. this has to be here while upload_assets.py is still in use. if you want to rewrite that in JS instead, then we can drop python dependency completely, which would be sweet! |
||
*.iml | ||
.#* | ||
|
||
build/daemon.zip | ||
.vimrc | ||
|
||
package-lock.json | ||
|
||
.DS_Store |
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,5 +1,6 @@ | ||
{ | ||
"appId": "io.lbry.LBRY", | ||
"productName": "LBRY", | ||
"mac": { | ||
"category": "public.app-category.entertainment" | ||
}, | ||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
i believe build/venv is still used (by build.sh)