Skip to content

Commit d89dcd4

Browse files
authored
Merge pull request #105 from vladmu/feature/#2-SDL-0234-Proxy-Library-RPC-Generation
#2 [SDL-0234] Proxy Library RPC Generation
2 parents 04515a5 + f03db6d commit d89dcd4

396 files changed

Lines changed: 77673 additions & 9075 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"curly": [ "error" ],
4141
"dot-notation": [ "error" ],
4242
"eqeqeq": [ "error" ],
43-
"id-length": [ "error" ],
43+
"id-length": [ "error", { "exceptions": ["x", "y", "c"] } ],
4444
"indent": [
4545
"error",
4646
4,
@@ -53,7 +53,7 @@
5353
"error",
5454
"unix"
5555
],
56-
"new-cap": [ "error", {
56+
"new-cap": [ "error", {
5757
"newIsCapExceptions": ["tClass"]
5858
}],
5959
"no-case-declarations": [ "error" ],

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
**/node_modules/
22
*.log
3-
.env
3+
.*env*
4+
.idea
5+
*__pycache__
6+
.DS_Store
7+
*htmlcov
8+
*.coverage
9+
*.pytest_cache

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "lib/rpc_spec"]
2+
path = lib/rpc_spec
3+
url = https://github.com/smartdevicelink/rpc_spec.git
4+
branch = master

examples/js/hello-sdl/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
}
9090

9191
async _onHmiStatusListener (onHmiStatus) {
92-
const hmiLevel = onHmiStatus.getHMILevel();
92+
const hmiLevel = onHmiStatus.getHmiLevel();
9393

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

examples/node/hello-sdl/AppClient.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class AppClient {
9292
}
9393

9494
async _onHmiStatusListener (onHmiStatus) {
95-
const hmiLevel = onHmiStatus.getHMILevel();
95+
const hmiLevel = onHmiStatus.getHmiLevel();
9696

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

0 commit comments

Comments
 (0)