Skip to content

Commit

Permalink
=> 로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnaJinK committed Aug 30, 2023
1 parent 8dab1e7 commit b4c1608
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/modules/robotry_parodule.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class Parodule extends BaseModule {
let self = this;

Check warning on line 106 in app/modules/robotry_parodule.js

View workflow job for this annotation

GitHub Actions / runner / eslint

[eslint] reported by reviewdog 🐶 'self' is never reassigned. Use 'const' instead. Raw Output: {"ruleId":"prefer-const","severity":1,"message":"'self' is never reassigned. Use 'const' instead.","line":106,"column":13,"nodeType":"Identifier","messageId":"useConst","endLine":106,"endColumn":17,"fix":{"range":[2892,2895],"text":"const"}}
let datas = this.getDataByBuffer(data);

Check warning on line 107 in app/modules/robotry_parodule.js

View workflow job for this annotation

GitHub Actions / runner / eslint

[eslint] reported by reviewdog 🐶 'datas' is never reassigned. Use 'const' instead. Raw Output: {"ruleId":"prefer-const","severity":1,"message":"'datas' is never reassigned. Use 'const' instead.","line":107,"column":13,"nodeType":"Identifier","messageId":"useConst","endLine":107,"endColumn":18,"fix":{"range":[2917,2920],"text":"const"}}
// 데이터 처리 로직
datas.forEach(function (data) {
datas.forEach((data) => {
// 센서 데이터만 걸러냄
if (data.length < 6) {
return;
Expand Down

0 comments on commit b4c1608

Please sign in to comment.