Skip to content

Commit

Permalink
Merge pull request #105 from vladmu/feature/#2-SDL-0234-Proxy-Library…
Browse files Browse the repository at this point in the history
…-RPC-Generation

#2 [SDL-0234] Proxy Library RPC Generation
  • Loading branch information
crokita committed Jan 31, 2020
2 parents 04515a5 + f03db6d commit d89dcd4
Show file tree
Hide file tree
Showing 396 changed files with 77,673 additions and 9,075 deletions.
4 changes: 2 additions & 2 deletions .eslintrc
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
@@ -1,3 +1,9 @@
**/node_modules/
*.log
.env
.*env*
.idea
*__pycache__
.DS_Store
*htmlcov
*.coverage
*.pytest_cache
4 changes: 4 additions & 0 deletions .gitmodules
@@ -0,0 +1,4 @@
[submodule "lib/rpc_spec"]
path = lib/rpc_spec
url = https://github.com/smartdevicelink/rpc_spec.git
branch = master
2 changes: 1 addition & 1 deletion examples/js/hello-sdl/index.html
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
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

0 comments on commit d89dcd4

Please sign in to comment.