Skip to content
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

#2 [SDL-0234] Proxy Library RPC Generation #105

Merged
merged 20 commits into from
Jan 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"curly": [ "error" ],
"dot-notation": [ "error" ],
"eqeqeq": [ "error" ],
"id-length": [ "error" ],
"id-length": [ "error", { "exceptions": ["x", "y", "c"] } ],
"indent": [
"error",
4,
Expand All @@ -53,7 +53,7 @@
"error",
"unix"
],
"new-cap": [ "error", {
"new-cap": [ "error", {
"newIsCapExceptions": ["tClass"]
}],
"no-case-declarations": [ "error" ],
Expand Down
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
**/node_modules/
*.log
.env
.*env*
.idea
*__pycache__
.DS_Store
*htmlcov
*.coverage
*.pytest_cache
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "lib/rpc_spec"]
path = lib/rpc_spec
url = https://github.com/smartdevicelink/rpc_spec.git
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@crokita you pointed the submodule to the correct repository, but please take into account the master branch of rpc_spec doesn't contain the parser code yet. The corresponding PR is not merged yet. It would be good if you notify @JackLivio in answer to this comment that JS generator passed your checks and rpc_spec could be merged too.

branch = master
2 changes: 1 addition & 1 deletion examples/js/hello-sdl/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
}

async _onHmiStatusListener (onHmiStatus) {
const hmiLevel = onHmiStatus.getHMILevel();
const hmiLevel = onHmiStatus.getHmiLevel();

// wait for the FULL state for more functionality
if (hmiLevel === SDL.rpc.enums.HMILevel.HMI_FULL) {
Expand Down
2 changes: 1 addition & 1 deletion examples/node/hello-sdl/AppClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ class AppClient {
}

async _onHmiStatusListener (onHmiStatus) {
const hmiLevel = onHmiStatus.getHMILevel();
const hmiLevel = onHmiStatus.getHmiLevel();

// wait for the FULL state for more functionality
if (hmiLevel === SDL.rpc.enums.HMILevel.HMI_FULL) {
Expand Down
Loading