Skip to content

Commit

Permalink
index.js: Drop inline index number comments on errors table.
Browse files Browse the repository at this point in the history
```
     Error: Code did not pass lint rulesindex.js: line 38, col 5, Error - Expected space or tab after '/*' in comment. (spaced-comment)
index.js: line 39, col 5, Error - Expected space or tab after '/*' in comment. (spaced-comment)
index.js: line 40, col 5, Error - Expected space or tab after '/*' in comment. (spaced-comment)
index.js: line 41, col 5, Error - Expected space or tab after '/*' in comment. (spaced-comment)
index.js: line 42, col 5, Error - Expected space or tab after '/*' in comment. (spaced-comment)
index.js: line 43, col 5, Error - Expected space or tab after '/*' in comment. (spaced-comment)
index.js: line 44, col 5, Error - Expected space or tab after '/*' in comment. (spaced-comment)
index.js: line 45, col 5, Error - Expected space or tab after '/*' in comment. (spaced-comment)
index.js: line 46, col 5, Error - Expected space or tab after '/*' in comment. (spaced-comment)
index.js: line 47, col 5, Error - Expected space or tab after '/*' in comment. (spaced-comment)
index.js: line 48, col 5, Error - Expected space or tab after '/*' in comment. (spaced-comment)
index.js: line 49, col 5, Error - Expected space or tab after '/*' in comment. (spaced-comment)

12 problems
      at Context.<anonymous> (node_modules/mocha-eslint/index.js:38:15)
      at processImmediate (node:internal/timers:466:21)
```

Sorry @SamuelToh, those comments have got to go:
  • Loading branch information
sjlongland committed Feb 8, 2024
1 parent 0748a09 commit 129e698
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,18 @@ const TRANSACTION_TIMED_OUT_MESSAGE = "Timed out";
const TRANSACTION_TIMED_OUT_ERRNO = "ETIMEDOUT";

const modbusErrorMessages = [
/*code 0=*/"Unknown error",
/*code 1=*/"Illegal function (device does not support this read/write function)",
/*code 2=*/"Illegal data address (register not supported by device)",
/*code 3=*/"Illegal data value (value cannot be written to this register)",
/*code 4=*/"Slave device failure (device reports internal error)",
/*code 5=*/"Acknowledge (requested data will be available later)",
/*code 6=*/"Slave device busy (retry request again later)",
/*code 7=*/"Negative acknowledge (slave device cannot perform programming functions)",
/*code 8=*/"Memory parity error (slave device detected a parity error in memory)",
/*code 9=*/"Unknown error",
/*code10=*/"Gateway path unavailable (misconfigured gateway)",
/*code11=*/"Gateway target device failed to respond (retry request again later)"
"Unknown error",
"Illegal function (device does not support this read/write function)",
"Illegal data address (register not supported by device)",
"Illegal data value (value cannot be written to this register)",
"Slave device failure (device reports internal error)",
"Acknowledge (requested data will be available later)",
"Slave device busy (retry request again later)",
"Negative acknowledge (slave device cannot perform programming functions)",
"Memory parity error (slave device detected a parity error in memory)",
"Unknown error",
"Gateway path unavailable (misconfigured gateway)",
"Gateway target device failed to respond (retry request again later)"
];

const PortNotOpenError = function() {
Expand Down

0 comments on commit 129e698

Please sign in to comment.