Skip to content
This repository was archived by the owner on Nov 20, 2023. It is now read-only.

Commit 773252a

Browse files
committed
follow google javascript style
1 parent 3c936ef commit 773252a

File tree

11 files changed

+386
-337
lines changed

11 files changed

+386
-337
lines changed

.eslintrc.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
"ecmaVersion": "latest"
1111
},
1212
"rules": {
13-
"linebreak-style": ["error", "windows"]
13+
"linebreak-style": ["error", "windows"],
14+
"no-unused-vars": "off",
15+
"prefer-const": "off"
1416
}
1517
}

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# Path-Gen
2+
23
Path generator for robotics applications

index.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ body {
1111
display: flex;
1212
flex-wrap: wrap;
1313
padding-left: 0;
14-
padding-top: 50px;
14+
padding-top: 49px;
1515
}
1616

1717
.sliderContainer input {

index.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@
9999
<output class="text" id="rGVal">0</output>
100100
<label for="rG" class="text">Right G</label>
101101
</div>
102+
103+
<div class="modeContainer">
104+
<button type="button" id="modeBtn">mode</button>
105+
</div>
102106

103107
<script src="scripts/point.js"></script>
104108
<script src="scripts/userInput.js"></script>

package-lock.json

Lines changed: 37 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"homepage": "https://github.com/SizzinSeal/Path-Gen#readme",
2222
"devDependencies": {
23-
"eslint": "^8.23.0",
23+
"eslint": "^8.24.0",
2424
"eslint-config-google": "^0.14.0"
2525
}
2626
}

0 commit comments

Comments
 (0)