diff --git a/eslint.config.js b/eslint.config.js index e64ccc5a..64ffeb03 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,12 +1,139 @@ +import js from "@eslint/js"; import globals from "globals"; -import pluginJs from "@eslint/js"; -import tseslint from "typescript-eslint"; - -/** @type {import('eslint').Linter.Config[]} */ export default [ - {files: ["**/*.{js,mjs,cjs,ts}"]}, - {languageOptions: { globals: globals.browser }}, - pluginJs.configs.recommended, - ...tseslint.configs.recommended, -]; \ No newline at end of file + js.configs.recommended, + + { + // Global ignores + ignores: [ + "**/*.min.js", + "**/src/lib/**", + "**/dist/", + "src/backend/src/public/assets/**", + "incubator/**" + ], + }, + { + // Top-level and tools use Node + files: [ + "tools/**/*.js", + ], + languageOptions: { + globals: { + ...globals.node, + } + } + }, + { + // Back end + files: [ + "src/backend/**/*.js", + "mods/**/*.js", + "dev-server.js", + "utils.js", + ], + languageOptions: { + globals: { + ...globals.node, + "kv": true, + "def": true, + "use": true, + "ll":true, + } + } + }, + { + // Front end + files: [ + "src/**/*.js", + ], + ignores: [ + "src/backend/**/*.js", + ], + languageOptions: { + globals: { + ...globals.browser, + ...globals.commonjs, + // Weird false positives + "Buffer": true, + // Puter Common + "puter": true, + "i18n": true, + "html_encode": true, + "html_decode": true, + "isMobile": true, + // Class Registry + "logger": true, + "def": true, + "use": true, + // Libraries + "saveAs": true, // FileSaver + "iro": true, // iro.js color picker + "$": true, // jQuery + "jQuery": true, // jQuery + "fflate": true, // fflate + "_": true, // lodash + "QRCode": true, // qrcode + "io": true, // socket.io + "timeago": true, // timeago + "SelectionArea": true, // viselect + // Puter GUI Globals + "set_menu_item_prop": true, + "determine_active_container_parent": true, + "privacy_aware_path": true, + "api_origin": true, + "auth_token": true, + "logout": true, + "is_email": true, + "select_ctxmenu_item": true, + } + } + }, + { + // Mods + // NOTE: Mods have backend and frontend parts, so this just includes the globals for both. + files: [ + "mods/**/*.js", + ], + languageOptions: { + globals: { + ...globals.node, + "use": true, + "window": true, + "puter": true, + } + } + }, + { + // Tests + files: [ + "**/test/**/*.js", + ], + languageOptions: { + globals: { + ...globals.mocha, + } + } + }, + { + // Phoenix + files: [ + "src/phoenix/**/*.js", + ], + languageOptions: { + globals: { + ...globals.node, + } + } + }, + { + // Global rule settings + rules: { + "no-prototype-builtins": "off", // Complains about any use of hasOwnProperty() + "no-unused-vars": "off", // Temporary, we just have a lot of these + "no-debugger": "warn", + "no-async-promise-executor": "off", // We do this quite often and it's fine + } + }, +]; diff --git a/output.txt b/output.txt deleted file mode 100644 index 9074cfcc..00000000 --- a/output.txt +++ /dev/null @@ -1,31908 +0,0 @@ - -> puter.com@2.4.1 lint -> eslint . - - -/Users/emilyzhu/Documents/GitHub/puter/experiments/js-parse-and-output/test.js - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:7 error 'generate' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:19 error 'require' is not defined no-undef - 23:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:12 error 'require' is not defined no-undef - 25:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:16 error 'require' is not defined no-undef - 40:13 error 'code' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/experiments/x86emu/www/js/Instance.mjs - 94:19 error 'Terminal' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/experiments/x86emu/www/js/InstanceManager.mjs - 115:4 error 'source' is not defined no-undef - 118:4 error 'destination' is not defined no-undef - 128:29 error 'timeout' is assigned a value but never used @typescript-eslint/no-unused-vars - 143:4 error 'destroyInstance' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/experiments/x86emu/www/main.js - 20:0 error Parsing error: '#!' can only be used at the start of a file - -/Users/emilyzhu/Documents/GitHub/puter/experiments/x86emu/www/third-party/libv86.js - 19:165 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:224 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 20:25 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 20:64 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 20:337 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 22:152 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 25:50 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 25:304 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 25:384 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 25:457 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 26:132 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 26:133 error Expected a conditional expression and instead saw an assignment no-cond-assign - 27:391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 28:60 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 31:78 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 34:69 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 34:241 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 43:201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 45:234 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 45:256 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 45:277 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 45:298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 45:354 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 45:410 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 45:466 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 45:491 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 46:7 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 46:319 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 46:381 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 47:242 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 53:496 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 55:85 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 55:299 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 57:47 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 57:74 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 57:102 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 57:201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 57:229 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 57:258 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 58:242 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 59:270 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 61:67 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 61:107 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 61:168 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 61:365 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 62:60 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 62:234 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 63:56 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 63:223 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 63:393 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 66:283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 66:547 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 67:64 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 67:324 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 67:391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 69:33 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 69:65 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 69:69 error 'global' is not defined no-undef - 69:343 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 70:249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 70:309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 71:228 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 71:228 error 'require' is not defined no-undef - 71:320 error 'process' is not defined no-undef - 71:352 error 'process' is not defined no-undef - 73:192 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 73:192 error 'require' is not defined no-undef - 74:47 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 74:201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 74:353 error Expected a conditional expression and instead saw an assignment no-cond-assign - 75:80 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 76:31 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 77:64 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 77:158 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 78:22 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 79:321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 79:494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 80:87 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 80:267 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 80:381 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 80:489 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 81:65 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 81:65 error 'require' is not defined no-undef - 81:79 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 81:144 error 'Buffer' is not defined no-undef - 81:212 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 81:341 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 82:455 error Unnecessary escape character: \. no-useless-escape - 82:601 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 83:280 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 85:116 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 86:95 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 86:262 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 87:111 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 87:317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 88:18 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 88:272 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 88:482 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 89:150 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 89:250 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 90:248 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 90:249 error Expected a conditional expression and instead saw an assignment no-cond-assign - 90:422 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 91:110 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 92:435 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 93:211 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 93:321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 94:423 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 94:487 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 95:106 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 95:106 error 'require' is not defined no-undef - 95:135 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 95:245 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 95:246 error Expected a conditional expression and instead saw an assignment no-cond-assign - 95:554 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 103:344 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 107:33 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 109:210 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 112:175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 114:358 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 114:478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 116:448 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 116:486 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 119:482 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 120:280 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 121:466 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 122:367 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 122:466 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 123:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 124:396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 124:411 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 124:422 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 125:319 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 126:230 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 128:215 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:253 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 130:181 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 130:374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 131:78 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 132:79 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 132:210 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 132:257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 132:422 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 133:240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:57 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 136:279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 137:242 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 138:323 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 139:226 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 140:159 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 141:326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 143:289 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 147:47 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 149:122 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:151 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 155:487 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 158:259 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 159:234 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 160:266 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:198 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 163:115 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 163:164 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 163:426 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 163:448 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 164:876 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 168:116 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 171:47 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 171:97 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 171:391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 172:91 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 174:228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 175:70 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 176:160 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 177:38 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 178:442 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 179:331 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 180:37 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 195:127 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 196:188 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 196:235 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 196:456 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 197:69 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 197:225 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 197:289 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 197:417 error Expected a conditional expression and instead saw an assignment no-cond-assign - 198:63 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 201:44 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 202:194 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 203:199 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 204:152 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 204:411 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 205:70 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 212:364 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 214:246 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 219:186 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 222:192 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 222:320 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 225:222 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 226:244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 228:14 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 228:173 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 228:213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 228:244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 228:275 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 228:307 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 230:213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 231:193 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 231:351 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 232:142 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 233:40 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 233:218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 233:373 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 233:418 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 234:42 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 234:87 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 234:421 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 237:49 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 237:125 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 237:151 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 240:285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 240:500 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 242:38 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 242:212 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 242:321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 243:303 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 244:123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 245:79 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 245:277 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 246:57 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 246:178 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 246:276 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 246:375 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 246:475 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 247:41 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 249:334 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 249:466 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 252:201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 252:272 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 254:328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 254:379 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 255:61 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 257:75 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 257:190 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 257:457 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 258:143 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 258:461 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 259:190 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 259:378 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 260:226 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 260:386 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 261:20 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 261:205 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 261:344 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 262:42 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 265:63 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 266:96 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 266:171 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 266:248 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 266:454 error Unexpected lexical declaration in case block no-case-declarations - 266:490 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 267:103 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 267:181 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 267:418 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 270:366 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 271:314 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 273:227 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 273:473 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 276:198 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 276:477 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 277:187 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 284:34 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 284:225 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 284:396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 285:39 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 285:286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 286:46 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 287:201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 289:146 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 289:350 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 290:45 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 290:77 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 291:73 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 291:186 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 291:453 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 292:86 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 292:195 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 292:261 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 292:336 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 292:428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 293:72 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 293:174 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 293:304 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 295:405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 296:81 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 302:98 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 302:449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 303:37 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 303:185 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 306:198 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 307:80 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 307:711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 309:394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 310:138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 310:189 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 310:448 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 310:484 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 314:40 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 315:158 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 315:262 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 319:92 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 320:61 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 325:167 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 326:156 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 327:257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 328:191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 329:187 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 330:62 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 335:45 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 335:214 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 336:249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:58 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 339:119 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 339:316 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 341:107 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 346:191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 347:154 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 347:294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 348:282 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 348:490 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 352:150 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 354:134 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 354:394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 355:222 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 355:346 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 355:437 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 356:127 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 356:349 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 357:73 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 357:307 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 357:427 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 358:210 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 358:453 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 359:182 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 359:429 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 360:152 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 362:269 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 363:112 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 363:337 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 363:402 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 364:68 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 364:307 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 364:375 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 364:440 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 366:346 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 367:125 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 382:88 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 383:229 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 384:85 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 384:400 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 385:150 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 386:44 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 387:39 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 387:161 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 388:37 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 388:367 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 389:58 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 389:241 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 389:307 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 397:187 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 397:302 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 400:451 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 401:18 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 401:81 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 404:353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 404:371 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 404:389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 404:407 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 405:218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 405:249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 405:280 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 405:311 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 405:344 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 405:377 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 406:73 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 407:23 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 409:67 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 409:344 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 410:39 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 411:200 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 412:321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 412:413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 414:90 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 415:50 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 417:127 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 417:475 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 417:495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 418:56 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 419:2 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 419:331 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 420:127 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 420:361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 421:72 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 426:301 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 429:329 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 430:404 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 431:49 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 431:310 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 437:173 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 441:471 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 442:3 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 442:190 error Unexpected constant condition no-constant-condition - 443:238 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 444:244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 444:663 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 446:286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 447:273 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 447:439 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 450:391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 450:519 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 457:273 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 462:247 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 468:60 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 469:404 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 469:469 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 470:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 470:55 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 470:107 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 470:159 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 470:211 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 470:265 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 470:317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 470:369 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 470:425 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 470:477 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 471:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 471:53 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 471:105 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 471:183 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 471:237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 471:293 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 471:349 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 471:405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 471:499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 474:200 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 474:290 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 475:289 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 475:344 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 476:39 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 477:107 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 477:147 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 477:405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 480:8 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 481:246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 483:226 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 483:428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 484:354 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 485:167 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 487:358 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 488:251 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 489:53 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 489:477 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 491:156 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 491:344 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 492:62 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 494:257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 495:131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 495:281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 495:397 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 496:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 496:92 error 'module' is not defined no-undef - 496:107 error 'module' is not defined no-undef - 496:214 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 497:70 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 497:70 error 'require' is not defined no-undef - 497:366 error 'l' is defined but never used @typescript-eslint/no-unused-vars - 498:1 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 498:1 error 'require' is not defined no-undef - 498:474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 500:46 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 501:70 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 502:112 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 502:168 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 502:269 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 502:321 error Expected a conditional expression and instead saw an assignment no-cond-assign - 503:209 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 503:248 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 503:267 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 503:350 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 508:254 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 508:431 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 509:214 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 509:575 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 509:679 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 509:801 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 510:368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 510:487 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 510:515 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 511:25 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 511:191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 511:290 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 512:99 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 512:471 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 513:514 error 'webkitAudioContext' is not defined no-undef - 514:229 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 514:300 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 518:273 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 519:463 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 520:68 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 520:135 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 524:177 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 525:453 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 529:196 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 530:370 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 530:499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 531:335 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 532:205 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 532:340 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 535:343 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 536:32 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 536:170 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 539:295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 539:326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 540:231 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 540:402 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 540:538 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 540:626 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 540:871 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 540:898 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 541:492 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 542:173 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 542:480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 543:49 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 544:452 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 544:786 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 545:199 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 546:149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 547:31 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 547:294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 550:94 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 550:253 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 550:313 error '__dirname' is not defined no-undef - 550:331 error '__dirname' is not defined no-undef - 550:502 error 'p' is defined but never used @typescript-eslint/no-unused-vars - 554:39 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 554:141 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 554:216 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 556:49 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 556:214 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 556:275 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 556:349 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 556:479 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 557:38 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 557:132 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 557:380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 558:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 558:395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 559:32 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 559:116 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 559:262 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 559:455 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 562:462 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 564:177 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 565:315 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 565:331 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 565:347 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 566:146 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 567:75 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 567:130 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 567:183 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 567:232 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 567:283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 567:334 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 572:333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 573:225 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 573:344 error 'c' is defined but never used @typescript-eslint/no-unused-vars - 573:346 error Empty block statement no-empty - 574:131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 574:252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 574:352 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 577:59 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 577:152 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 577:252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 578:352 error Expected a conditional expression and instead saw an assignment no-cond-assign - 579:281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 580:197 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 581:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 581:114 error 'module' is not defined no-undef - 581:130 error 'module' is not defined no-undef - 581:158 error 'module' is not defined no-undef - 581:538 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 581:648 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 582:224 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 582:407 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 583:91 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 584:136 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 587:221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 587:333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 588:61 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 588:222 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 588:450 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 589:21 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 589:71 error 'module' is not defined no-undef - 589:88 error 'module' is not defined no-undef - 589:202 error Expected a conditional expression and instead saw an assignment no-cond-assign - 591:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 591:144 error 'module' is not defined no-undef - 591:160 error 'module' is not defined no-undef - 591:196 error 'module' is not defined no-undef - 591:712 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 592:179 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 592:370 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 593:58 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 593:166 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 594:288 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 595:189 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 596:291 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 597:143 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 598:39 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 601:155 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 603:183 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 603:259 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 603:417 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 605:228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 611:133 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 611:327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 611:375 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 613:75 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 613:382 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 614:86 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 615:120 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 615:210 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 615:339 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 617:108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 617:471 error 'a' is assigned a value but never used @typescript-eslint/no-unused-vars - 618:323 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 620:297 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 621:65 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 622:247 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 623:148 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 624:73 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 624:119 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 625:328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 626:238 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 627:120 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 627:246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 627:374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 627:466 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 628:283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 630:394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 633:237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 639:491 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 640:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 640:175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 640:370 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 640:454 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 641:377 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 643:69 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/experiments/x86emu/www/third-party/starter.js - 117:40 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 119:17 error 'Bus' is not defined no-undef - 120:11 error 'adapter_bus' is assigned a value but never used @typescript-eslint/no-unused-vars - 126:77 error 'WASM_TABLE_SIZE' is not defined no-undef - 126:95 error 'WASM_TABLE_OFFSET' is not defined no-undef - 132:31 error 'dbg_assert' is not defined no-undef - 133:22 error 'v86' is not defined no-undef - 134:45 error 'v86util' is not defined no-undef - 156:25 error 'v86util' is not defined no-undef - 157:13 error 'dbg_log' is not defined no-undef - 157:26 error 'LOG_CPU' is not defined no-undef - 160:25 error 'v86util' is not defined no-undef - 164:13 error 'dbg_trace' is not defined no-undef - 164:23 error 'LOG_CPU' is not defined no-undef - 183:31 error 'DEBUG' is not defined no-undef - 195:31 error '__dirname' is not defined no-undef - 196:40 error '__dirname' is not defined no-undef - 204:17 error 'v86util' is not defined no-undef - 213:31 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 215:29 error 'v86util' is not defined no-undef - 246:45 error 'v86' is not defined no-undef - 280:23 error 'BOOT_ORDER_FD_FIRST' is not defined no-undef - 281:23 error 'BOOT_ORDER_HD_FIRST' is not defined no-undef - 281:45 error 'BOOT_ORDER_CD_FIRST' is not defined no-undef - 308:36 error 'NetworkAdapter' is not defined no-undef - 317:37 error 'KeyboardAdapter' is not defined no-undef - 321:34 error 'MouseAdapter' is not defined no-undef - 326:35 error 'ScreenAdapter' is not defined no-undef - 330:35 error 'DummyScreenAdapter' is not defined no-undef - 335:35 error 'SerialAdapter' is not defined no-undef - 341:35 error 'SerialAdapterXtermJS' is not defined no-undef - 346:36 error 'SpeakerAdapter' is not defined no-undef - 393:17 error 'dbg_assert' is not defined no-undef - 436:27 error 'v86util' is not defined no-undef - 463:32 error 'MemoryFileStorage' is not defined no-undef - 467:32 error 'ServerFileStorageWrapper' is not defined no-undef - 469:41 error 'FS' is not defined no-undef - 473:13 error 'dbg_assert' is not defined no-undef - 482:13 error 'dbg_assert' is not defined no-undef - 493:9 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 508:42 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 517:13 error 'v86util' is not defined no-undef - 522:25 error 'dbg_assert' is not defined no-undef - 526:81 error 'v86util' is not defined no-undef - 575:17 error 'dbg_log' is not defined no-undef - 582:17 error 'dbg_log' is not defined no-undef - 588:58 error 'v86util' is not defined no-undef - 589:59 error 'v86util' is not defined no-undef - 599:13 error 'dbg_assert' is not defined no-undef - 607:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 640:5 error 'dbg_assert' is not defined no-undef - 724:17 error 'dbg_assert' is not defined no-undef - 808:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 809:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 810:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 811:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 812:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 813:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 869:5 error 'dbg_assert' is not defined no-undef - 881:5 error 'dbg_assert' is not defined no-undef - 921:9 error 'v86util' is not defined no-undef - 924:54 error 'v86util' is not defined no-undef - 930:23 error 'v86util' is not defined no-undef - 1055:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1060:13 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1060:16 error Empty block statement no-empty - 1192:28 error 'MemoryFileStorage' is not defined no-undef - 1196:28 error 'ServerFileStorageWrapper' is not defined no-undef - 1198:23 error 'FS' is not defined no-undef - 1206:21 error 'ENOENT' is not defined no-undef - 1210:26 error 'EEXIST' is not defined no-undef - 1216:13 error 'dbg_assert' is not defined no-undef - 1226:9 error 'dbg_assert' is not defined no-undef - 1245:5 error 'dbg_assert' is not defined no-undef - 1279:5 error 'dbg_assert' is not defined no-undef - 1343:17 error 'dbg_assert' is not defined no-undef - 1358:9 error 'dbg_assert' is not defined no-undef - 1390:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1391:31 error 'SerialAdapterXtermJS' is not defined no-undef - 1425:49 error 'module' is not defined no-undef - 1427:5 error 'module' is not defined no-undef - 1428:5 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/experiments/x86emu/www/third-party/xterm.js - 19:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:69 error 'module' is not defined no-undef - 19:123 error 'define' is not defined no-undef - 19:134 error 'define' is not defined no-undef - 19:203 error 'exports' is not defined no-undef - 19:545 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:708 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:929 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:1508 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:2452 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:3441 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:3581 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:3868 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:3942 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:4326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:4552 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:5219 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:5354 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:5414 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:7525 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:7724 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:8121 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:8726 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:8950 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:9068 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:9342 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:9470 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:9638 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:9724 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:9858 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:10074 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:10128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:10311 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:10633 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:10796 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:11030 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:11585 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:11703 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:11830 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:12493 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:12762 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:12896 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:12987 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:13210 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:13342 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:14033 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:14175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:14441 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:14662 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:14840 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:15262 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:15723 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:16027 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:16676 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:16726 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:17232 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:18086 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:18564 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:18727 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:18875 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:19273 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:19332 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:19545 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:19599 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:19607 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:19740 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:19997 error Empty block statement no-empty - 19:20200 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:20315 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:20401 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:20751 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:21310 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:21516 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:22188 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:24606 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:24794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:24831 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:24868 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:24900 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:24946 error Unexpected lexical declaration in case block no-case-declarations - 19:25416 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:25514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:25608 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:25828 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:25831 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:26058 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:26760 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:26974 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:27061 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:27218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:27446 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:27866 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:27967 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:29234 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:29635 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:32851 error Empty block statement no-empty - 19:32853 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:33313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:34333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:34440 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:34444 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:35531 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:36070 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 19:36240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:36381 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:36431 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:36599 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:37106 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:37137 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:37155 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:37213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:38144 error 'this.coreMouseService.activeProtocol' is assigned to itself no-self-assign - 19:39515 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:39666 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:39809 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:40488 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:41770 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:42952 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:44049 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:44201 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:44203 error 't' is defined but never used @typescript-eslint/no-unused-vars - 19:44206 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:44326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:44617 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:44736 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:44828 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:45077 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:45327 error Unexpected lexical declaration in case block no-case-declarations - 19:45577 error Unexpected lexical declaration in case block no-case-declarations - 19:45886 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:46011 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:46130 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:46206 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:46473 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:46619 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:46702 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:47001 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:47351 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:47514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:47709 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:49179 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:49630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:49829 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:50213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:50414 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:50748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:51010 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:51568 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:52096 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:53160 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:54175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:55645 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:55808 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:56009 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:56533 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:57039 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:57117 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:57215 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:57425 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:57583 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:58309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:58430 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:58554 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:58821 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:59022 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:59260 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:59370 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:59588 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:60408 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:60916 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:61290 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:61453 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:61838 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:62481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:62705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:62933 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:63242 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:63430 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:63479 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:63958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:64325 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:64382 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:64910 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:65269 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:65587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:65650 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:65696 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:65776 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:66159 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:66386 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:66880 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:67043 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:67255 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:67520 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:67730 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:68353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:68437 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:68993 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:69574 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:69960 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:70177 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:70582 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:70951 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:71247 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:71393 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:71542 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:72831 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:72994 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:73368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:74939 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:75512 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:76546 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:76738 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:77007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:77283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:77655 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:79917 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:80404 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:80517 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:80707 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:80874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:81108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:81197 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:81296 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:82826 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:83893 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:83950 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:84961 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:85124 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:85361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:85634 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:85862 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:86132 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:86372 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:86643 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:86703 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:87020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:87821 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:87947 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:88218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:88236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:88330 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:88898 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:88954 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:89082 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:89249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:89431 error Unexpected lexical declaration in case block no-case-declarations - 19:89484 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:89593 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:89695 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:90195 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:91088 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:91193 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:91677 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:91781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:91886 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:92195 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:92278 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:92338 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:92968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:93040 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:93232 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:93359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:93526 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:94303 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:94431 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:94873 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:95796 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:95907 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:96000 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:96280 error Expected getter 'finalSelectionEnd' to always return a value getter-return - 19:97850 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:98013 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:98246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:98713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:98926 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:98999 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:99116 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:99894 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:100709 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:100872 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:101065 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:101304 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:101495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:102330 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:103180 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:103213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:103435 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:103545 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:103706 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:103866 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:104555 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:104953 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:105387 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:105654 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:105814 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:106183 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:106387 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:106523 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:106732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:107078 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:107241 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:107382 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:108433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:108596 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:108867 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:110539 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:111080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:111195 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:111521 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:111668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:112152 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:112220 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:112330 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:112617 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:112881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:112979 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:113097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:113260 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:113630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:114326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:114489 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:114797 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:115775 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:116212 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:117056 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:117186 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:117312 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:117431 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:117672 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:118741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:118837 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:119086 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:119929 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:120225 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:120565 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:120921 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:121356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:121502 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:121624 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:122091 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:122698 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:122830 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:123140 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:124221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:124538 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:124668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:124918 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:125002 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:125203 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:125717 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:125973 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:126206 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:126625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:126838 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:126952 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:126993 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:127160 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:127291 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:127694 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:128028 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:128259 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:129033 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:129196 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:130328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:133248 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:133391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:133872 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:134165 error Empty block statement no-empty - 19:134239 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:134379 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:134951 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:135242 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:135907 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:136308 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:136425 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:136843 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:137054 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:137282 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:137591 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:137641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:138040 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:138891 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:138963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:140384 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:140691 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:141070 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:141284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:142069 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:142783 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:145596 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:145600 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:145833 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:145837 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:146260 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:146492 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:146984 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:147361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:147591 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:147911 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:148240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:148379 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:148793 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:148850 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:149294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:149457 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:150516 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:150529 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:150802 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:153578 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:160620 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:161271 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:161597 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:161775 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:162181 error Expected a conditional expression and instead saw an assignment no-cond-assign - 19:162294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:163063 error Expected a conditional expression and instead saw an assignment no-cond-assign - 19:163310 error Expected a conditional expression and instead saw an assignment no-cond-assign - 19:163421 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:163699 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:164160 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:164449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:165999 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:167898 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:168142 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:168674 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:169044 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:169358 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:171313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:171499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:172470 error Unexpected lexical declaration in case block no-case-declarations - 19:172535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:173555 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:174171 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:175059 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:175449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:176089 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:176584 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:177081 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:177597 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:178480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:178532 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:179590 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:179819 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:179978 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:180245 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:180659 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:181143 error Expected a 'break' statement before 'case' no-fallthrough - 19:181161 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:181767 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:181925 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:182192 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:182847 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:184386 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:184506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:184581 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:184756 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:184913 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:185066 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:185403 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:186752 error Unexpected lexical declaration in case block no-case-declarations - 19:187058 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:188358 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:188522 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:188666 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:188924 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:189119 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:189446 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:190210 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:190441 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:191172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:191617 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:191705 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:191774 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:191847 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:193165 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:193490 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:193624 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:193987 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:194228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:194348 error 't' is defined but never used @typescript-eslint/no-unused-vars - 19:194848 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:194901 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:194992 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:195063 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:195334 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:195514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:195755 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:195923 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:196033 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:196240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:196368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:196498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:196577 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:196748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:197051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:197550 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:197661 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:197730 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:198838 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:198988 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:199024 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:199099 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:199154 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:199283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:199960 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:200230 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:200319 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:200589 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:200721 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:200831 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:202334 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:203721 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:203839 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:204060 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:204130 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:204319 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:204496 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:204559 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:206265 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:206375 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:206878 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:207295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:207467 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:207631 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:207908 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:208125 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:208603 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:208897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:209107 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:209526 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:209974 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:210077 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:210361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:210413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:211031 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:211178 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:211290 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:212045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:212222 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:212394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:212466 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:212542 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:212707 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:212790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:213015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:213466 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:214483 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:214693 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:214867 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:215413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:215759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:216138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:216606 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:216816 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:216942 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:217246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:217290 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:217392 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:217724 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:218361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:218515 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:218675 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:218748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:219084 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:219552 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:219948 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:220098 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:220382 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:220570 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:221030 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:221077 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:221100 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:221173 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:221322 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:221748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:222176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:222448 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:222689 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:222775 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:222862 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:223009 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:223523 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:223784 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:223980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:224187 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:224830 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:224968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:225138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:225325 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:225362 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:226736 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:226827 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:227189 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:227594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:228150 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:228429 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:228546 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:228586 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:228652 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:228748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:228911 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:229074 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:229232 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:229371 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:229647 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:229743 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:230685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:231106 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:231292 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:231359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:231677 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:232038 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:232341 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:232583 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:232663 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:232988 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:233127 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:233142 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:233176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:233423 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:234314 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:236232 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:236926 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:237017 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:237156 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:237705 error Expected a conditional expression and instead saw an assignment no-cond-assign - 19:237783 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:237790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:238237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:238786 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:239188 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:239615 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:240282 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:240390 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:240543 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:240694 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:240788 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:240917 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:240957 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:241186 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:242165 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:242217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:242265 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:242336 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:242428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:242816 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:243367 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:243473 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:245577 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:245852 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:245854 error 't' is defined but never used @typescript-eslint/no-unused-vars - 19:245856 error 'i' is defined but never used @typescript-eslint/no-unused-vars - 19:245886 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:245912 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:245914 error 't' is defined but never used @typescript-eslint/no-unused-vars - 19:245940 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:246169 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:246960 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:247206 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:247436 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:247574 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:247617 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:247854 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:248046 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:248184 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:248227 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:248867 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:249149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:249377 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:250110 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:250311 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:250414 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:250706 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:250780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:250854 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:250928 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:250980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:251261 error Unexpected lexical declaration in case block no-case-declarations - 19:251307 error Unexpected lexical declaration in case block no-case-declarations - 19:251438 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:251715 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:251764 error Unexpected lexical declaration in case block no-case-declarations - 19:251810 error Unexpected lexical declaration in case block no-case-declarations - 19:251929 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:252013 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:252228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:252368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:252574 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:252710 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:252879 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:252990 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:253022 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:253196 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:253325 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:253365 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:253459 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:253670 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:254085 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:254199 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:254274 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:254328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:254982 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:255060 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:255116 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:255159 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:255499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:255947 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:256630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:256710 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:256970 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:257300 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:257711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:258025 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:258301 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:258588 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:258675 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:258811 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:259209 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:259643 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:259799 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:260546 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:261202 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:261836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:261999 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:262146 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:262284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:262660 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:262754 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:262840 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:263085 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:263313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:263372 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:263457 error 'i' is defined but never used @typescript-eslint/no-unused-vars - 19:263539 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:263601 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:263760 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:263870 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:263910 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:263975 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:264037 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:264373 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:264536 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:264896 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19:265532 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:266216 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:266462 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:267851 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:268014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:268373 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:268950 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:269127 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:269398 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:269666 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:269894 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:270376 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:270394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:270731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:270904 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:271476 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:271885 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:271942 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:272348 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:272413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:273317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:273480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:273861 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:274049 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 19:274187 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:274238 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:274361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:274526 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:274690 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:274853 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:275017 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:275172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:275616 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:276750 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:277003 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:277101 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:277236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:277328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:277567 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:278040 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:278233 error Expected a 'break' statement before 'case' no-fallthrough - 19:279100 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:279263 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:279396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:280206 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:280426 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:280628 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:280785 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:281087 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:281104 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:281249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:281525 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:281835 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:282284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:282599 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:282744 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:283027 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:283372 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:283498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:283819 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:284023 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:284215 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:286458 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:286876 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:287230 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:287492 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:287587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:287652 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:287802 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:287926 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 19:288015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/mods/mods_available/example-singlefile.js - 1:1 error 'extension' is not defined no-undef - 5:1 error 'extension' is not defined no-undef - 5:28 error 'services' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/mods/mods_available/example/main.js - 1:1 error 'extension' is not defined no-undef - 5:1 error 'extension' is not defined no-undef - 5:28 error 'services' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/mods/mods_available/kdmod/CustomPuterService.js - 19:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:14 error 'require' is not defined no-undef - 21:34 error 'use' is not defined no-undef - 32:15 error 'path_' is assigned a value but never used @typescript-eslint/no-unused-vars - 35:38 error '__dirname' is not defined no-undef - 78:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/mods/mods_available/kdmod/ShareTestService.js - 27:5 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:5 error 'require' is not defined no-undef - 28:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:21 error 'require' is not defined no-undef - 29:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:20 error 'require' is not defined no-undef - 31:7 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:7 error 'require' is not defined no-undef - 32:9 error 'DB_WRITE' is assigned a value but never used @typescript-eslint/no-unused-vars - 32:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:22 error 'require' is not defined no-undef - 34:5 error 'RootNodeSelector' is assigned a value but never used @typescript-eslint/no-unused-vars - 35:5 error 'NodeChildSelector' is assigned a value but never used @typescript-eslint/no-unused-vars - 37:5 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 37:5 error 'require' is not defined no-undef - 38:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 38:21 error 'require' is not defined no-undef - 41:32 error 'use' is not defined no-undef - 43:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 43:17 error 'require' is not defined no-undef - 50:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 50:26 error 'require' is not defined no-undef - 171:24 error 'Buffer' is not defined no-undef - 188:18 error 'user' is defined but never used @typescript-eslint/no-unused-vars - 195:19 error 'stream' is assigned a value but never used @typescript-eslint/no-unused-vars - 207:18 error 'user' is defined but never used @typescript-eslint/no-unused-vars - 216:18 error 'user' is defined but never used @typescript-eslint/no-unused-vars - 249:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/mods/mods_available/kdmod/data/sharetest_scenarios.js - 19:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/mods/mods_available/kdmod/gui/main.js - 26:48 error 'puter' is not defined no-undef - 52:48 error 'puter' is not defined no-undef - 78:44 error 'puter' is not defined no-undef - 100:27 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/mods/mods_available/kdmod/module.js - 19:1 error 'extension' is not defined no-undef - 20:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:36 error 'require' is not defined no-undef - 23:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:34 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/exports.js - 19:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:20 error 'require' is not defined no-undef - 20:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:20 error 'require' is not defined no-undef - 21:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:24 error 'require' is not defined no-undef - 22:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:32 error 'require' is not defined no-undef - 23:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:26 error 'require' is not defined no-undef - 24:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:28 error 'require' is not defined no-undef - 25:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:24 error 'require' is not defined no-undef - 26:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:21 error 'require' is not defined no-undef - 27:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:21 error 'require' is not defined no-undef - 28:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:31 error 'require' is not defined no-undef - 29:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:27 error 'require' is not defined no-undef - 30:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:29 error 'require' is not defined no-undef - 33:1 error 'module' is not defined no-undef - 36:9 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/CoreModule.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 21:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:28 error 'require' is not defined no-undef - 22:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:28 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 27:25 error '__dirname' is not defined no-undef - 47:1 error 'module' is not defined no-undef - 53:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 53:20 error 'require' is not defined no-undef - 56:9 error 'def' is not defined no-undef - 56:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 56:24 error 'require' is not defined no-undef - 57:9 error 'def' is not defined no-undef - 58:9 error 'def' is not defined no-undef - 60:9 error 'def' is not defined no-undef - 60:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 60:34 error 'require' is not defined no-undef - 61:9 error 'def' is not defined no-undef - 61:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 61:37 error 'require' is not defined no-undef - 62:9 error 'def' is not defined no-undef - 62:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 62:39 error 'require' is not defined no-undef - 63:9 error 'def' is not defined no-undef - 63:43 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 63:43 error 'require' is not defined no-undef - 65:9 error 'def' is not defined no-undef - 65:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 65:30 error 'require' is not defined no-undef - 67:9 error 'def' is not defined no-undef - 67:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 67:21 error 'require' is not defined no-undef - 68:9 error 'def' is not defined no-undef - 73:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 73:27 error 'require' is not defined no-undef - 76:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 76:31 error 'require' is not defined no-undef - 89:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 89:28 error 'require' is not defined no-undef - 90:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 90:30 error 'require' is not defined no-undef - 91:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 91:30 error 'require' is not defined no-undef - 92:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 92:30 error 'require' is not defined no-undef - 93:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 93:32 error 'require' is not defined no-undef - 94:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 94:36 error 'require' is not defined no-undef - 95:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 95:38 error 'require' is not defined no-undef - 96:40 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 96:40 error 'require' is not defined no-undef - 97:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 97:38 error 'require' is not defined no-undef - 98:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 98:35 error 'require' is not defined no-undef - 99:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 99:34 error 'require' is not defined no-undef - 100:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 100:37 error 'require' is not defined no-undef - 101:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 101:29 error 'require' is not defined no-undef - 102:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 102:28 error 'require' is not defined no-undef - 103:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 103:35 error 'require' is not defined no-undef - 104:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 104:28 error 'require' is not defined no-undef - 105:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 105:33 error 'require' is not defined no-undef - 106:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 106:34 error 'require' is not defined no-undef - 107:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 107:36 error 'require' is not defined no-undef - 108:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 108:39 error 'require' is not defined no-undef - 109:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 109:34 error 'require' is not defined no-undef - 110:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 110:33 error 'require' is not defined no-undef - 111:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 111:35 error 'require' is not defined no-undef - 112:41 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 112:41 error 'require' is not defined no-undef - 113:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 113:36 error 'require' is not defined no-undef - 114:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 114:19 error 'require' is not defined no-undef - 115:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 115:26 error 'require' is not defined no-undef - 116:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 116:28 error 'require' is not defined no-undef - 117:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 117:19 error 'require' is not defined no-undef - 118:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 118:32 error 'require' is not defined no-undef - 119:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 119:25 error 'require' is not defined no-undef - 120:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 120:28 error 'require' is not defined no-undef - 121:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 121:30 error 'require' is not defined no-undef - 122:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 122:28 error 'require' is not defined no-undef - 123:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 123:32 error 'require' is not defined no-undef - 124:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 124:27 error 'require' is not defined no-undef - 125:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 125:24 error 'require' is not defined no-undef - 126:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 126:38 error 'require' is not defined no-undef - 127:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 127:37 error 'require' is not defined no-undef - 128:51 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 128:51 error 'require' is not defined no-undef - 129:45 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 129:45 error 'require' is not defined no-undef - 130:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 130:31 error 'require' is not defined no-undef - 131:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 131:36 error 'require' is not defined no-undef - 132:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 132:30 error 'require' is not defined no-undef - 133:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 133:34 error 'require' is not defined no-undef - 134:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 134:29 error 'require' is not defined no-undef - 135:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 135:29 error 'require' is not defined no-undef - 136:44 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 136:44 error 'require' is not defined no-undef - 190:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 190:34 error 'require' is not defined no-undef - 193:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 193:36 error 'require' is not defined no-undef - 196:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 196:35 error 'require' is not defined no-undef - 250:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 250:30 error 'require' is not defined no-undef - 253:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 253:37 error 'require' is not defined no-undef - 256:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 256:32 error 'require' is not defined no-undef - 259:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 259:38 error 'require' is not defined no-undef - 262:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 262:35 error 'require' is not defined no-undef - 265:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 265:30 error 'require' is not defined no-undef - 268:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 268:30 error 'require' is not defined no-undef - 271:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 271:28 error 'require' is not defined no-undef - 274:47 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 274:47 error 'require' is not defined no-undef - 277:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 277:33 error 'require' is not defined no-undef - 280:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 280:29 error 'require' is not defined no-undef - 283:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 283:38 error 'require' is not defined no-undef - 286:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 286:32 error 'require' is not defined no-undef - 289:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 289:39 error 'require' is not defined no-undef - 292:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 292:31 error 'require' is not defined no-undef - 295:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 295:31 error 'require' is not defined no-undef - 298:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 298:31 error 'require' is not defined no-undef - 301:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 301:37 error 'require' is not defined no-undef - 304:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 304:37 error 'require' is not defined no-undef - 307:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 307:30 error 'require' is not defined no-undef - 310:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 310:30 error 'require' is not defined no-undef - 313:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 313:37 error 'require' is not defined no-undef - 316:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 316:38 error 'require' is not defined no-undef - 319:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 319:35 error 'require' is not defined no-undef - 322:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 322:32 error 'require' is not defined no-undef - 325:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 325:35 error 'require' is not defined no-undef - 328:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 328:35 error 'require' is not defined no-undef - 331:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 331:27 error 'require' is not defined no-undef - 334:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 334:33 error 'require' is not defined no-undef - 337:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 337:35 error 'require' is not defined no-undef - 340:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 340:36 error 'require' is not defined no-undef - 343:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 343:35 error 'require' is not defined no-undef - 346:42 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 346:42 error 'require' is not defined no-undef - 349:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 349:32 error 'require' is not defined no-undef - 352:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 352:37 error 'require' is not defined no-undef - 357:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 357:37 error 'require' is not defined no-undef - 359:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 359:32 error 'require' is not defined no-undef - 360:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 360:39 error 'require' is not defined no-undef - 361:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 361:31 error 'require' is not defined no-undef - 362:40 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 362:40 error 'require' is not defined no-undef - 363:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 363:34 error 'require' is not defined no-undef - 364:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 364:39 error 'require' is not defined no-undef - 365:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 365:34 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/DatabaseModule.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 25:40 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:40 error 'require' is not defined no-undef - 26:49 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:49 error 'require' is not defined no-undef - 36:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/Extension.js - 1:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:26 error 'require' is not defined no-undef - 2:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:24 error 'require' is not defined no-undef - 3:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:21 error 'require' is not defined no-undef - 4:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:35 error 'require' is not defined no-undef - 81:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/ExtensionModule.js - 1:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:26 error 'require' is not defined no-undef - 2:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:14 error 'require' is not defined no-undef - 3:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:30 error 'require' is not defined no-undef - 19:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/ExtensionService.js - 1:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:26 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:22 error 'require' is not defined no-undef - 4:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:27 error 'require' is not defined no-undef - 5:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:21 error 'require' is not defined no-undef - 6:9 error 'DB_READ' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:31 error 'require' is not defined no-undef - 85:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/Kernel.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:16 error 'require' is not defined no-undef - 23:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:15 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:23 error 'require' is not defined no-undef - 26:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:29 error 'require' is not defined no-undef - 27:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:19 error 'require' is not defined no-undef - 28:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:18 error 'require' is not defined no-undef - 38:13 error 'def' is not defined no-undef - 39:13 error 'def' is not defined no-undef - 50:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 50:22 error 'require' is not defined no-undef - 52:9 error 'global' is not defined no-undef - 53:9 error 'global' is not defined no-undef - 55:40 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 55:40 error 'require' is not defined no-undef - 56:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 56:32 error 'require' is not defined no-undef - 73:9 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 73:9 error 'require' is not defined no-undef - 77:36 error 'process' is not defined no-undef - 83:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 83:24 error 'require' is not defined no-undef - 89:41 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 89:41 error 'require' is not defined no-undef - 94:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 94:28 error 'require' is not defined no-undef - 95:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 95:30 error 'require' is not defined no-undef - 101:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 101:39 error 'require' is not defined no-undef - 111:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 111:31 error 'require' is not defined no-undef - 164:26 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 188:42 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 188:42 error 'require' is not defined no-undef - 217:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 217:23 error 'require' is not defined no-undef - 218:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 218:20 error 'require' is not defined no-undef - 282:36 error 'process' is not defined no-undef - 284:33 error 'process' is not defined no-undef - 300:52 error 'process' is not defined no-undef - 313:47 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 313:47 error 'require' is not defined no-undef - 341:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 341:23 error 'require' is not defined no-undef - 342:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 342:20 error 'require' is not defined no-undef - 366:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 366:31 error 'require' is not defined no-undef - 380:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 380:20 error 'require' is not defined no-undef - 381:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 381:23 error 'require' is not defined no-undef - 410:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/LocalDiskStorageModule.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 24:41 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:41 error 'require' is not defined no-undef - 27:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:38 error 'require' is not defined no-undef - 32:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/PuterDriversModule.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 26:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:35 error 'require' is not defined no-undef - 31:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/ThirdPartyDriversModule.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 21:7 error 'ThirdPartyDriversModule' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/api/APIError.js - 19:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:29 error 'require' is not defined no-undef - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 29:1 error 'module' is not defined no-undef - 173:25 error 'id' is defined but never used @typescript-eslint/no-unused-vars - 568:20 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 589:25 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/api/PathOrUIDValidator.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:15 error 'require' is not defined no-undef - 35:1 error 'module' is not defined no-undef - 49:48 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 49:48 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/api/api_error_handler.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 38:1 error 'module' is not defined no-undef - 53:17 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/api/eggspress.js - 19:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:17 error 'require' is not defined no-undef - 20:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:16 error 'require' is not defined no-undef - 21:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:17 error 'require' is not defined no-undef - 22:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:27 error 'require' is not defined no-undef - 24:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:20 error 'require' is not defined no-undef - 25:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:18 error 'require' is not defined no-undef - 26:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:21 error 'require' is not defined no-undef - 42:1 error 'module' is not defined no-undef - 48:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 48:33 error 'require' is not defined no-undef - 49:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 49:32 error 'require' is not defined no-undef - 50:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 50:33 error 'require' is not defined no-undef - 54:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 54:36 error 'require' is not defined no-undef - 82:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 171:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 171:12 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/api/filesystem/FSNodeParam.js - 19:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:27 error 'require' is not defined no-undef - 20:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:28 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:25 error 'require' is not defined no-undef - 23:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:18 error 'require' is not defined no-undef - 24:7 error '_path' is assigned a value but never used @typescript-eslint/no-unused-vars - 24:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:15 error 'require' is not defined no-undef - 26:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/api/filesystem/FlagParam.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 21:1 error 'module' is not defined no-undef - 29:26 error 'req' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/api/filesystem/StringParam.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 21:1 error 'module' is not defined no-undef - 28:26 error 'req' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/api/filesystem/UserParam.js - 19:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/boot/BootLogger.js - 45:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/boot/RuntimeEnvironment.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 21:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:28 error 'require' is not defined no-undef - 22:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:30 error 'require' is not defined no-undef - 23:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:24 error 'require' is not defined no-undef - 24:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:16 error 'require' is not defined no-undef - 25:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:26 error 'require' is not defined no-undef - 31:22 error 'process' is not defined no-undef - 46:24 error 'logger' is defined but never used @typescript-eslint/no-unused-vars - 68:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 77:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 96:14 error 'process' is not defined no-undef - 106:30 error 'process' is not defined no-undef - 139:30 error 'process' is not defined no-undef - 169:30 error 'process' is not defined no-undef - 184:31 error 'require' is not defined no-undef - 192:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 192:13 error 'require' is not defined no-undef - 193:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 193:16 error 'require' is not defined no-undef - 194:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 194:17 error 'require' is not defined no-undef - 195:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 195:17 error 'require' is not defined no-undef - 215:13 error 'process' is not defined no-undef - 225:32 error 'require' is not defined no-undef - 242:15 error 'mods_path_entry' is assigned a value but never used @typescript-eslint/no-unused-vars - 248:9 error 'process' is not defined no-undef - 309:14 error 'process' is not defined no-undef - 312:22 error 'process' is not defined no-undef - 315:33 error 'process' is not defined no-undef - 323:38 error 'process' is not defined no-undef - 397:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/boot/default_config.js - 19:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/codex/CodeModel.js - 23:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/codex/CodeUtil.js - 51:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/codex/Sequence.js - 241:15 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 279:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/config.js - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 34:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 47:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 85:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 85:19 error 'require' is not defined no-undef - 87:25 error '__dirname' is not defined no-undef - 114:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 114:12 error 'require' is not defined no-undef - 115:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 115:12 error 'require' is not defined no-undef - 128:14 error '_' is defined but never used @typescript-eslint/no-unused-vars - 142:1 error 'module' is not defined no-undef - 197:29 error 'receiver' is defined but never used @typescript-eslint/no-unused-vars - 221:36 error 'receiver' is defined but never used @typescript-eslint/no-unused-vars - 233:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/config/ConfigLoader.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 24:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:16 error 'require' is not defined no-undef - 25:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:13 error 'require' is not defined no-undef - 72:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/config/deep_proto_merge.js - 95:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/config/reserved_words.js - 19:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/data/hardcoded-permissions.js - 102:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/definitions/Driver.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:18 error 'require' is not defined no-undef - 22:50 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:50 error 'require' is not defined no-undef - 23:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:27 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 115:19 error 'user_method_key' is assigned a value but never used @typescript-eslint/no-unused-vars - 190:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/definitions/Library.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 25:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/definitions/SimpleEntity.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 21:1 error 'module' is not defined no-undef - 27:34 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/drivers/DBKVStore.js - 19:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:16 error 'require' is not defined no-undef - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 21:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:31 error 'require' is not defined no-undef - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 30:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:21 error 'require' is not defined no-undef - 75:18 error 'Buffer' is not defined no-undef - 83:17 error 'Buffer' is not defined no-undef - 215:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/drivers/EntityStoreImplementation.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:20 error 'require' is not defined no-undef - 21:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:20 error 'require' is not defined no-undef - 22:9 error 'Or' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:25 error 'require' is not defined no-undef - 102:25 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 169:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/drivers/HelloWorld.js - 19:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:20 error 'require' is not defined no-undef - 41:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/entities/Group.js - 19:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:22 error 'require' is not defined no-undef - 21:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/errors/TechnicalError.js - 42:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/errors/error_help_details.js - 19:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:27 error 'require' is not defined no-undef - 61:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 160:38 error 'process' is not defined no-undef - 241:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/FSAccessContext.js - 19:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:23 error 'require' is not defined no-undef - 21:71 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:71 error 'require' is not defined no-undef - 31:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/FSNodeContext.js - 19:19 error 'get_dir_size' is assigned a value but never used @typescript-eslint/no-unused-vars - 19:121 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:121 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 22:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:15 error 'require' is not defined no-undef - 23:108 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:108 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:29 error 'require' is not defined no-undef - 26:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:34 error 'require' is not defined no-undef - 27:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:21 error 'require' is not defined no-undef - 28:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:27 error 'require' is not defined no-undef - 29:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:28 error 'require' is not defined no-undef - 48:1 error 'module' is not defined no-undef - 220:19 error 'fetch_options' is assigned a value but never used @typescript-eslint/no-unused-vars - 291:17 error 'resolved' is assigned a value but never used @typescript-eslint/no-unused-vars - 293:31 error 'resolver' is defined but never used @typescript-eslint/no-unused-vars - 392:34 error 'force' is defined but never used @typescript-eslint/no-unused-vars - 419:23 error 'force' is defined but never used @typescript-eslint/no-unused-vars - 523:22 error 'user' is defined but never used @typescript-eslint/no-unused-vars - 562:42 error 'force' is defined but never used @typescript-eslint/no-unused-vars - 806:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 806:21 error Empty block statement no-empty - 866:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/FSOperationContext.js - 19:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:28 error 'require' is not defined no-undef - 21:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:23 error 'require' is not defined no-undef - 22:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:25 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 33:1 error 'module' is not defined no-undef - 81:40 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 81:40 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/FilesystemService.js - 20:61 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:61 error 'require' is not defined no-undef - 21:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:32 error 'require' is not defined no-undef - 22:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:36 error 'require' is not defined no-undef - 23:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:25 error 'require' is not defined no-undef - 24:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:26 error 'require' is not defined no-undef - 25:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:25 error 'require' is not defined no-undef - 26:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:30 error 'require' is not defined no-undef - 27:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:28 error 'require' is not defined no-undef - 28:71 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:71 error 'require' is not defined no-undef - 29:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:23 error 'require' is not defined no-undef - 30:9 error 'AdvancedBase' is assigned a value but never used @typescript-eslint/no-unused-vars - 30:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:26 error 'require' is not defined no-undef - 31:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:21 error 'require' is not defined no-undef - 32:9 error 'simple_retry' is assigned a value but never used @typescript-eslint/no-unused-vars - 32:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:26 error 'require' is not defined no-undef - 33:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:18 error 'require' is not defined no-undef - 34:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:21 error 'require' is not defined no-undef - 35:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:32 error 'require' is not defined no-undef - 36:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:20 error 'require' is not defined no-undef - 37:90 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 37:90 error 'require' is not defined no-undef - 38:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 38:22 error 'require' is not defined no-undef - 39:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 39:27 error 'require' is not defined no-undef - 40:9 error 'get_user' is assigned a value but never used @typescript-eslint/no-unused-vars - 40:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 40:22 error 'require' is not defined no-undef - 41:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 41:21 error 'require' is not defined no-undef - 45:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 45:16 error 'require' is not defined no-undef - 46:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 46:17 error 'require' is not defined no-undef - 47:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 47:19 error 'require' is not defined no-undef - 48:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 48:17 error 'require' is not defined no-undef - 113:24 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 118:24 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 144:24 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 185:28 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 465:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/backends/Test.js - 20:23 error 'exports' is not defined no-undef - 21:1 error 'exports' is not defined no-undef - 24:1 error 'exports' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/batch/BatchExecutor.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:22 error 'require' is not defined no-undef - 21:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:18 error 'require' is not defined no-undef - 22:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:22 error 'require' is not defined no-undef - 23:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:18 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:16 error 'require' is not defined no-undef - 26:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:24 error 'require' is not defined no-undef - 182:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/batch/commands.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:34 error 'require' is not defined no-undef - 21:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:33 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:28 error 'require' is not defined no-undef - 26:9 error 'AppUnderUserActorType' is assigned a value but never used @typescript-eslint/no-unused-vars - 26:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:35 error 'require' is not defined no-undef - 27:7 error 'FSNodeParam' is assigned a value but never used @typescript-eslint/no-unused-vars - 27:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:21 error 'require' is not defined no-undef - 28:9 error 'TYPE_DIRECTORY' is assigned a value but never used @typescript-eslint/no-unused-vars - 28:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:28 error 'require' is not defined no-undef - 29:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:26 error 'require' is not defined no-undef - 30:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:22 error 'require' is not defined no-undef - 31:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:22 error 'require' is not defined no-undef - 43:25 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 280:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/core/Selector.ts - 4:26 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any - 18:22 error 'showDebug' is defined but never used @typescript-eslint/no-unused-vars - 35:22 error 'showDebug' is defined but never used @typescript-eslint/no-unused-vars - 48:27 error Unexpected any. Specify a different type @typescript-eslint/no-explicit-any - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/definitions.js - 19:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:27 error 'require' is not defined no-undef - 23:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/hl_copy.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:70 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:70 error 'require' is not defined no-undef - 21:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:28 error 'require' is not defined no-undef - 22:48 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:48 error 'require' is not defined no-undef - 23:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:35 error 'require' is not defined no-undef - 24:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:20 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 26:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:16 error 'require' is not defined no-undef - 40:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 40:16 error 'require' is not defined no-undef - 225:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/hl_data_read.js - 19:9 error 'stream_to_buffer' is assigned a value but never used @typescript-eslint/no-unused-vars - 19:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:30 error 'require' is not defined no-undef - 20:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:35 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 23:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:18 error 'require' is not defined no-undef - 32:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:19 error 'require' is not defined no-undef - 68:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 68:26 error 'require' is not defined no-undef - 78:31 error 'reject' is defined but never used @typescript-eslint/no-unused-vars - 104:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/hl_mkdir.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 21:67 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:67 error 'require' is not defined no-undef - 22:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:18 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:21 error 'require' is not defined no-undef - 26:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:19 error 'require' is not defined no-undef - 27:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:19 error 'require' is not defined no-undef - 28:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:23 error 'require' is not defined no-undef - 29:9 error 'ContextAwareFeature' is assigned a value but never used @typescript-eslint/no-unused-vars - 29:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:33 error 'require' is not defined no-undef - 30:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:25 error 'require' is not defined no-undef - 31:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:35 error 'require' is not defined no-undef - 32:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:27 error 'require' is not defined no-undef - 33:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:22 error 'require' is not defined no-undef - 76:26 error 'values' is assigned a value but never used @typescript-eslint/no-unused-vars - 77:17 error '_path' is assigned a value but never used @typescript-eslint/no-unused-vars - 85:13 error 'lastCreatedSelector' is assigned a value but never used @typescript-eslint/no-unused-vars - 180:17 error '_path' is assigned a value but never used @typescript-eslint/no-unused-vars - 191:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 191:21 error 'require' is not defined no-undef - 244:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 244:16 error 'require' is not defined no-undef - 245:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 245:19 error 'require' is not defined no-undef - 261:24 error 'socketio' is assigned a value but never used @typescript-eslint/no-unused-vars - 390:15 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 392:13 error 'current' is assigned a value but never used @typescript-eslint/no-unused-vars - 393:13 error 'lastCreatedSelector' is assigned a value but never used @typescript-eslint/no-unused-vars - 475:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/hl_mklink.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:35 error 'require' is not defined no-undef - 22:9 error 'chkperm' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:18 error 'require' is not defined no-undef - 24:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:28 error 'require' is not defined no-undef - 34:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:15 error 'require' is not defined no-undef - 39:17 error '_path' is assigned a value but never used @typescript-eslint/no-unused-vars - 43:21 error 'dedupe_name' is assigned a value but never used @typescript-eslint/no-unused-vars - 78:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/hl_mkshortcut.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:19 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:28 error 'require' is not defined no-undef - 25:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:35 error 'require' is not defined no-undef - 37:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 37:15 error 'require' is not defined no-undef - 43:17 error '_path' is assigned a value but never used @typescript-eslint/no-unused-vars - 43:24 error 'socketio' is assigned a value but never used @typescript-eslint/no-unused-vars - 105:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/hl_move.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:74 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:74 error 'require' is not defined no-undef - 21:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:20 error 'require' is not defined no-undef - 22:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:30 error 'require' is not defined no-undef - 23:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:35 error 'require' is not defined no-undef - 24:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:20 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 26:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:28 error 'require' is not defined no-undef - 27:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:16 error 'require' is not defined no-undef - 31:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:16 error 'require' is not defined no-undef - 197:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/hl_name_search.js - 1:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:21 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:29 error 'require' is not defined no-undef - 4:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:35 error 'require' is not defined no-undef - 39:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/hl_read.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:9 error 'chkperm' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:9 error 'TYPE_SYMLINK' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:26 error 'require' is not defined no-undef - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 23:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:35 error 'require' is not defined no-undef - 27:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:19 error 'require' is not defined no-undef - 31:17 error 'context' is assigned a value but never used @typescript-eslint/no-unused-vars - 66:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 66:26 error 'require' is not defined no-undef - 77:31 error 'reject' is defined but never used @typescript-eslint/no-unused-vars - 97:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/hl_readdir.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:9 error 'chkperm' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:42 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:42 error 'require' is not defined no-undef - 22:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:25 error 'require' is not defined no-undef - 23:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:23 error 'require' is not defined no-undef - 24:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:26 error 'require' is not defined no-undef - 25:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:35 error 'require' is not defined no-undef - 84:19 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 84:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 84:24 error 'require' is not defined no-undef - 96:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/hl_remove.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:28 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 24:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:35 error 'require' is not defined no-undef - 55:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/hl_stat.js - 19:9 error 'chkperm' is assigned a value but never used @typescript-eslint/no-unused-vars - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:35 error 'require' is not defined no-undef - 22:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:18 error 'require' is not defined no-undef - 26:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:25 error 'require' is not defined no-undef - 68:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/hl_operations/hl_write.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:19 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:19 error 'require' is not defined no-undef - 24:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:16 error 'require' is not defined no-undef - 25:44 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:44 error 'require' is not defined no-undef - 26:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:24 error 'require' is not defined no-undef - 27:22 error 'logging_stream' is assigned a value but never used @typescript-eslint/no-unused-vars - 27:82 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:82 error 'require' is not defined no-undef - 28:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:28 error 'require' is not defined no-undef - 29:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:20 error 'require' is not defined no-undef - 30:48 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:48 error 'require' is not defined no-undef - 31:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:32 error 'require' is not defined no-undef - 32:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:35 error 'require' is not defined no-undef - 33:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:20 error 'require' is not defined no-undef - 34:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:19 error 'require' is not defined no-undef - 118:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 118:16 error 'require' is not defined no-undef - 119:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 119:19 error 'require' is not defined no-undef - 120:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 120:15 error 'require' is not defined no-undef - 430:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/lib/PuterPath.js - 19:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:15 error 'require' is not defined no-undef - 83:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/ll_operations/definitions.js - 19:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:27 error 'require' is not defined no-undef - 23:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/ll_operations/ll_copy.js - 19:7 error 'config' is assigned a value but never used @typescript-eslint/no-unused-vars - 19:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:16 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:27 error 'require' is not defined no-undef - 22:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:23 error 'require' is not defined no-undef - 23:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:29 error 'require' is not defined no-undef - 24:44 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:44 error 'require' is not defined no-undef - 25:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:35 error 'require' is not defined no-undef - 26:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:35 error 'require' is not defined no-undef - 30:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:16 error 'require' is not defined no-undef - 31:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:17 error 'require' is not defined no-undef - 255:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/ll_operations/ll_listusers.js - 19:49 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:49 error 'require' is not defined no-undef - 20:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:35 error 'require' is not defined no-undef - 55:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/ll_operations/ll_mkdir.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:24 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:9 error 'TYPE_DIRECTORY' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:28 error 'require' is not defined no-undef - 23:48 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:48 error 'require' is not defined no-undef - 24:44 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:44 error 'require' is not defined no-undef - 25:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:35 error 'require' is not defined no-undef - 29:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:16 error 'require' is not defined no-undef - 30:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:17 error 'require' is not defined no-undef - 137:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/ll_operations/ll_move.js - 19:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:35 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 82:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/ll_operations/ll_read.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:9 error 'CodeModel' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:23 error 'require' is not defined no-undef - 21:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:22 error 'require' is not defined no-undef - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 24:9 error 'Context' is assigned a value but never used @typescript-eslint/no-unused-vars - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:30 error 'require' is not defined no-undef - 26:42 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:42 error 'require' is not defined no-undef - 27:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:35 error 'require' is not defined no-undef - 159:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/ll_operations/ll_readdir.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 21:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:30 error 'require' is not defined no-undef - 22:48 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:48 error 'require' is not defined no-undef - 23:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:35 error 'require' is not defined no-undef - 28:39 error 'user' is assigned a value but never used @typescript-eslint/no-unused-vars - 83:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/ll_operations/ll_readshares.js - 19:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:22 error 'require' is not defined no-undef - 20:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:28 error 'require' is not defined no-undef - 21:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:22 error 'require' is not defined no-undef - 22:9 error 'Context' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:9 error 'TYPE_DIRECTORY' is assigned a value but never used @typescript-eslint/no-unused-vars - 23:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:28 error 'require' is not defined no-undef - 24:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:29 error 'require' is not defined no-undef - 25:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:35 error 'require' is not defined no-undef - 26:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:23 error 'require' is not defined no-undef - 39:39 error 'depth' is assigned a value but never used @typescript-eslint/no-unused-vars - 92:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/ll_operations/ll_rmdir.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:27 error 'require' is not defined no-undef - 21:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:23 error 'require' is not defined no-undef - 22:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:29 error 'require' is not defined no-undef - 23:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:35 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 115:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/ll_operations/ll_rmnode.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 20:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:27 error 'require' is not defined no-undef - 21:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:35 error 'require' is not defined no-undef - 22:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:18 error 'require' is not defined no-undef - 77:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/ll_operations/ll_write.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 20:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:35 error 'require' is not defined no-undef - 21:44 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:44 error 'require' is not defined no-undef - 22:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:29 error 'require' is not defined no-undef - 23:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:35 error 'require' is not defined no-undef - 24:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:23 error 'require' is not defined no-undef - 25:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:18 error 'require' is not defined no-undef - 26:9 error 'progress_stream' is assigned a value but never used @typescript-eslint/no-unused-vars - 26:52 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:52 error 'require' is not defined no-undef - 27:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:28 error 'require' is not defined no-undef - 28:9 error 'Actor' is assigned a value but never used @typescript-eslint/no-unused-vars - 28:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:19 error 'require' is not defined no-undef - 29:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:22 error 'require' is not defined no-undef - 36:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:17 error 'require' is not defined no-undef - 37:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 37:23 error 'require' is not defined no-undef - 131:26 error 'immutable' is assigned a value but never used @typescript-eslint/no-unused-vars - 218:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 218:16 error 'require' is not defined no-undef - 219:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 219:17 error 'require' is not defined no-undef - 220:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 220:17 error 'require' is not defined no-undef - 226:27 error 'immutable' is assigned a value but never used @typescript-eslint/no-unused-vars - 365:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/node/selectors.js - 19:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:15 error 'require' is not defined no-undef - 20:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:23 error 'require' is not defined no-undef - 164:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/node/states.js - 19:7 error 'NodeFoundState' is defined but never used @typescript-eslint/no-unused-vars - 21:7 error 'NodeDoesNotExistState' is defined but never used @typescript-eslint/no-unused-vars - 23:7 error 'NodeInitialState' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/storage/DatabaseFSEntryFetcher.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 20:9 error 'abtest' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:20 error 'require' is not defined no-undef - 21:108 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:108 error 'require' is not defined no-undef - 23:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/storage/DatabaseFSEntryService.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 22:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:23 error 'require' is not defined no-undef - 23:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:29 error 'require' is not defined no-undef - 24:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:25 error 'require' is not defined no-undef - 25:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:21 error 'require' is not defined no-undef - 26:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:22 error 'require' is not defined no-undef - 92:28 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 100:26 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 146:28 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 255:26 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 269:55 error 'reject' is defined but never used @typescript-eslint/no-unused-vars - 329:46 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 330:47 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 338:37 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 431:37 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 440:35 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 547:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/storage/ResourceService.js - 25:5 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:5 error 'require' is not defined no-undef - 61:51 error 'reject' is defined but never used @typescript-eslint/no-unused-vars - 81:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 106:15 error 'i' is assigned a value but never used @typescript-eslint/no-unused-vars - 129:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/storage/SizeService.js - 19:75 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:75 error 'require' is not defined no-undef - 21:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:22 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 152:46 error 'f' is defined but never used @typescript-eslint/no-unused-vars - 191:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/storage/SystemFSEntryService.js - 19:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:23 error 'require' is not defined no-undef - 20:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:15 error 'require' is not defined no-undef - 77:20 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 83:19 error 'uuid' is defined but never used @typescript-eslint/no-unused-vars - 98:13 error 'current' is assigned a value but never used @typescript-eslint/no-unused-vars - 165:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/storage/UploadProgressTracker.js - 85:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/strategies/storage_a/LocalDiskStorageStrategy.js - 19:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:27 error 'require' is not defined no-undef - 113:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/systemfs.js - 19:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:13 error 'require' is not defined no-undef - 21:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:25 error 'require' is not defined no-undef - 22:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:32 error 'require' is not defined no-undef - 23:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:36 error 'require' is not defined no-undef - 24:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:29 error 'require' is not defined no-undef - 25:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:25 error 'require' is not defined no-undef - 26:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:16 error 'require' is not defined no-undef - 27:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:36 error 'require' is not defined no-undef - 42:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/filesystem/validation.js - 27:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:16 error 'require' is not defined no-undef - 66:28 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 88:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/fun/dev-console-ui-utils.js - 19:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:16 error 'require' is not defined no-undef - 20:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:24 error 'require' is not defined no-undef - 41:19 error 'process' is not defined no-undef - 42:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 53:24 error 'process' is not defined no-undef - 72:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/fun/logos.js - 19:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/helpers.js - 19:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:24 error 'require' is not defined no-undef - 20:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:15 error 'require' is not defined no-undef - 21:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:20 error 'require' is not defined no-undef - 22:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:16 error 'require' is not defined no-undef - 23:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:14 error 'require' is not defined no-undef - 24:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:28 error 'require' is not defined no-undef - 25:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:33 error 'require' is not defined no-undef - 26:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:26 error 'require' is not defined no-undef - 27:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:21 error 'require' is not defined no-undef - 28:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:18 error 'require' is not defined no-undef - 29:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:31 error 'require' is not defined no-undef - 30:9 error 'BaseDatabaseAccessService' is assigned a value but never used @typescript-eslint/no-unused-vars - 30:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:39 error 'require' is not defined no-undef - 31:9 error 'LLRmNode' is assigned a value but never used @typescript-eslint/no-unused-vars - 31:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:22 error 'require' is not defined no-undef - 32:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:21 error 'require' is not defined no-undef - 33:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:29 error 'require' is not defined no-undef - 34:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:25 error 'require' is not defined no-undef - 60:32 error 'user_id' is defined but never used @typescript-eslint/no-unused-vars - 60:41 error 'recipient_user_id' is defined but never used @typescript-eslint/no-unused-vars - 72:31 error 'fsentry_id' is defined but never used @typescript-eslint/no-unused-vars - 72:43 error 'recipient_user_id' is defined but never used @typescript-eslint/no-unused-vars - 84:39 error 'fsentry_id' is defined but never used @typescript-eslint/no-unused-vars - 190:5 error 'kv' is not defined no-undef - 191:5 error 'kv' is not defined no-undef - 192:5 error 'kv' is not defined no-undef - 193:5 error 'kv' is not defined no-undef - 201:18 error 'kv' is not defined no-undef - 223:13 error 'kv' is not defined no-undef - 224:13 error 'kv' is not defined no-undef - 225:13 error 'kv' is not defined no-undef - 233:13 error 'kv' is not defined no-undef - 234:13 error 'kv' is not defined no-undef - 235:13 error 'kv' is not defined no-undef - 261:13 error 'kv' is not defined no-undef - 262:13 error 'kv' is not defined no-undef - 263:13 error 'kv' is not defined no-undef - 282:22 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 287:9 error 'kv' is not defined no-undef - 305:18 error 'kv' is not defined no-undef - 313:18 error 'kv' is not defined no-undef - 322:18 error 'kv' is not defined no-undef - 594:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 899:67 error 'check_perms' is assigned a value but never used @typescript-eslint/no-unused-vars - 908:10 error 'isObject' is defined but never used @typescript-eslint/no-unused-vars - 919:32 error 'descendants_only' is assigned a value but never used @typescript-eslint/no-unused-vars - 970:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 970:20 error 'require' is not defined no-undef - 1004:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1004:28 error 'require' is not defined no-undef - 1015:11 error 'expires' is assigned a value but never used @typescript-eslint/no-unused-vars - 1164:5 error Unexpected 'debugger' statement no-debugger - 1212:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1345:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1345:20 error 'require' is not defined no-undef - 1379:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1574:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1574:24 error 'require' is not defined no-undef - 1715:18 error 'kv' is not defined no-undef - 1744:28 error 'item' is defined but never used @typescript-eslint/no-unused-vars - 1779:16 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1836:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1836:20 error 'require' is not defined no-undef - 1853:19 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 1891:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/html_footer.js - 19:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:16 error 'require' is not defined no-undef - 75:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/html_head.js - 19:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:16 error 'require' is not defined no-undef - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 107:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/index.js - 21:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:20 error 'require' is not defined no-undef - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 31:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/libraries/ArrayUtil.js - 19:25 error 'use' is not defined no-undef - 93:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/libraries/LibTypeTagged.js - 19:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:20 error 'require' is not defined no-undef - 21:29 error 'use' is not defined no-undef - 78:18 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 105:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/middleware/abuse.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 44:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/middleware/anticsrf.js - 1:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:18 error 'require' is not defined no-undef - 3:18 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 20:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/middleware/auth.js - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 21:8 error 'jwt_auth' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:20 error 'require' is not defined no-undef - 22:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:27 error 'require' is not defined no-undef - 23:9 error 'DB_WRITE' is assigned a value but never used @typescript-eslint/no-unused-vars - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 24:9 error 'Context' is assigned a value but never used @typescript-eslint/no-unused-vars - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:15 error 'require' is not defined no-undef - 48:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/middleware/auth2.js - 19:7 error 'config' is assigned a value but never used @typescript-eslint/no-unused-vars - 19:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:16 error 'require' is not defined no-undef - 20:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:27 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/middleware/configurable_auth.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:16 error 'require' is not defined no-undef - 21:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:30 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 132:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/middleware/featureflag.js - 1:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:18 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 22:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/middleware/fs.js - 19:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:25 error 'require' is not defined no-undef - 47:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/middleware/subdomain.js - 38:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 38:34 error 'require' is not defined no-undef - 48:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/middleware/verified.js - 19:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:16 error 'require' is not defined no-undef - 43:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/broadcast/BroadcastModule.js - 1:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:26 error 'require' is not defined no-undef - 7:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:38 error 'require' is not defined no-undef - 12:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/broadcast/BroadcastService.js - 19:9 error 'AdvancedBase' is assigned a value but never used @typescript-eslint/no-unused-vars - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:19 error 'require' is not defined no-undef - 22:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:19 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 27:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:18 error 'require' is not defined no-undef - 62:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 74:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 74:20 error 'require' is not defined no-undef - 109:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 109:13 error 'require' is not defined no-undef - 118:33 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 118:39 error 'ctx' is defined but never used @typescript-eslint/no-unused-vars - 128:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/broadcast/connection/BaseLink.js - 1:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:26 error 'require' is not defined no-undef - 2:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:28 error 'require' is not defined no-undef - 11:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 11:17 error 'require' is not defined no-undef - 32:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/broadcast/connection/CLink.js - 1:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:22 error 'require' is not defined no-undef - 2:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:27 error 'require' is not defined no-undef - 6:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:20 error 'require' is not defined no-undef - 21:36 error 'Buffer' is not defined no-undef - 23:24 error 'Buffer' is not defined no-undef - 103:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/broadcast/connection/KeyPairHelper.js - 1:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:26 error 'require' is not defined no-undef - 5:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:20 error 'require' is not defined no-undef - 20:29 error 'Buffer' is not defined no-undef - 44:42 error 'Buffer' is not defined no-undef - 49:24 error 'Buffer' is not defined no-undef - 50:25 error 'Buffer' is not defined no-undef - 66:16 error 'Buffer' is not defined no-undef - 70:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/broadcast/connection/SLink.js - 1:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:22 error 'require' is not defined no-undef - 2:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:27 error 'require' is not defined no-undef - 20:44 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 32:27 error 'Buffer' is not defined no-undef - 50:29 error 'Buffer' is not defined no-undef - 92:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/AIChatService.js - 1:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:18 error 'require' is not defined no-undef - 2:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:28 error 'require' is not defined no-undef - 3:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:21 error 'require' is not defined no-undef - 4:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:22 error 'require' is not defined no-undef - 5:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:22 error 'require' is not defined no-undef - 6:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:24 error 'require' is not defined no-undef - 7:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:21 error 'require' is not defined no-undef - 14:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 14:17 error 'require' is not defined no-undef - 229:29 error Redundant double negation no-extra-boolean-cast - 374:41 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 486:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/AIInterfaceService.js - 1:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:21 error 'require' is not defined no-undef - 116:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/AITestModeService.js - 1:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:21 error 'require' is not defined no-undef - 10:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/AWSPollyService.js - 1:73 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:73 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:24 error 'require' is not defined no-undef - 156:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/AWSTextractService.js - 1:78 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:78 error 'require' is not defined no-undef - 3:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:21 error 'require' is not defined no-undef - 4:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:18 error 'require' is not defined no-undef - 119:9 error Unreachable code no-unreachable - 140:19 error 'base64' is assigned a value but never used @typescript-eslint/no-unused-vars - 158:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/ClaudeEnoughService.js - 1:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:24 error 'require' is not defined no-undef - 26:18 error 'model' is defined but never used @typescript-eslint/no-unused-vars - 32:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/ClaudeService.js - 1:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:32 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:20 error 'require' is not defined no-undef - 4:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:25 error 'require' is not defined no-undef - 5:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:24 error 'require' is not defined no-undef - 6:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:18 error 'require' is not defined no-undef - 7:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:24 error 'require' is not defined no-undef - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 212:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/FakeChatService.js - 1:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:21 error 'require' is not defined no-undef - 9:31 error 'messages' is defined but never used @typescript-eslint/no-unused-vars - 9:41 error 'stream' is defined but never used @typescript-eslint/no-unused-vars - 9:49 error 'model' is defined but never used @typescript-eslint/no-unused-vars - 10:40 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 10:40 error 'require' is not defined no-undef - 51:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/GroqAIService.js - 1:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:25 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:24 error 'require' is not defined no-undef - 4:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:17 error 'require' is not defined no-undef - 5:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:24 error 'require' is not defined no-undef - 9:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:15 error 'require' is not defined no-undef - 13:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 13:22 error 'require' is not defined no-undef - 275:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/MistralAIService.js - 1:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:25 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:24 error 'require' is not defined no-undef - 4:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:17 error 'require' is not defined no-undef - 6:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:15 error 'require' is not defined no-undef - 7:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:24 error 'require' is not defined no-undef - 11:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 11:33 error 'require' is not defined no-undef - 215:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/OpenAICompletionService.js - 1:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:25 error 'require' is not defined no-undef - 2:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:18 error 'require' is not defined no-undef - 3:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:21 error 'require' is not defined no-undef - 4:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:24 error 'require' is not defined no-undef - 5:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:21 error 'require' is not defined no-undef - 6:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:18 error 'require' is not defined no-undef - 7:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:17 error 'require' is not defined no-undef - 8:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:24 error 'require' is not defined no-undef - 12:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 12:17 error 'require' is not defined no-undef - 13:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 13:19 error 'require' is not defined no-undef - 109:44 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 109:44 error 'require' is not defined no-undef - 187:41 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 240:26 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 331:13 error Unreachable code no-unreachable - 388:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/OpenAIImageGenerationService.js - 1:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:21 error 'require' is not defined no-undef - 2:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:24 error 'require' is not defined no-undef - 3:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:21 error 'require' is not defined no-undef - 7:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:17 error 'require' is not defined no-undef - 96:16 error Unexpected constant truthiness on the left-hand side of a `||` expression no-constant-binary-expression - 104:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/PuterAIModule.js - 1:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:26 error 'require' is not defined no-undef - 2:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:16 error 'require' is not defined no-undef - 8:40 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:40 error 'require' is not defined no-undef - 14:14 error Redundant double negation no-extra-boolean-cast - 15:44 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 15:44 error 'require' is not defined no-undef - 19:14 error Redundant double negation no-extra-boolean-cast - 20:41 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:41 error 'require' is not defined no-undef - 24:14 error Redundant double negation no-extra-boolean-cast - 25:49 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:49 error 'require' is not defined no-undef - 28:54 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:54 error 'require' is not defined no-undef - 32:14 error Redundant double negation no-extra-boolean-cast - 33:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:39 error 'require' is not defined no-undef - 37:14 error Redundant double negation no-extra-boolean-cast - 38:43 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 38:43 error 'require' is not defined no-undef - 42:14 error Redundant double negation no-extra-boolean-cast - 43:42 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 43:42 error 'require' is not defined no-undef - 47:14 error Redundant double negation no-extra-boolean-cast - 48:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 48:39 error 'require' is not defined no-undef - 52:14 error Redundant double negation no-extra-boolean-cast - 53:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 53:36 error 'require' is not defined no-undef - 60:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 60:35 error 'require' is not defined no-undef - 63:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 63:37 error 'require' is not defined no-undef - 66:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 66:38 error 'require' is not defined no-undef - 71:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/TogetherAIService.js - 1:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:25 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:24 error 'require' is not defined no-undef - 4:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:17 error 'require' is not defined no-undef - 5:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:24 error 'require' is not defined no-undef - 9:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:26 error 'require' is not defined no-undef - 11:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 11:17 error 'require' is not defined no-undef - 142:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/puterai/XAIService.js - 1:18 error 'Anthropic' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:32 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:25 error 'require' is not defined no-undef - 4:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:25 error 'require' is not defined no-undef - 5:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:24 error 'require' is not defined no-undef - 6:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:24 error 'require' is not defined no-undef - 19:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:17 error 'require' is not defined no-undef - 194:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/selfhosted/ComplainAboutVersionsService.js - 19:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:25 error 'require' is not defined no-undef - 20:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:29 error 'require' is not defined no-undef - 35:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:16 error 'require' is not defined no-undef - 41:25 error 'process' is not defined no-undef - 64:17 error 'days' is assigned a value but never used @typescript-eslint/no-unused-vars - 106:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/selfhosted/DefaultUserService.js - 19:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:24 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:30 error 'require' is not defined no-undef - 22:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:29 error 'require' is not defined no-undef - 23:73 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:73 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:34 error 'require' is not defined no-undef - 26:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:30 error 'require' is not defined no-undef - 27:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:21 error 'require' is not defined no-undef - 28:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:34 error 'require' is not defined no-undef - 29:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:22 error 'require' is not defined no-undef - 30:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:18 error 'require' is not defined no-undef - 71:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 71:17 error 'require' is not defined no-undef - 72:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 72:17 error 'require' is not defined no-undef - 119:34 error 'user' is defined but never used @typescript-eslint/no-unused-vars - 158:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 158:24 error 'require' is not defined no-undef - 177:36 error 'Buffer' is not defined no-undef - 225:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 225:34 error 'require' is not defined no-undef - 243:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 243:34 error 'require' is not defined no-undef - 244:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 244:28 error 'require' is not defined no-undef - 279:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/selfhosted/DevWatcherService.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 52:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 52:15 error 'require' is not defined no-undef - 53:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 53:16 error 'require' is not defined no-undef - 63:9 error 'process' is not defined no-undef - 115:20 error 'process' is not defined no-undef - 140:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/selfhosted/SelfHostedModule.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:16 error 'require' is not defined no-undef - 26:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:39 error 'require' is not defined no-undef - 29:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:36 error 'require' is not defined no-undef - 32:46 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:46 error 'require' is not defined no-undef - 35:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:35 error 'require' is not defined no-undef - 36:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:23 error 'require' is not defined no-undef - 43:33 error '__dirname' is not defined no-undef - 93:45 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 93:45 error 'require' is not defined no-undef - 98:41 error '__dirname' is not defined no-undef - 102:41 error '__dirname' is not defined no-undef - 106:41 error '__dirname' is not defined no-undef - 110:41 error '__dirname' is not defined no-undef - 114:41 error '__dirname' is not defined no-undef - 118:41 error '__dirname' is not defined no-undef - 122:41 error '__dirname' is not defined no-undef - 126:41 error '__dirname' is not defined no-undef - 130:41 error '__dirname' is not defined no-undef - 134:41 error '__dirname' is not defined no-undef - 139:44 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 139:44 error 'require' is not defined no-undef - 141:33 error '__dirname' is not defined no-undef - 147:33 error '__dirname' is not defined no-undef - 153:33 error '__dirname' is not defined no-undef - 161:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/selfhosted/SelfhostedService.js - 19:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:23 error 'require' is not defined no-undef - 20:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:39 error 'require' is not defined no-undef - 21:9 error 'HelloWorld' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:24 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 39:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/selfhosted/ServeSingeFileService.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 35:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/selfhosted/ServeStaticFilesService.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 30:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:29 error 'require' is not defined no-undef - 35:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/test-drivers/TestAssetHostService.js - 1:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:21 error 'require' is not defined no-undef - 6:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:23 error 'require' is not defined no-undef - 8:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:33 error 'require' is not defined no-undef - 9:24 error '__dirname' is not defined no-undef - 14:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/test-drivers/TestDriversModule.js - 1:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:26 error 'require' is not defined no-undef - 7:42 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:42 error 'require' is not defined no-undef - 10:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 10:38 error 'require' is not defined no-undef - 15:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/modules/test-drivers/TestImageService.js - 1:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:16 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:24 error 'require' is not defined no-undef - 4:9 error 'buffer_to_stream' is assigned a value but never used @typescript-eslint/no-unused-vars - 4:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:30 error 'require' is not defined no-undef - 83:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/monitor/PerformanceMonitor.js - 19:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:16 error 'require' is not defined no-undef - 124:1 error 'module' is not defined no-undef - 134:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 134:25 error 'require' is not defined no-undef - 177:40 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/monitor/Telemetry.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 20:41 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:41 error 'require' is not defined no-undef - 21:66 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:66 error 'require' is not defined no-undef - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 24:40 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:40 error 'require' is not defined no-undef - 25:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:32 error 'require' is not defined no-undef - 26:53 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:53 error 'require' is not defined no-undef - 27:9 error 'JaegerExporter' is assigned a value but never used @typescript-eslint/no-unused-vars - 27:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:28 error 'require' is not defined no-undef - 28:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:16 error 'require' is not defined no-undef - 29:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:31 error 'require' is not defined no-undef - 70:15 error 'exporter' is assigned a value but never used @typescript-eslint/no-unused-vars - 78:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/IdentifierUtil.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:36 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 74:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/definitions/Mapping.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:9 error 'instance_' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:23 error 'require' is not defined no-undef - 21:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:36 error 'require' is not defined no-undef - 22:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:22 error 'require' is not defined no-undef - 23:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:20 error 'require' is not defined no-undef - 24:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:23 error 'require' is not defined no-undef - 93:38 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 108:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/definitions/PropType.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:36 error 'require' is not defined no-undef - 47:27 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 60:27 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 142:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/definitions/Property.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:36 error 'require' is not defined no-undef - 96:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/AppES.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:26 error 'get_user' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:59 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:59 error 'require' is not defined no-undef - 22:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:35 error 'require' is not defined no-undef - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:29 error 'require' is not defined no-undef - 26:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:26 error 'require' is not defined no-undef - 27:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:20 error 'require' is not defined no-undef - 29:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:16 error 'require' is not defined no-undef - 51:28 error 'extra' is defined but never used @typescript-eslint/no-unused-vars - 249:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/AppLimitedES.js - 19:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:35 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:20 error 'require' is not defined no-undef - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 23:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:20 error 'require' is not defined no-undef - 87:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/BaseES.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:36 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 139:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/ESBuilder.js - 62:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/Entity.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:36 error 'require' is not defined no-undef - 41:25 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 149:35 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 162:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/MaxLimitES.js - 19:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:20 error 'require' is not defined no-undef - 43:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/NotificationES.js - 19:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:17 error 'require' is not defined no-undef - 20:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:27 error 'require' is not defined no-undef - 21:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:20 error 'require' is not defined no-undef - 60:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/OwnerLimitedES.js - 19:9 error 'AppUnderUserActorType' is assigned a value but never used @typescript-eslint/no-unused-vars - 19:50 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:50 error 'require' is not defined no-undef - 20:7 error 'context' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:13 error 'Or' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 23:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:20 error 'require' is not defined no-undef - 24:9 error 'Entity' is assigned a value but never used @typescript-eslint/no-unused-vars - 24:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:20 error 'require' is not defined no-undef - 58:13 error 'owner_id' is assigned a value but never used @typescript-eslint/no-unused-vars - 67:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/ProtectedAppES.js - 19:50 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:50 error 'require' is not defined no-undef - 20:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:28 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 100:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/ReadOnlyES.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:20 error 'require' is not defined no-undef - 31:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/SQLES.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:20 error 'require' is not defined no-undef - 22:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:18 error 'require' is not defined no-undef - 23:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:20 error 'require' is not defined no-undef - 24:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:36 error 'require' is not defined no-undef - 25:74 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:74 error 'require' is not defined no-undef - 26:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:22 error 'require' is not defined no-undef - 62:28 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 175:28 error 'extra' is defined but never used @typescript-eslint/no-unused-vars - 209:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 340:32 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 443:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/SetOwnerES.js - 19:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:22 error 'require' is not defined no-undef - 20:50 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:50 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:17 error 'require' is not defined no-undef - 23:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:20 error 'require' is not defined no-undef - 75:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/SubdomainES.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:16 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:16 error 'require' is not defined no-undef - 25:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:20 error 'require' is not defined no-undef - 83:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/ValidationES.js - 19:9 error 'AdvancedBase' is assigned a value but never used @typescript-eslint/no-unused-vars - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:20 error 'require' is not defined no-undef - 22:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:18 error 'require' is not defined no-undef - 108:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/entitystorage/WriteByOwnerOnlyES.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:9 error 'NodeInternalIDSelector' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:36 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 37:21 error 'old_entity' is assigned a value but never used @typescript-eslint/no-unused-vars - 58:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/mappings/__all__.js - 19:1 error 'module' is not defined no-undef - 20:10 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:10 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 22:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:19 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/mappings/access-token.js - 19:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/mappings/app.js - 19:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:16 error 'require' is not defined no-undef - 21:1 error 'module' is not defined no-undef - 61:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 61:37 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/mappings/notification.js - 19:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/mappings/subdomain.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:16 error 'require' is not defined no-undef - 22:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/proptypes/__all__.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:71 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:71 error 'require' is not defined no-undef - 21:25 error 'is_valid_url' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:57 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:57 error 'require' is not defined no-undef - 22:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:19 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:27 error 'require' is not defined no-undef - 25:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:23 error 'require' is not defined no-undef - 26:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:20 error 'require' is not defined no-undef - 27:9 error 'UserActorType' is assigned a value but never used @typescript-eslint/no-unused-vars - 27:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:27 error 'require' is not defined no-undef - 37:1 error 'module' is not defined no-undef - 64:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 67:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 70:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 82:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 85:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 88:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 124:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 124:26 error 'require' is not defined no-undef - 244:34 error 'name' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/om/query/query.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:36 error 'require' is not defined no-undef - 116:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/polyfill/to-string-higher-radix.js - 36:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/public/assets/bootstrap-5.1.3/js/bootstrap.bundle.js - 7:3 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:66 error 'module' is not defined no-undef - 8:35 error 'define' is not defined no-undef - 8:48 error 'define' is not defined no-undef - 206:5 warning Unused eslint-disable directive (no problems were reported from 'no-unused-expressions') - 207:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 634:9 warning Unused eslint-disable directive (no problems were reported from 'no-console') - 2052:56 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 2069:5 error Definition for rule 'import/no-unused-modules' was not found import/no-unused-modules - 2086:43 error Definition for rule 'unused-imports/no-unused-vars' was not found unused-imports/no-unused-vars - 2087:3 error 'includeScale' is defined but never used @typescript-eslint/no-unused-vars - 2359:5 error Definition for rule 'import/no-unused-modules' was not found import/no-unused-modules - 2415:24 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 2416:24 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 2436:22 error 'offsetParent' is assigned to itself no-self-assign - 2505:5 error Definition for rule 'import/no-unused-modules' was not found import/no-unused-modules - 2552:5 error Definition for rule 'import/no-unused-modules' was not found import/no-unused-modules - 3066:5 error Definition for rule 'import/no-unused-modules' was not found import/no-unused-modules - 3128:5 error Definition for rule 'import/no-unused-modules' was not found import/no-unused-modules - 3180:5 error Definition for rule 'import/no-unused-modules' was not found import/no-unused-modules - 3204:5 error Definition for rule 'import/no-unused-modules' was not found import/no-unused-modules - 3320:5 error Definition for rule 'import/no-unused-modules' was not found import/no-unused-modules - 3361:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 3661:56 error Definition for rule 'import/no-unused-modules' was not found import/no-unused-modules - 3666:7 error Definition for rule 'import/no-unused-modules' was not found import/no-unused-modules - 3671:7 error Definition for rule 'import/no-unused-modules' was not found import/no-unused-modules - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/public/assets/bootstrap-5.1.3/js/bootstrap.bundle.min.js - 6:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69 error 'module' is not defined no-undef - 6:115 error 'define' is not defined no-undef - 6:126 error 'define' is not defined no-undef - 6:405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1658 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1831 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2525 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2566 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4551 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4700 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5048 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5079 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5976 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6266 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6417 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7575 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7887 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8377 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8795 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9442 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10307 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10842 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10921 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11106 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11899 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12588 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12832 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13911 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14140 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14363 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15017 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15239 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15314 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15454 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15520 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15967 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16387 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16919 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17121 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17187 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17891 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18006 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18226 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18642 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18892 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18953 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19030 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19653 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19743 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19768 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19916 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20167 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21568 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22028 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:22109 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22295 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 6:24874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25498 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:25522 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:25612 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25709 error 'w' is assigned to itself no-self-assign - 6:26462 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28154 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29814 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31390 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32464 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32585 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32796 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33434 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34103 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35646 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35765 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35855 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35886 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35937 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36387 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36500 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36866 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36992 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37251 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38146 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38497 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38644 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38753 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38799 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38844 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38927 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40893 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41429 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41491 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41580 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42521 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42777 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43992 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44789 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45397 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45612 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45931 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46518 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46773 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46902 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47016 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47648 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47841 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48081 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48551 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48689 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48906 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:49102 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:49209 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:49723 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50121 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50489 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50767 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:51025 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:51556 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:51965 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52133 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52174 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52355 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52442 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52655 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52787 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52814 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53802 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54068 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54164 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54273 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54334 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54628 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54921 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55466 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55696 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55961 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:56465 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:56755 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:56950 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:56997 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:58127 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:60049 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:60530 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:60757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:61280 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:61577 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:61901 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:62253 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:62498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:62759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:63026 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:63052 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:63309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:63727 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:65042 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:65413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:65741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:65901 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:66204 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:66451 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:66730 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:66805 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:67067 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:67324 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:67819 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:68041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:68211 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:68341 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69400 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:70078 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:70594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:70899 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:70962 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:71781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:71976 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:72136 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:72296 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:72471 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:73026 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:73534 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:73795 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:73913 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:74124 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:74308 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:74401 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:74673 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:74774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:74971 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:75097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:75392 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:75635 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:75918 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:76069 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:76226 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:76423 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:76692 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:77063 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:77151 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:77451 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/public/assets/bootstrap-5.1.3/js/bootstrap.esm.js - 202:3 warning Unused eslint-disable directive (no problems were reported from 'no-unused-expressions') - 203:3 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 630:7 warning Unused eslint-disable directive (no problems were reported from 'no-console') - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/public/assets/bootstrap-5.1.3/js/bootstrap.esm.min.js - 6:45 error 'MAX_UID' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:57 error 'MILLISECONDS_MULTIPLIER' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:116 error 'toType' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:446 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2325 error 'onDOMContentLoaded' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:2348 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2629 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2687 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:3007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:3177 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:3243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:3297 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5462 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5725 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5896 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6524 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7466 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7795 error 'VERSION' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:7846 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7948 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8929 error 'DATA_KEY$c' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:8951 error 'EVENT_KEY$c' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:9035 error 'CLASS_NAME_FADE$5' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:9060 error 'CLASS_NAME_SHOW$8' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:9406 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9728 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9812 error 'DATA_KEY$b' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:9835 error 'EVENT_KEY$b' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:9860 error 'DATA_API_KEY$7' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:9887 error 'CLASS_NAME_ACTIVE$3' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:10273 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10501 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11035 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11374 error 'NODE_TEXT' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:11746 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12268 error 'DATA_KEY$a' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:12293 error 'EVENT_KEY$a' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:12320 error 'DATA_API_KEY$6' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:12347 error 'ARROW_LEFT_KEY' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:12374 error 'ARROW_RIGHT_KEY' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:12403 error 'TOUCHEVENT_COMPAT_WAIT' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:12430 error 'SWIPE_THRESHOLD' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:13352 error 'CLASS_NAME_CAROUSEL' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:13383 error 'CLASS_NAME_ACTIVE$2' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:13412 error 'CLASS_NAME_SLIDE' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:13585 error 'CLASS_NAME_POINTER_EVENT' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:13626 error 'SELECTOR_ACTIVE$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:13874 error 'SELECTOR_INDICATOR' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:14017 error 'POINTER_TYPE_TOUCH' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:14044 error 'POINTER_TYPE_PEN' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:14121 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14688 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14784 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14977 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15887 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15978 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16419 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16612 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16856 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17435 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18063 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18311 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18571 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19251 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19492 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19724 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19802 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20442 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20817 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20921 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21290 error 'EVENT_KEY$9' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:21317 error 'DATA_API_KEY$5' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:21621 error 'CLASS_NAME_SHOW$7' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:21646 error 'CLASS_NAME_COLLAPSE' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:21677 error 'CLASS_NAME_COLLAPSING' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:21712 error 'CLASS_NAME_COLLAPSED' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:21801 error 'CLASS_NAME_HORIZONTAL' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:22038 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22307 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22373 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22602 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23140 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23261 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23525 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23947 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24245 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24306 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24383 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25265 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25290 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25456 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25654 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25738 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26018 error 'DATA_KEY$8' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26043 error 'EVENT_KEY$8' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26070 error 'DATA_API_KEY$4' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26097 error 'ESCAPE_KEY$2' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26119 error 'SPACE_KEY' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26137 error 'TAB_KEY$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26153 error 'ARROW_UP_KEY' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26176 error 'ARROW_DOWN_KEY' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26203 error 'RIGHT_MOUSE_BUTTON' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26568 error 'CLASS_NAME_SHOW$6' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26593 error 'CLASS_NAME_DROPUP' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26620 error 'CLASS_NAME_DROPEND' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26649 error 'CLASS_NAME_DROPSTART' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26682 error 'CLASS_NAME_NAVBAR' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:26793 error 'SELECTOR_NAVBAR_NAV' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:27584 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28124 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28706 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28768 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28857 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29884 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30157 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31490 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32360 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33566 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33742 error 'SELECTOR_STICKY_CONTENT' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:33968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34586 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34872 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35021 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35145 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35520 error 'CLASS_NAME_FADE$4' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:35545 error 'CLASS_NAME_SHOW$5' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:35640 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35719 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35914 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36011 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36400 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36598 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36925 error 'DATA_KEY$7' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:37063 error 'TAB_KEY' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:37077 error 'TAB_NAV_FORWARD' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:37103 error 'TAB_NAV_BACKWARD' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:37162 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37300 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37543 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37772 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37887 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38091 error 'DATA_KEY$6' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:38113 error 'EVENT_KEY$6' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:38137 error 'DATA_API_KEY$3' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:38164 error 'ESCAPE_KEY$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:38756 error 'CLASS_NAME_OPEN' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:38785 error 'CLASS_NAME_FADE$3' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:38810 error 'CLASS_NAME_SHOW$4' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:38835 error 'CLASS_NAME_STATIC' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:38868 error 'OPEN_SELECTOR$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:38898 error 'SELECTOR_DIALOG' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:38930 error 'SELECTOR_MODAL_BODY' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:39065 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39500 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39937 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40223 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40545 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41159 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41577 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41753 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41826 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42180 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42393 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42558 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42613 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43104 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43235 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43483 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43660 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43929 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44050 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44143 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44203 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44440 error 'DATA_KEY$5' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:44466 error 'EVENT_KEY$5' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:44494 error 'DATA_API_KEY$2' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:44572 error 'ESCAPE_KEY' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:44709 error 'CLASS_NAME_SHOW$3' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:45160 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45464 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45890 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46034 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46272 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46573 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47137 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47434 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47678 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:49470 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:49573 error 'DATA_KEY$4' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:49597 error 'EVENT_KEY$4' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:49623 error 'CLASS_PREFIX$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51001 error 'CLASS_NAME_FADE$2' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51026 error 'CLASS_NAME_MODAL' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51051 error 'CLASS_NAME_SHOW$2' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51076 error 'HOVER_STATE_SHOW' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51100 error 'HOVER_STATE_OUT' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51122 error 'SELECTOR_TOOLTIP_INNER' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51162 error 'SELECTOR_MODAL' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51186 error 'EVENT_MODAL_HIDE' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51219 error 'TRIGGER_HOVER' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51241 error 'TRIGGER_FOCUS' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51263 error 'TRIGGER_CLICK' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51285 error 'TRIGGER_MANUAL' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:51464 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:51972 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52203 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53012 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53340 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53727 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53990 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54276 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54565 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54591 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54863 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55316 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:56658 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57040 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57571 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57904 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:58151 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:58456 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:58535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:58810 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:59080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:59631 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:59853 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:60023 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:60153 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:60458 error 'DATA_KEY$3' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:60482 error 'EVENT_KEY$3' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:60508 error 'CLASS_PREFIX' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:61176 error 'SELECTOR_CONTENT' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:61462 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:61955 error 'DATA_KEY$2' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:62009 error 'DATA_API_KEY$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:62279 error 'CLASS_NAME_DROPDOWN_ITEM' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:62320 error 'CLASS_NAME_ACTIVE$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:62392 error 'SELECTOR_NAV_LIST_GROUP$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:62438 error 'SELECTOR_NAV_LINKS' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:62469 error 'SELECTOR_NAV_ITEMS' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:62500 error 'SELECTOR_LIST_ITEMS' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:62605 error 'SELECTOR_DROPDOWN$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:62637 error 'SELECTOR_DROPDOWN_TOGGLE$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:62683 error 'METHOD_OFFSET' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:62706 error 'METHOD_POSITION' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:62788 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:63333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:63712 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:63775 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:64656 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:64851 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:65011 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:65201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:65414 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:66071 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:66229 error 'NAME$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:66242 error 'DATA_KEY$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:66262 error 'EVENT_KEY$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:66284 error 'DATA_API_KEY' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:66468 error 'CLASS_NAME_DROPDOWN_MENU' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:66509 error 'CLASS_NAME_ACTIVE' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:66536 error 'CLASS_NAME_FADE$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:66561 error 'CLASS_NAME_SHOW$1' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:66586 error 'SELECTOR_DROPDOWN' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:66616 error 'SELECTOR_NAV_LIST_GROUP' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:66660 error 'SELECTOR_ACTIVE' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:66825 error 'SELECTOR_DROPDOWN_TOGGLE' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:67314 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:67608 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:67746 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:68010 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:68214 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:68313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:68604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:68724 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:68922 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69002 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69159 error 'DATA_KEY' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:69179 error 'EVENT_KEY' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:69455 error 'CLASS_NAME_FADE' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:69478 error 'CLASS_NAME_HIDE' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:69501 error 'CLASS_NAME_SHOW' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:69524 error 'CLASS_NAME_SHOWING' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:69717 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69976 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:70285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:70449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:70623 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:70841 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:71149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:71520 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:71608 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:71932 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:72178 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/public/assets/bootstrap-5.1.3/js/bootstrap.js - 7:3 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:66 error 'module' is not defined no-undef - 7:91 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:91 error 'require' is not defined no-undef - 8:35 error 'define' is not defined no-undef - 8:48 error 'define' is not defined no-undef - 226:5 warning Unused eslint-disable directive (no problems were reported from 'no-unused-expressions') - 227:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 654:9 warning Unused eslint-disable directive (no problems were reported from 'no-console') - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/public/assets/bootstrap-5.1.3/js/bootstrap.min.js - 6:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69 error 'module' is not defined no-undef - 6:86 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:86 error 'require' is not defined no-undef - 6:140 error 'define' is not defined no-undef - 6:151 error 'define' is not defined no-undef - 6:720 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1973 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2146 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2196 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2438 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2793 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2840 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4360 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4866 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5363 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6291 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6335 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6581 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6642 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7890 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8202 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8491 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8692 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9110 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10627 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11162 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11242 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11427 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12287 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12719 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12912 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13156 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13692 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14235 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14464 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14687 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15341 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15563 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15638 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15778 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15844 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16098 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16304 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16632 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16724 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17256 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17458 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17524 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17742 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18343 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18563 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18589 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18979 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19229 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19290 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19367 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19990 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20105 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20253 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20445 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20504 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21470 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22504 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22566 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22655 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23595 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23851 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25078 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25875 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26483 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26698 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27017 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27235 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27859 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27988 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28102 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28560 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28734 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28827 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28927 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29167 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29335 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29637 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29775 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29992 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30188 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30809 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31207 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31575 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31853 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32111 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32642 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33219 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33260 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33441 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33528 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33873 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33900 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34384 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34491 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34727 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34888 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35154 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35250 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35322 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35420 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35714 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36412 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36552 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36782 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37047 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37551 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37841 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38036 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38083 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41134 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41615 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41842 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42365 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42662 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42986 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43350 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43595 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43856 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44406 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44824 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46139 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46510 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46838 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46998 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47301 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47548 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47827 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47902 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48164 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48421 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48916 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:49138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:49308 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:49438 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50497 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:51175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:51691 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:51996 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52059 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52878 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53073 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53233 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53393 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53568 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54631 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54892 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55010 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55770 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55871 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:56068 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:56194 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:56489 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:56732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57166 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57323 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57520 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57789 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:58160 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:58248 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:58548 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/public/assets/js/app.js - 1:1 error '$' is not defined no-undef - 2:8 error 'page' is not defined no-undef - 3:9 error '$' is not defined no-undef - 4:14 error 'page' is not defined no-undef - 5:9 error '$' is not defined no-undef - 6:14 error 'page' is not defined no-undef - 7:9 error '$' is not defined no-undef - 15:1 error '$' is not defined no-undef - 16:28 error '$' is not defined no-undef - 17:22 error '$' is not defined no-undef - 20:8 error 'is_email' is not defined no-undef - 32:5 error '$' is not defined no-undef - 34:5 error '$' is not defined no-undef - 46:13 error '$' is not defined no-undef - 47:13 error '$' is not defined no-undef - 52:1 error '$' is not defined no-undef - 52:53 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 53:28 error '$' is not defined no-undef - 56:8 error 'is_email' is not defined no-undef - 66:5 error '$' is not defined no-undef - 68:5 error '$' is not defined no-undef - 75:13 error '$' is not defined no-undef - 76:13 error '$' is not defined no-undef - 77:13 error '$' is not defined no-undef - 80:13 error '$' is not defined no-undef - 81:13 error '$' is not defined no-undef - 86:1 error '$' is not defined no-undef - 86:40 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 95:20 error '$' is not defined no-undef - 98:17 error '$' is not defined no-undef - 101:20 error '$' is not defined no-undef - 104:23 error '$' is not defined no-undef - 107:5 error '$' is not defined no-undef - 109:5 error '$' is not defined no-undef - 127:13 error '$' is not defined no-undef - 128:13 error '$' is not defined no-undef - 130:13 error '$' is not defined no-undef - 135:1 error '$' is not defined no-undef - 141:1 error '$' is not defined no-undef - 141:53 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 145:20 error '$' is not defined no-undef - 146:17 error '$' is not defined no-undef - 147:19 error '$' is not defined no-undef - 150:5 error '$' is not defined no-undef - 152:5 error '$' is not defined no-undef - 162:28 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 163:13 error '$' is not defined no-undef - 164:13 error '$' is not defined no-undef - 165:13 error '$' is not defined no-undef - 166:13 error '$' is not defined no-undef - 169:13 error '$' is not defined no-undef - 170:13 error '$' is not defined no-undef - 172:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/public/assets/js/jquery-3.6.0/jquery-3.6.0.min.js - 2:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:29 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:71 error 'module' is not defined no-undef - 2:86 error 'module' is not defined no-undef - 2:794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:1202 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:2260 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:2317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:3420 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:3527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:3576 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:5642 error Unexpected control character(s) in regular expression: \x1f, \x1f no-control-regex - 2:5946 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:6029 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:6125 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:6349 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:6805 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:6857 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:7057 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:7076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:7361 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:7381 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:7627 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:8235 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:9864 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:9899 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:10209 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:10218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:10471 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:11284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:11795 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:12223 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:12791 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:12829 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:13191 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:13328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:13812 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:13821 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:14124 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:15144 error Unexpected constant truthiness on the left-hand side of a `&&` expression no-constant-binary-expression - 2:15952 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:16100 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:16223 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:16421 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:16795 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 2:17086 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:17485 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19305 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19405 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19465 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19649 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20422 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20477 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20818 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:21295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:21507 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:21747 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:21780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22090 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:22131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22140 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22201 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:22244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22688 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:23843 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:24201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:24367 error Unnecessary escape character: \/ no-useless-escape - 2:24637 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:24881 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:25340 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:25722 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:26113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:27949 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28081 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28378 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28708 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:29668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:29769 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:29979 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:30112 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:30353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:30474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:30595 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:30814 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31194 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31537 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31746 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31832 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31972 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:32815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:33495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:33977 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:33979 error Empty block statement no-empty - 2:34017 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:34433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35603 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35847 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:35881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35908 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:36283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:36731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:36764 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:36820 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:37014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:37409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:37630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:37724 error Unnecessary escape character: \/ no-useless-escape - 2:37787 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:38732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39346 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39373 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:39406 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39489 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:39498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39685 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:39687 error Empty block statement no-empty - 2:40148 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:40278 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:40527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:40701 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:40790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:41122 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:41881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42037 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42904 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:43444 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:43572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:43617 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:44447 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:44556 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:44683 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:45252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:45373 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:45506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:47601 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:47836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48028 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48169 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48491 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48611 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48837 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:49237 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:49283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:49356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:49591 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:49754 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50065 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50717 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50795 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:50797 error Empty block statement no-empty - 2:50800 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50944 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:51218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:51497 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:52020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:52051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:52347 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:52634 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:54092 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:55030 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:55649 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:57033 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:57521 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:58356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:58580 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:58859 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:59285 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:60379 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:60454 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:60793 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:60935 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:61000 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:61144 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:61320 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:61391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:62109 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:62196 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:62474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:62894 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63190 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63351 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63528 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63569 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63626 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63708 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63966 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64600 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64638 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64694 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64764 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:65293 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:66086 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:66650 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:67421 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:67829 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:67895 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:67904 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:67939 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68199 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:68265 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:68331 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68644 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68672 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:68681 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68949 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:69048 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:69157 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:70093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:70239 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:70544 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:71280 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:71294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:71409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:72443 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:72581 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:72825 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:72827 error Empty block statement no-empty - 2:73168 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:73321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:74353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:74440 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:74449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:74849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:74922 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:75721 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:76034 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:76794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:76814 error 'r.href' is assigned to itself no-self-assign - 2:76890 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:78199 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:78284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:78396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:78567 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:78781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:79368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:80481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:80934 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:81162 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:81650 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:81652 error Empty block statement no-empty - 2:81704 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82150 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82182 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82643 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82788 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82827 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83137 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83303 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83415 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83516 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83563 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:84258 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:84768 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:84921 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:85127 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:85470 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:86295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:86457 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:87047 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:88628 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:88858 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:89201 error 'define' is not defined no-undef - 2:89213 error 'define' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/public/assets/js/timeago.min.js - 1:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71 error 'exports' is not defined no-undef - 1:107 error 'define' is not defined no-undef - 1:118 error 'define' is not defined no-undef - 1:969 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1247 error Expected a conditional expression and instead saw an assignment no-cond-assign - 1:1295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1593 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/_default.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 23:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:15 error 'require' is not defined no-undef - 24:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:13 error 'require' is not defined no-undef - 25:7 error 'auth' is assigned a value but never used @typescript-eslint/no-unused-vars - 25:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:14 error 'require' is not defined no-undef - 26:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:21 error 'require' is not defined no-undef - 27:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:21 error 'require' is not defined no-undef - 28:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:25 error 'require' is not defined no-undef - 76:40 error '__dirname' is not defined no-undef - 86:40 error '__dirname' is not defined no-undef - 93:40 error '__dirname' is not defined no-undef - 104:44 error '__dirname' is not defined no-undef - 111:44 error '__dirname' is not defined no-undef - 118:44 error '__dirname' is not defined no-undef - 147:61 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 147:61 error 'require' is not defined no-undef - 154:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 158:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 159:13 error 'authed' is assigned a value but never used @typescript-eslint/no-unused-vars - 207:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 207:36 error 'require' is not defined no-undef - 242:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 242:36 error 'require' is not defined no-undef - 292:40 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 292:40 error 'require' is not defined no-undef - 317:47 error '__dirname' is not defined no-undef - 380:19 error 'manifest' is assigned a value but never used @typescript-eslint/no-unused-vars - 432:18 error '__dirname' is not defined no-undef - 496:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/apps.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:21 error 'require' is not defined no-undef - 26:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:19 error 'require' is not defined no-undef - 33:59 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 98:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 98:8 error 'require' is not defined no-undef - 144:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/app-uid-from-origin.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:9 error 'UserActorType' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:27 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 28:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/check-app-acl.endpoint.js - 1:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:18 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:21 error 'require' is not defined no-undef - 4:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:21 error 'require' is not defined no-undef - 5:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:27 error 'require' is not defined no-undef - 6:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:20 error 'require' is not defined no-undef - 7:57 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:57 error 'require' is not defined no-undef - 8:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:21 error 'require' is not defined no-undef - 10:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/check-app.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:9 error 'LLMkdir' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:9 error 'NodeUIDSelector' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:26 error 'NodePathSelector' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:47 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:47 error 'require' is not defined no-undef - 23:9 error 'NodeChildSelector' is assigned a value but never used @typescript-eslint/no-unused-vars - 23:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:31 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:57 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:57 error 'require' is not defined no-undef - 26:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:28 error 'require' is not defined no-undef - 27:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:21 error 'require' is not defined no-undef - 29:1 error 'module' is not defined no-undef - 33:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/configure-2fa.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:22 error 'require' is not defined no-undef - 22:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:27 error 'require' is not defined no-undef - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 26:1 error 'module' is not defined no-undef - 30:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 40:11 error 'user' is assigned a value but never used @typescript-eslint/no-unused-vars - 65:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 65:28 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/create-access-token.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 23:1 error 'module' is not defined no-undef - 27:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/delete-own-user.js - 19:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:19 error 'require' is not defined no-undef - 20:48 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:48 error 'require' is not defined no-undef - 22:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:16 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 28:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 29:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:20 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/get-user-app-token.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:47 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:47 error 'require' is not defined no-undef - 23:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:31 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:27 error 'require' is not defined no-undef - 26:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:21 error 'require' is not defined no-undef - 28:1 error 'module' is not defined no-undef - 32:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/grant-user-app.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:27 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 28:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 53:11 error 'token' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/grant-user-group.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:27 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 28:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/grant-user-user.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:27 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 28:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/list-permissions.js - 19:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:19 error 'require' is not defined no-undef - 20:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:31 error 'require' is not defined no-undef - 21:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:27 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:18 error 'require' is not defined no-undef - 26:1 error 'module' is not defined no-undef - 30:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/list-sessions.js - 19:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:19 error 'require' is not defined no-undef - 20:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:27 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:18 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 28:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/revoke-session.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:27 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 28:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/revoke-user-app.js - 19:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:19 error 'require' is not defined no-undef - 20:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:27 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:18 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 28:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 53:11 error 'token' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/revoke-user-group.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:27 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 28:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/auth/revoke-user-user.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:27 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 28:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/change_email.js - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:18 error 'require' is not defined no-undef - 22:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:22 error 'require' is not defined no-undef - 24:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:16 error 'require' is not defined no-undef - 26:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:13 error 'require' is not defined no-undef - 27:42 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:42 error 'require' is not defined no-undef - 31:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 86:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 86:20 error 'require' is not defined no-undef - 95:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/change_username.js - 20:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:16 error 'require' is not defined no-undef - 21:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:19 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:27 error 'require' is not defined no-undef - 24:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:18 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 27:1 error 'module' is not defined no-undef - 32:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 34:48 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:48 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/confirm-email.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 24:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:18 error 'require' is not defined no-undef - 31:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:8 error 'require' is not defined no-undef - 31:58 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:58 error 'require' is not defined no-undef - 46:8 error 'kv' is not defined no-undef - 49:5 error 'kv' is not defined no-undef - 90:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 90:24 error 'require' is not defined no-undef - 100:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/contactUs.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:43 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:43 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 31:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:8 error 'require' is not defined no-undef - 84:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/delete-site.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 31:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:8 error 'require' is not defined no-undef - 52:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/df.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 23:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:14 error 'require' is not defined no-undef - 32:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:8 error 'require' is not defined no-undef - 39:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 39:18 error 'require' is not defined no-undef - 59:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 59:8 error 'require' is not defined no-undef - 66:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 66:18 error 'require' is not defined no-undef - 81:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/down.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:12 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 26:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:30 error 'require' is not defined no-undef - 27:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:20 error 'require' is not defined no-undef - 34:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:8 error 'require' is not defined no-undef - 57:11 error 'db' is assigned a value but never used @typescript-eslint/no-unused-vars - 58:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 58:19 error 'require' is not defined no-undef - 59:12 error 'chkperm' is assigned a value but never used @typescript-eslint/no-unused-vars - 59:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 59:23 error 'require' is not defined no-undef - 61:11 error 'AWS' is assigned a value but never used @typescript-eslint/no-unused-vars - 61:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 61:24 error 'require' is not defined no-undef - 96:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/drivers/call.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:24 error 'require' is not defined no-undef - 22:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:22 error 'require' is not defined no-undef - 23:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:24 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:20 error 'require' is not defined no-undef - 26:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:24 error 'require' is not defined no-undef - 27:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:29 error 'require' is not defined no-undef - 53:1 error 'module' is not defined no-undef - 57:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 98:9 error Unexpected 'debugger' statement no-debugger - 119:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 119:20 error 'require' is not defined no-undef - 120:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 120:29 error 'require' is not defined no-undef - 132:39 error 'details' is defined but never used @typescript-eslint/no-unused-vars - 143:24 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 164:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 168:18 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 178:39 error 'details' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/drivers/list-interfaces.js - 19:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:19 error 'require' is not defined no-undef - 20:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:23 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 23:1 error 'module' is not defined no-undef - 27:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/drivers/usage.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:27 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:38 error 'require' is not defined no-undef - 27:1 error 'module' is not defined no-undef - 31:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 68:11 error 'user_is_verified' is assigned a value but never used @typescript-eslint/no-unused-vars - 154:14 error Unexpected constant condition no-constant-condition - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/drivers/xd.js - 19:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:19 error 'require' is not defined no-undef - 68:15 error 'window' is already defined as a built-in global variable no-redeclare - 102:1 error 'module' is not defined no-undef - 105:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/file.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:100 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:100 error 'require' is not defined no-undef - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 31:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:8 error 'require' is not defined no-undef - 47:12 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 47:14 error Empty block statement no-empty - 55:11 error 'mime' is assigned a value but never used @typescript-eslint/no-unused-vars - 55:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 55:18 error 'require' is not defined no-undef - 203:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/batch/PathResolver.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:27 error 'NodeUIDSelector' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:47 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:47 error 'require' is not defined no-undef - 35:1 error 'module' is not defined no-undef - 63:31 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 82:32 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 104:31 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/batch/all.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 22:7 error 'PathResolver' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:22 error 'require' is not defined no-undef - 23:9 error 'WorkUnit' is assigned a value but never used @typescript-eslint/no-unused-vars - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:16 error 'require' is not defined no-undef - 26:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:27 error 'require' is not defined no-undef - 27:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:24 error 'require' is not defined no-undef - 28:9 error 'EWMA' is assigned a value but never used @typescript-eslint/no-unused-vars - 28:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:30 error 'require' is not defined no-undef - 29:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:21 error 'require' is not defined no-undef - 30:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:29 error 'require' is not defined no-undef - 31:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:24 error 'require' is not defined no-undef - 33:7 error 'commands' is assigned a value but never used @typescript-eslint/no-unused-vars - 33:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:18 error 'require' is not defined no-undef - 35:1 error 'module' is not defined no-undef - 45:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 54:9 error 'app' is assigned a value but never used @typescript-eslint/no-unused-vars - 141:9 error 'total' is assigned a value but never used @typescript-eslint/no-unused-vars - 142:9 error 'total_tbd' is assigned a value but never used @typescript-eslint/no-unused-vars - 164:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 189:36 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 227:9 error 'i' is assigned a value but never used @typescript-eslint/no-unused-vars - 228:9 error 'ended' is assigned a value but never used @typescript-eslint/no-unused-vars - 229:9 error 'ps' is assigned a value but never used @typescript-eslint/no-unused-vars - 231:49 error 'detais' is defined but never used @typescript-eslint/no-unused-vars - 298:21 error 'op_spec' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/copy.js - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:7 error '_path' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:15 error 'require' is not defined no-undef - 23:9 error 'NodeUIDSelector' is assigned a value but never used @typescript-eslint/no-unused-vars - 23:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:29 error 'require' is not defined no-undef - 24:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:20 error 'require' is not defined no-undef - 25:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:21 error 'require' is not defined no-undef - 26:9 error 'DatabaseFSEntryService' is assigned a value but never used @typescript-eslint/no-unused-vars - 26:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:36 error 'require' is not defined no-undef - 27:9 error 'ProxyContainer' is assigned a value but never used @typescript-eslint/no-unused-vars - 27:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:28 error 'require' is not defined no-undef - 32:1 error 'module' is not defined no-undef - 43:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 69:11 error 'log' is assigned a value but never used @typescript-eslint/no-unused-vars - 70:11 error 'filesystem' is assigned a value but never used @typescript-eslint/no-unused-vars - 73:12 error 'get_app' is assigned a value but never used @typescript-eslint/no-unused-vars - 73:21 error 'uuid2fsentry' is assigned a value but never used @typescript-eslint/no-unused-vars - 73:35 error 'is_shared_with_anyone' is assigned a value but never used @typescript-eslint/no-unused-vars - 73:58 error 'suggest_app_for_fsentry' is assigned a value but never used @typescript-eslint/no-unused-vars - 73:85 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 73:85 error 'require' is not defined no-undef - 74:9 error 'new_fsentries' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/delete.js - 20:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:16 error 'require' is not defined no-undef - 21:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:19 error 'require' is not defined no-undef - 22:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:22 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 28:1 error 'module' is not defined no-undef - 34:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 51:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 51:22 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/mkdir.js - 20:7 error 'config' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:16 error 'require' is not defined no-undef - 21:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:19 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:21 error 'require' is not defined no-undef - 30:1 error 'module' is not defined no-undef - 41:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/move.js - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 28:1 error 'module' is not defined no-undef - 39:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/read.js - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 21:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:19 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:20 error 'require' is not defined no-undef - 25:1 error 'module' is not defined no-undef - 39:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/readdir.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 21:7 error 'router' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:7 error 'auth' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:7 error 'config' is assigned a value but never used @typescript-eslint/no-unused-vars - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:28 error 'require' is not defined no-undef - 25:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:21 error 'require' is not defined no-undef - 26:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:19 error 'require' is not defined no-undef - 27:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:21 error 'require' is not defined no-undef - 28:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:19 error 'require' is not defined no-undef - 29:9 error 'LLReadDir' is assigned a value but never used @typescript-eslint/no-unused-vars - 29:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:23 error 'require' is not defined no-undef - 30:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:23 error 'require' is not defined no-undef - 35:1 error 'module' is not defined no-undef - 49:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 50:11 error 'monitor' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/rename.js - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:18 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 29:1 error 'module' is not defined no-undef - 40:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 58:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 58:18 error 'require' is not defined no-undef - 59:44 error 'uuid2fsentry' is assigned a value but never used @typescript-eslint/no-unused-vars - 59:58 error 'chkperm' is assigned a value but never used @typescript-eslint/no-unused-vars - 59:78 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 59:78 error 'require' is not defined no-undef - 60:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 60:19 error 'require' is not defined no-undef - 177:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 177:20 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/search.js - 1:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:19 error 'require' is not defined no-undef - 2:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:26 error 'require' is not defined no-undef - 3:9 error 'subdomain' is assigned a value but never used @typescript-eslint/no-unused-vars - 3:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:23 error 'require' is not defined no-undef - 4:7 error 'verified' is assigned a value but never used @typescript-eslint/no-unused-vars - 4:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:18 error 'require' is not defined no-undef - 6:1 error 'module' is not defined no-undef - 13:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/stat.js - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 38:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/token-read.js - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 21:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:19 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:20 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:34 error 'require' is not defined no-undef - 26:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:14 error 'require' is not defined no-undef - 28:1 error 'module' is not defined no-undef - 41:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/touch.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 31:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:8 error 'require' is not defined no-undef - 39:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 39:28 error 'require' is not defined no-undef - 40:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 40:19 error 'require' is not defined no-undef - 41:71 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 41:71 error 'require' is not defined no-undef - 165:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/filesystem_api/write.js - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:16 error 'require' is not defined no-undef - 26:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:24 error 'require' is not defined no-undef - 27:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:18 error 'require' is not defined no-undef - 28:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:27 error 'require' is not defined no-undef - 29:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:29 error 'require' is not defined no-undef - 34:1 error 'module' is not defined no-undef - 57:21 error 'mkdir' is assigned a value but never used @typescript-eslint/no-unused-vars - 57:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 57:30 error 'require' is not defined no-undef - 96:11 error 'on_first_file' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/get-dev-profile.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 23:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:14 error 'require' is not defined no-undef - 30:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:8 error 'require' is not defined no-undef - 51:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/get-launch-apps.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 29:71 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 40:12 error 'kv' is not defined no-undef - 49:13 error 'kv' is not defined no-undef - 147:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/healthcheck.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 32:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/hosting/puter-site.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:27 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 22:28 error 'id2path' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:40 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:40 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:54 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:54 error 'require' is not defined no-undef - 25:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:28 error 'require' is not defined no-undef - 26:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:20 error 'require' is not defined no-undef - 27:49 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:49 error 'require' is not defined no-undef - 28:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:18 error 'require' is not defined no-undef - 29:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:28 error 'require' is not defined no-undef - 35:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:15 error 'require' is not defined no-undef - 36:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:15 error 'require' is not defined no-undef - 37:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 37:17 error 'require' is not defined no-undef - 200:26 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 312:47 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 348:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/itemMetadata.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:92 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:92 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 30:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:8 error 'require' is not defined no-undef - 56:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 56:28 error 'require' is not defined no-undef - 63:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 63:24 error 'require' is not defined no-undef - 75:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 75:18 error 'require' is not defined no-undef - 92:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 92:27 error 'require' is not defined no-undef - 121:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/kvstore/clearItems.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:7 error 'config' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 29:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/kvstore/getItem.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:57 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:57 error 'require' is not defined no-undef - 26:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:21 error 'require' is not defined no-undef - 33:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:8 error 'require' is not defined no-undef - 44:13 error 'Buffer' is not defined no-undef - 83:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 83:24 error 'require' is not defined no-undef - 119:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/kvstore/listItems.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 23:1 error 'module' is not defined no-undef - 28:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/kvstore/setItem.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:35 error 'require' is not defined no-undef - 25:57 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:57 error 'require' is not defined no-undef - 26:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:21 error 'require' is not defined no-undef - 33:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:8 error 'require' is not defined no-undef - 52:8 error 'Buffer' is not defined no-undef - 54:13 error 'Buffer' is not defined no-undef - 86:9 error 'driver_result' is assigned a value but never used @typescript-eslint/no-unused-vars - 94:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/login.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:49 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:49 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 60:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 60:8 error 'require' is not defined no-undef - 60:58 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 60:58 error 'require' is not defined no-undef - 64:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 64:20 error 'require' is not defined no-undef - 65:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 65:23 error 'require' is not defined no-undef - 149:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 149:8 error 'require' is not defined no-undef - 149:58 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 149:58 error 'require' is not defined no-undef - 168:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 205:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 205:8 error 'require' is not defined no-undef - 205:58 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 205:58 error 'require' is not defined no-undef - 224:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 239:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 239:20 error 'require' is not defined no-undef - 272:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/logout.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 30:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:8 error 'require' is not defined no-undef - 30:58 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:58 error 'require' is not defined no-undef - 53:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 53:32 error 'require' is not defined no-undef - 60:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/open_item.js - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:27 error 'require' is not defined no-undef - 24:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:18 error 'require' is not defined no-undef - 25:57 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:57 error 'require' is not defined no-undef - 30:1 error 'module' is not defined no-undef - 40:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 70:14 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/passwd.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 21:46 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:46 error 'require' is not defined no-undef - 23:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:14 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 31:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:8 error 'require' is not defined no-undef - 35:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:20 error 'require' is not defined no-undef - 75:12 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 80:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/query/app.js - 19:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:19 error 'require' is not defined no-undef - 20:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:37 error 'require' is not defined no-undef - 21:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:17 error 'require' is not defined no-undef - 22:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:25 error 'require' is not defined no-undef - 23:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:14 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 28:1 error 'module' is not defined no-undef - 35:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 44:11 error 'collection_fetchers' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/rao.js - 22:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:17 error 'require' is not defined no-undef - 24:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:14 error 'require' is not defined no-undef - 25:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:16 error 'require' is not defined no-undef - 26:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:37 error 'require' is not defined no-undef - 27:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:22 error 'require' is not defined no-undef - 34:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:8 error 'require' is not defined no-undef - 64:23 error 'kv' is not defined no-undef - 78:9 error 'kv' is not defined no-undef - 87:21 error 'kv' is not defined no-undef - 93:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 93:22 error 'require' is not defined no-undef - 110:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/remove-site-dir.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 30:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:8 error 'require' is not defined no-undef - 42:37 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 42:37 error 'require' is not defined no-undef - 43:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 43:16 error 'require' is not defined no-undef - 70:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/removeItem.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 30:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:8 error 'require' is not defined no-undef - 41:13 error 'Buffer' is not defined no-undef - 47:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 47:16 error 'require' is not defined no-undef - 49:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 49:24 error 'require' is not defined no-undef - 54:10 error 'kv' is assigned a value but never used @typescript-eslint/no-unused-vars - 66:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/save_account.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:142 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:142 error 'require' is not defined no-undef - 23:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:14 error 'require' is not defined no-undef - 24:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:16 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 32:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:8 error 'require' is not defined no-undef - 32:58 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:58 error 'require' is not defined no-undef - 37:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 37:23 error 'require' is not defined no-undef - 38:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 38:20 error 'require' is not defined no-undef - 39:11 error 'jwt' is assigned a value but never used @typescript-eslint/no-unused-vars - 39:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 39:17 error 'require' is not defined no-undef - 40:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 40:28 error 'require' is not defined no-undef - 212:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/send-confirm-email.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:64 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:64 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 36:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:8 error 'require' is not defined no-undef - 61:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/send-pass-recovery-email.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:73 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:73 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 26:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:13 error 'require' is not defined no-undef - 33:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:8 error 'require' is not defined no-undef - 33:58 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:58 error 'require' is not defined no-undef - 38:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 38:23 error 'require' is not defined no-undef - 82:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 82:32 error 'require' is not defined no-undef - 83:15 error 'nodemailer' is assigned a value but never used @typescript-eslint/no-unused-vars - 83:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 83:28 error 'require' is not defined no-undef - 120:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/set-desktop-bg.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 22:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:36 error 'require' is not defined no-undef - 24:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:14 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 32:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:8 error 'require' is not defined no-undef - 57:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/set-pass-using-token.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:16 error 'require' is not defined no-undef - 23:52 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:52 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 26:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:13 error 'require' is not defined no-undef - 36:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:8 error 'require' is not defined no-undef - 36:58 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:58 error 'require' is not defined no-undef - 40:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 40:20 error 'require' is not defined no-undef - 82:12 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 87:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/set_layout.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 31:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:8 error 'require' is not defined no-undef - 47:62 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 47:62 error 'require' is not defined no-undef - 82:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/set_sort_by.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 31:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:8 error 'require' is not defined no-undef - 50:62 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 50:62 error 'require' is not defined no-undef - 91:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/sign.js - 20:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:31 error 'require' is not defined no-undef - 21:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:19 error 'require' is not defined no-undef - 22:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:18 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:27 error 'require' is not defined no-undef - 29:1 error 'module' is not defined no-undef - 35:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 139:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/signup.js - 20:201 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:201 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 22:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:19 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 29:1 error 'module' is not defined no-undef - 42:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 42:8 error 'require' is not defined no-undef - 42:58 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 42:58 error 'require' is not defined no-undef - 52:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 52:20 error 'require' is not defined no-undef - 53:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 53:28 error 'require' is not defined no-undef - 54:11 error 'jwt' is assigned a value but never used @typescript-eslint/no-unused-vars - 54:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 54:17 error 'require' is not defined no-undef - 55:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 55:23 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/sites.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 30:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:8 error 'require' is not defined no-undef - 38:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 38:23 error 'require' is not defined no-undef - 39:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 39:14 error 'require' is not defined no-undef - 77:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/suggest_apps.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 25:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:12 error 'require' is not defined no-undef - 26:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:36 error 'require' is not defined no-undef - 33:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:8 error 'require' is not defined no-undef - 45:79 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 45:79 error 'require' is not defined no-undef - 85:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/test.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 26:38 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 29:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/update-taskbar-items.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 22:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:36 error 'require' is not defined no-undef - 24:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:14 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 32:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:8 error 'require' is not defined no-undef - 63:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/user-protected/change-email.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:22 error 'require' is not defined no-undef - 21:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:13 error 'require' is not defined no-undef - 22:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:19 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 24:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:16 error 'require' is not defined no-undef - 26:1 error 'module' is not defined no-undef - 29:31 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/user-protected/change-password.js - 21:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:36 error 'require' is not defined no-undef - 22:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:22 error 'require' is not defined no-undef - 75:1 error 'module' is not defined no-undef - 78:31 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 88:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 88:24 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/user-protected/disable-2fa.js - 19:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:22 error 'require' is not defined no-undef - 21:1 error 'module' is not defined no-undef - 24:31 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/verify-pass-recovery-token.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 22:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:16 error 'require' is not defined no-undef - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 25:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:13 error 'require' is not defined no-undef - 35:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:8 error 'require' is not defined no-undef - 35:58 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:58 error 'require' is not defined no-undef - 60:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/version.js - 19:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:19 error 'require' is not defined no-undef - 21:1 error 'module' is not defined no-undef - 25:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/whoami.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 25:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:21 error 'require' is not defined no-undef - 26:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:30 error 'require' is not defined no-undef - 30:114 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:114 error 'require' is not defined no-undef - 31:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:14 error 'require' is not defined no-undef - 32:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:12 error 'require' is not defined no-undef - 33:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:15 error 'require' is not defined no-undef - 34:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:19 error 'require' is not defined no-undef - 35:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:21 error 'require' is not defined no-undef - 36:50 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:50 error 'require' is not defined no-undef - 45:21 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 113:77 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 115:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 115:8 error 'require' is not defined no-undef - 208:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/routers/writeFile.js - 20:7 error 'express' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 21:78 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:78 error 'require' is not defined no-undef - 22:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:12 error 'require' is not defined no-undef - 23:47 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:47 error 'require' is not defined no-undef - 24:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:19 error 'require' is not defined no-undef - 25:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:21 error 'require' is not defined no-undef - 26:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:28 error 'require' is not defined no-undef - 27:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:21 error 'require' is not defined no-undef - 28:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:19 error 'require' is not defined no-undef - 29:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:22 error 'require' is not defined no-undef - 30:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:21 error 'require' is not defined no-undef - 31:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:20 error 'require' is not defined no-undef - 32:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:20 error 'require' is not defined no-undef - 33:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:21 error 'require' is not defined no-undef - 34:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:22 error 'require' is not defined no-undef - 41:1 error 'module' is not defined no-undef - 47:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 47:8 error 'require' is not defined no-undef - 75:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 75:30 error 'require' is not defined no-undef - 102:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 102:30 error 'require' is not defined no-undef - 103:15 error '_path' is assigned a value but never used @typescript-eslint/no-unused-vars - 103:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 103:23 error 'require' is not defined no-undef - 104:15 error 'mime' is assigned a value but never used @typescript-eslint/no-unused-vars - 104:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 104:22 error 'require' is not defined no-undef - 171:16 error 'is_shared_with_anyone' is assigned a value but never used @typescript-eslint/no-unused-vars - 171:39 error 'suggest_app_for_fsentry' is assigned a value but never used @typescript-eslint/no-unused-vars - 171:64 error 'cp' is assigned a value but never used @typescript-eslint/no-unused-vars - 171:68 error 'validate_fsentry_name' is assigned a value but never used @typescript-eslint/no-unused-vars - 171:91 error 'convert_path_to_fsentry' is assigned a value but never used @typescript-eslint/no-unused-vars - 171:116 error 'uuid2fsentry' is assigned a value but never used @typescript-eslint/no-unused-vars - 171:140 error 'id2path' is assigned a value but never used @typescript-eslint/no-unused-vars - 171:149 error 'id2uuid' is assigned a value but never used @typescript-eslint/no-unused-vars - 171:160 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 171:160 error 'require' is not defined no-undef - 172:15 error '_path' is assigned a value but never used @typescript-eslint/no-unused-vars - 172:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 172:23 error 'require' is not defined no-undef - 173:15 error 'mime' is assigned a value but never used @typescript-eslint/no-unused-vars - 173:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 173:22 error 'require' is not defined no-undef - 215:13 error 'new_fsentries' is defined but never used @typescript-eslint/no-unused-vars - 236:16 error 'mkdir' is assigned a value but never used @typescript-eslint/no-unused-vars - 236:23 error 'uuid2fsentry' is assigned a value but never used @typescript-eslint/no-unused-vars - 236:47 error 'id2path' is assigned a value but never used @typescript-eslint/no-unused-vars - 236:58 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 236:58 error 'require' is not defined no-undef - 283:16 error 'validate_fsentry_name' is assigned a value but never used @typescript-eslint/no-unused-vars - 283:39 error 'convert_path_to_fsentry' is assigned a value but never used @typescript-eslint/no-unused-vars - 283:64 error 'uuid2fsentry' is assigned a value but never used @typescript-eslint/no-unused-vars - 283:88 error 'id2path' is assigned a value but never used @typescript-eslint/no-unused-vars - 283:97 error 'id2uuid' is assigned a value but never used @typescript-eslint/no-unused-vars - 283:108 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 283:108 error 'require' is not defined no-undef - 284:15 error '_path' is assigned a value but never used @typescript-eslint/no-unused-vars - 284:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 284:23 error 'require' is not defined no-undef - 285:15 error 'mime' is assigned a value but never used @typescript-eslint/no-unused-vars - 285:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 285:22 error 'require' is not defined no-undef - 346:73 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 346:73 error 'require' is not defined no-undef - 347:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 347:23 error 'require' is not defined no-undef - 348:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 348:22 error 'require' is not defined no-undef - 460:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 460:24 error 'require' is not defined no-undef - 472:26 error 'uuid2fsentry' is assigned a value but never used @typescript-eslint/no-unused-vars - 472:40 error 'id2path' is assigned a value but never used @typescript-eslint/no-unused-vars - 472:51 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 472:51 error 'require' is not defined no-undef - 473:15 error '_path' is assigned a value but never used @typescript-eslint/no-unused-vars - 473:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 473:23 error 'require' is not defined no-undef - 474:15 error 'mime' is assigned a value but never used @typescript-eslint/no-unused-vars - 474:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 474:22 error 'require' is not defined no-undef - 507:16 error 'uuid2fsentry' is assigned a value but never used @typescript-eslint/no-unused-vars - 507:30 error 'id2path' is assigned a value but never used @typescript-eslint/no-unused-vars - 507:41 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 507:41 error 'require' is not defined no-undef - 508:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 508:23 error 'require' is not defined no-undef - 515:13 error 'fsentry' is defined but never used @typescript-eslint/no-unused-vars - 529:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 529:34 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/AnomalyService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 78:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/AppInformationService.js - 20:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:34 error 'require' is not defined no-undef - 21:17 error 'SECOND' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:28 error 'require' is not defined no-undef - 22:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:29 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 25:7 error 'uuidv4' is assigned a value but never used @typescript-eslint/no-unused-vars - 25:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:16 error 'require' is not defined no-undef - 137:26 error 'kv' is not defined no-undef - 147:26 error 'kv' is not defined no-undef - 156:30 error 'kv' is not defined no-undef - 190:13 error 'kv' is not defined no-undef - 191:13 error 'kv' is not defined no-undef - 192:13 error 'kv' is not defined no-undef - 226:13 error 'kv' is not defined no-undef - 233:13 error 'kv' is not defined no-undef - 252:19 error 'sql' is assigned a value but never used @typescript-eslint/no-unused-vars - 270:13 error 'kv' is not defined no-undef - 288:26 error 'kv' is not defined no-undef - 293:25 error 'kv' is not defined no-undef - 316:26 error 'kv' is not defined no-undef - 321:25 error 'kv' is not defined no-undef - 369:22 error 'kv' is not defined no-undef - 387:9 error 'kv' is not defined no-undef - 388:9 error 'kv' is not defined no-undef - 389:9 error 'kv' is not defined no-undef - 412:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/BaseService.js - 20:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:22 error 'require' is not defined no-undef - 110:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/BootScriptService.js - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:21 error 'require' is not defined no-undef - 15:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 15:13 error 'require' is not defined no-undef - 70:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/CleanEmailService.js - 2:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:17 error 'require' is not defined no-undef - 3:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:21 error 'require' is not defined no-undef - 182:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/ClientOperationService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 49:20 error 'services' is defined but never used @typescript-eslint/no-unused-vars - 71:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/CommandService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 54:27 error 'description' is assigned a value but never used @typescript-eslint/no-unused-vars - 173:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/CommentService.js - 2:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:18 error 'require' is not defined no-undef - 3:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:21 error 'require' is not defined no-undef - 4:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:22 error 'require' is not defined no-undef - 5:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:27 error 'require' is not defined no-undef - 6:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:22 error 'require' is not defined no-undef - 7:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:21 error 'require' is not defined no-undef - 8:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:22 error 'require' is not defined no-undef - 21:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:17 error 'require' is not defined no-undef - 149:35 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 216:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/ConfigurableCountingService.js - 20:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:14 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 25:14 error 'v' is defined but never used @typescript-eslint/no-unused-vars - 132:67 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 141:68 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 213:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/Container.js - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 22:9 error 'Context' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:28 error 'require' is not defined no-undef - 24:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:24 error 'require' is not defined no-undef - 192:38 error 'k' is defined but never used @typescript-eslint/no-unused-vars - 239:30 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 245:30 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 277:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/ContextInitService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 110:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/DetailProviderService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 77:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/DevConsoleService.js - 20:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:31 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 31:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:13 error 'require' is not defined no-undef - 127:13 error 'process' is not defined no-undef - 197:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 197:26 error 'require' is not defined no-undef - 199:20 error 'process' is not defined no-undef - 200:21 error 'process' is not defined no-undef - 274:13 error 'process' is not defined no-undef - 277:17 error 'process' is not defined no-undef - 278:17 error 'process' is not defined no-undef - 292:13 error 'process' is not defined no-undef - 301:17 error 'process' is not defined no-undef - 305:17 error 'process' is not defined no-undef - 309:17 error 'process' is not defined no-undef - 315:17 error 'process' is not defined no-undef - 342:43 error 'replace' is defined but never used @typescript-eslint/no-unused-vars - 342:57 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 378:13 error 'process' is not defined no-undef - 379:13 error 'process' is not defined no-undef - 385:28 error 'process' is not defined no-undef - 399:28 error 'process' is not defined no-undef - 407:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/DevTODService.js - 20:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:29 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 23:7 error 'SOURCE_CODE_TIPS' is assigned a value but never used @typescript-eslint/no-unused-vars - 100:13 error 'process' is not defined no-undef - 101:19 error 'process' is not defined no-undef - 115:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 147:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/EmailService.js - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 177:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 177:21 error 'require' is not defined no-undef - 178:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 178:21 error 'require' is not defined no-undef - 179:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 179:17 error 'require' is not defined no-undef - 276:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/EngPortalService.js - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 35:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:19 error 'require' is not defined no-undef - 36:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:17 error 'require' is not defined no-undef - 152:24 error 'commands' is defined but never used @typescript-eslint/no-unused-vars - 198:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/EntityStoreService.js - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 21:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:28 error 'require' is not defined no-undef - 22:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:18 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 219:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/EventService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 173:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/FeatureFlagService.js - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:20 error 'require' is not defined no-undef - 4:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:28 error 'require' is not defined no-undef - 5:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:21 error 'require' is not defined no-undef - 131:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/FilesystemAPIService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 47:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 47:17 error 'require' is not defined no-undef - 50:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 50:17 error 'require' is not defined no-undef - 51:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 51:17 error 'require' is not defined no-undef - 52:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 52:17 error 'require' is not defined no-undef - 54:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 54:17 error 'require' is not defined no-undef - 55:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 55:17 error 'require' is not defined no-undef - 56:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 56:17 error 'require' is not defined no-undef - 57:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 57:17 error 'require' is not defined no-undef - 58:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 58:17 error 'require' is not defined no-undef - 59:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 59:17 error 'require' is not defined no-undef - 60:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 60:17 error 'require' is not defined no-undef - 61:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 61:17 error 'require' is not defined no-undef - 63:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 63:17 error 'require' is not defined no-undef - 66:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 66:17 error 'require' is not defined no-undef - 67:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 67:17 error 'require' is not defined no-undef - 70:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 70:17 error 'require' is not defined no-undef - 75:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/GetUserService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 99:30 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 100:34 error 'kv' is not defined no-undef - 110:30 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 119:30 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 131:21 error 'kv' is not defined no-undef - 150:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/HelloWorldService.js - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 42:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/HostDiskUsageService.js - 20:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:25 error 'require' is not defined no-undef - 21:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:22 error 'require' is not defined no-undef - 22:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:16 error 'require' is not defined no-undef - 54:34 error 'process' is not defined no-undef - 60:59 error 'process' is not defined no-undef - 63:57 error 'process' is not defined no-undef - 87:34 error 'process' is not defined no-undef - 91:59 error 'process' is not defined no-undef - 94:57 error 'process' is not defined no-undef - 130:23 error 'directory' is defined but never used @typescript-eslint/no-unused-vars - 147:31 error 'drive' is defined but never used @typescript-eslint/no-unused-vars - 164:26 error 'drive' is defined but never used @typescript-eslint/no-unused-vars - 169:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/KernelInfoService.js - 2:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:27 error 'require' is not defined no-undef - 3:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:21 error 'require' is not defined no-undef - 4:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:22 error 'require' is not defined no-undef - 5:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:21 error 'require' is not defined no-undef - 6:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:23 error 'require' is not defined no-undef - 139:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/LocalDiskStorageService.js - 20:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:38 error 'require' is not defined no-undef - 21:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:24 error 'require' is not defined no-undef - 22:48 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:48 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 36:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:13 error 'require' is not defined no-undef - 37:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 37:15 error 'require' is not defined no-undef - 70:32 error 'process' is not defined no-undef - 197:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/LockService.js - 20:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:20 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 178:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/MakeProdDebuggingLessAwfulService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:33 error 'require' is not defined no-undef - 42:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 42:13 error 'require' is not defined no-undef - 92:17 error 'log_lvl' is assigned a value but never used @typescript-eslint/no-unused-vars - 92:26 error 'crumbs' is assigned a value but never used @typescript-eslint/no-unused-vars - 92:34 error 'message' is assigned a value but never used @typescript-eslint/no-unused-vars - 92:51 error 'objects' is assigned a value but never used @typescript-eslint/no-unused-vars - 133:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/MountpointService.js - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 68:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/NotificationService.js - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 21:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:15 error 'require' is not defined no-undef - 22:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:22 error 'require' is not defined no-undef - 23:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:24 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 33:47 error 'self' is defined but never used @typescript-eslint/no-unused-vars - 70:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 70:17 error 'require' is not defined no-undef - 71:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 71:18 error 'require' is not defined no-undef - 275:32 error 'll' is not defined no-undef - 329:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/OperationTraceService.js - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:33 error 'require' is not defined no-undef - 23:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:25 error 'require' is not defined no-undef - 24:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:18 error 'require' is not defined no-undef - 25:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:38 error 'require' is not defined no-undef - 47:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 47:19 error 'require' is not defined no-undef - 167:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 272:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 408:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/ParameterService.js - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 245:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/PermissionAPIService.js - 20:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:22 error 'require' is not defined no-undef - 21:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:27 error 'require' is not defined no-undef - 22:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:22 error 'require' is not defined no-undef - 23:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:20 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 37:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 37:18 error 'require' is not defined no-undef - 49:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 49:17 error 'require' is not defined no-undef - 50:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 50:17 error 'require' is not defined no-undef - 51:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 51:17 error 'require' is not defined no-undef - 52:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 52:17 error 'require' is not defined no-undef - 53:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 53:17 error 'require' is not defined no-undef - 54:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 54:17 error 'require' is not defined no-undef - 55:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 55:17 error 'require' is not defined no-undef - 56:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 56:17 error 'require' is not defined no-undef - 59:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 59:13 error 'require' is not defined no-undef - 242:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/ProtectedAppService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:27 error 'require' is not defined no-undef - 22:70 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:70 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 53:24 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 80:24 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 98:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/PuterAPIService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 44:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 44:17 error 'require' is not defined no-undef - 45:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 45:17 error 'require' is not defined no-undef - 46:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 46:17 error 'require' is not defined no-undef - 47:9 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 47:9 error 'require' is not defined no-undef - 48:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 48:17 error 'require' is not defined no-undef - 49:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 49:17 error 'require' is not defined no-undef - 50:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 50:17 error 'require' is not defined no-undef - 51:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 51:17 error 'require' is not defined no-undef - 52:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 52:17 error 'require' is not defined no-undef - 53:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 53:17 error 'require' is not defined no-undef - 54:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 54:17 error 'require' is not defined no-undef - 55:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 55:17 error 'require' is not defined no-undef - 56:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 56:17 error 'require' is not defined no-undef - 57:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 57:17 error 'require' is not defined no-undef - 58:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 58:17 error 'require' is not defined no-undef - 59:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 59:17 error 'require' is not defined no-undef - 60:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 60:17 error 'require' is not defined no-undef - 61:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 61:17 error 'require' is not defined no-undef - 62:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 62:17 error 'require' is not defined no-undef - 63:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 63:17 error 'require' is not defined no-undef - 64:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 64:17 error 'require' is not defined no-undef - 65:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 65:17 error 'require' is not defined no-undef - 66:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 66:17 error 'require' is not defined no-undef - 67:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 67:17 error 'require' is not defined no-undef - 68:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 68:17 error 'require' is not defined no-undef - 69:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 69:17 error 'require' is not defined no-undef - 70:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 70:17 error 'require' is not defined no-undef - 71:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 71:17 error 'require' is not defined no-undef - 72:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 72:17 error 'require' is not defined no-undef - 73:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 73:17 error 'require' is not defined no-undef - 74:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 74:17 error 'require' is not defined no-undef - 75:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 75:17 error 'require' is not defined no-undef - 76:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 76:17 error 'require' is not defined no-undef - 77:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 77:17 error 'require' is not defined no-undef - 78:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 78:17 error 'require' is not defined no-undef - 79:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 79:17 error 'require' is not defined no-undef - 80:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 80:17 error 'require' is not defined no-undef - 81:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 81:17 error 'require' is not defined no-undef - 82:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 82:17 error 'require' is not defined no-undef - 83:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 83:17 error 'require' is not defined no-undef - 84:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 84:17 error 'require' is not defined no-undef - 85:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 85:17 error 'require' is not defined no-undef - 86:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 86:17 error 'require' is not defined no-undef - 88:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 88:17 error 'require' is not defined no-undef - 89:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 89:17 error 'require' is not defined no-undef - 90:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 90:17 error 'require' is not defined no-undef - 91:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 91:17 error 'require' is not defined no-undef - 92:9 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 92:9 error 'require' is not defined no-undef - 97:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/PuterHomepageService.js - 20:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:25 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:24 error 'require' is not defined no-undef - 34:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:13 error 'require' is not defined no-undef - 153:9 error 'gui_path' is defined but never used @typescript-eslint/no-unused-vars - 166:15 error 'path_' is assigned a value but never used @typescript-eslint/no-unused-vars - 167:15 error 'fs_' is assigned a value but never used @typescript-eslint/no-unused-vars - 178:13 error 'icon' is assigned a value but never used @typescript-eslint/no-unused-vars - 201:13 error 'social_media_image' is constant no-const-assign - 206:13 error 'social_media_image' is constant no-const-assign - 212:15 error 'writeScriptTag' is assigned a value but never used @typescript-eslint/no-unused-vars - 357:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 357:28 error 'require' is not defined no-undef - 392:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/PuterSiteService.js - 20:53 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:53 error 'require' is not defined no-undef - 21:9 error 'Context' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:27 error 'require' is not defined no-undef - 23:70 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:70 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 55:24 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 79:24 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 149:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/PuterVersionService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 51:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 51:17 error 'require' is not defined no-undef - 69:25 error 'process' is not defined no-undef - 70:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 70:13 error 'require' is not defined no-undef - 80:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/ReferralCodeService.js - 20:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:20 error 'require' is not defined no-undef - 21:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:34 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 25:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:21 error 'require' is not defined no-undef - 26:9 error 'UsernameNotifSelector' is assigned a value but never used @typescript-eslint/no-unused-vars - 26:56 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:56 error 'require' is not defined no-undef - 115:23 error 'update_res' is assigned a value but never used @typescript-eslint/no-unused-vars - 193:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/RefreshAssociationsService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 42:48 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 42:48 error 'require' is not defined no-undef - 84:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/RegistrantService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:22 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 81:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 81:26 error 'require' is not defined no-undef - 97:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 97:26 error 'require' is not defined no-undef - 105:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/RegistryService.js - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 35:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:17 error 'require' is not defined no-undef - 48:19 error 'kv' is not defined no-undef - 141:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/SUService.js - 2:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:22 error 'require' is not defined no-undef - 3:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:21 error 'require' is not defined no-undef - 4:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:24 error 'require' is not defined no-undef - 5:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:34 error 'require' is not defined no-undef - 6:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:21 error 'require' is not defined no-undef - 85:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/ScriptService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 99:33 error 'script' is defined but never used @typescript-eslint/no-unused-vars - 111:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/ServeGUIService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 22:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:17 error 'require' is not defined no-undef - 23:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:15 error 'require' is not defined no-undef - 44:9 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 44:9 error 'require' is not defined no-undef - 47:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 47:17 error 'require' is not defined no-undef - 50:43 error '__dirname' is not defined no-undef - 54:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/ServeLandingService.js - 31:7 error 'ServceLandingService' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/ServicePatch.js - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 57:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/SessionService.js - 20:9 error 'invalidate_cached_user' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:46 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:46 error 'require' is not defined no-undef - 21:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:34 error 'require' is not defined no-undef - 22:17 error 'SECOND' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:28 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 44:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 44:17 error 'require' is not defined no-undef - 259:26 error 'kv' is not defined no-undef - 267:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/ShareService.js - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 21:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:22 error 'require' is not defined no-undef - 22:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:27 error 'require' is not defined no-undef - 23:7 error 'featureflag' is assigned a value but never used @typescript-eslint/no-unused-vars - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:9 error 'Context' is assigned a value but never used @typescript-eslint/no-unused-vars - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 26:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:20 error 'require' is not defined no-undef - 27:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:34 error 'require' is not defined no-undef - 28:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:21 error 'require' is not defined no-undef - 29:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:22 error 'require' is not defined no-undef - 30:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:35 error 'require' is not defined no-undef - 34:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:17 error 'require' is not defined no-undef - 35:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:20 error 'require' is not defined no-undef - 36:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:18 error 'require' is not defined no-undef - 332:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 332:32 error 'require' is not defined no-undef - 419:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/ShutdownService.js - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 15:9 error 'process' is not defined no-undef - 16:9 error 'process' is not defined no-undef - 20:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/StorageService.js - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 28:7 error 'StorageService' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/StrategizedService.js - 20:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:28 error 'require' is not defined no-undef - 21:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:18 error 'require' is not defined no-undef - 35:53 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 42:21 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 47:32 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 86:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/SystemDataService.js - 2:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:20 error 'require' is not defined no-undef - 3:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:21 error 'require' is not defined no-undef - 4:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:20 error 'require' is not defined no-undef - 5:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:30 error 'require' is not defined no-undef - 6:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:21 error 'require' is not defined no-undef - 95:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/SystemValidationService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 109:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/TraceService.js - 20:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:23 error 'require' is not defined no-undef - 77:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/TrackSpendingService.js - 20:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:24 error 'require' is not defined no-undef - 21:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:18 error 'require' is not defined no-undef - 22:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:27 error 'require' is not defined no-undef - 23:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:28 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 150:34 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 303:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/WSPushService.js - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 24:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:19 error 'require' is not defined no-undef - 53:17 error 'socketio' is assigned a value but never used @typescript-eslint/no-unused-vars - 114:17 error 'socketio' is assigned a value but never used @typescript-eslint/no-unused-vars - 180:17 error 'socketio' is assigned a value but never used @typescript-eslint/no-unused-vars - 238:17 error 'socketio' is assigned a value but never used @typescript-eslint/no-unused-vars - 379:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/WebServerService.js - 20:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:17 error 'require' is not defined no-undef - 21:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:19 error 'require' is not defined no-undef - 22:47 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:47 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 25:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:16 error 'require' is not defined no-undef - 26:7 error 'https' is assigned a value but never used @typescript-eslint/no-unused-vars - 26:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:15 error 'require' is not defined no-undef - 27:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:12 error 'require' is not defined no-undef - 28:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 28:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:12 error 'require' is not defined no-undef - 29:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:14 error 'require' is not defined no-undef - 30:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:21 error 'require' is not defined no-undef - 31:48 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:48 error 'require' is not defined no-undef - 41:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 41:16 error 'require' is not defined no-undef - 42:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 42:15 error 'require' is not defined no-undef - 43:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 43:13 error 'require' is not defined no-undef - 44:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 44:18 error 'require' is not defined no-undef - 45:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 45:17 error 'require' is not defined no-undef - 46:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 46:23 error 'require' is not defined no-undef - 47:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 47:22 error 'require' is not defined no-undef - 48:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 48:26 error 'require' is not defined no-undef - 49:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 49:17 error 'require' is not defined no-undef - 96:5 warning Unused eslint-disable directive (no problems were reported from 'no-unused-vars') - 100:5 error Duplicate name '__on_start.webserver' no-dupe-class-members - 106:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 106:22 error 'require' is not defined no-undef - 108:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 108:30 error 'require' is not defined no-undef - 110:28 error 'process' is not defined no-undef - 125:63 error 'services' is defined but never used @typescript-eslint/no-unused-vars - 227:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 227:26 error 'require' is not defined no-undef - 259:13 warning Unused eslint-disable directive (no problems were reported from 'no-unused-vars') - 268:50 error 'msg' is defined but never used @typescript-eslint/no-unused-vars - 382:33 error 'next' is defined but never used @typescript-eslint/no-unused-vars - 614:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 614:23 error 'require' is not defined no-undef - 617:30 error 'process' is not defined no-undef - 623:27 error 'process' is not defined no-undef - 625:19 error 'asymmetrical' is assigned a value but never used @typescript-eslint/no-unused-vars - 640:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/abuse-prevention/AuthAuditService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:22 error 'require' is not defined no-undef - 35:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:17 error 'require' is not defined no-undef - 133:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/abuse-prevention/EdgeRateLimitService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:34 error 'require' is not defined no-undef - 22:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:18 error 'require' is not defined no-undef - 24:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:26 error 'require' is not defined no-undef - 25:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:21 error 'require' is not defined no-undef - 140:28 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 189:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/abuse-prevention/IdentificationService.js - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 51:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 135:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 135:16 error 'require' is not defined no-undef - 209:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/auth/ACLService.js - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:30 error 'require' is not defined no-undef - 23:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:22 error 'require' is not defined no-undef - 24:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:27 error 'require' is not defined no-undef - 25:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:21 error 'require' is not defined no-undef - 26:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:22 error 'require' is not defined no-undef - 27:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:21 error 'require' is not defined no-undef - 28:96 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:96 error 'require' is not defined no-undef - 29:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:28 error 'require' is not defined no-undef - 42:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 42:18 error 'require' is not defined no-undef - 235:15 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 497:48 error 'mode' is defined but never used @typescript-eslint/no-unused-vars - 532:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/auth/Actor.js - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:31 error 'require' is not defined no-undef - 23:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:16 error 'require' is not defined no-undef - 28:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:8 error 'require' is not defined no-undef - 30:8 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:8 error 'require' is not defined no-undef - 41:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 41:17 error 'require' is not defined no-undef - 42:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 42:17 error 'require' is not defined no-undef - 151:24 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 183:24 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 212:24 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 253:24 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 293:24 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 330:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/auth/AntiCSRFService.js - 20:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:19 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 22:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:23 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 130:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 130:16 error 'require' is not defined no-undef - 161:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/auth/AuthService.js - 20:94 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:94 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:31 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:18 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 26:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:21 error 'require' is not defined no-undef - 40:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 40:14 error 'require' is not defined no-undef - 41:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 41:17 error 'require' is not defined no-undef - 42:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 42:17 error 'require' is not defined no-undef - 43:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 43:17 error 'require' is not defined no-undef - 68:29 error '_' is defined but never used @typescript-eslint/no-unused-vars - 86:24 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 455:59 error 'v' is defined but never used @typescript-eslint/no-unused-vars - 618:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/auth/GroupService.js - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 21:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:15 error 'require' is not defined no-undef - 22:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:38 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:22 error 'require' is not defined no-undef - 36:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:17 error 'require' is not defined no-undef - 271:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/auth/OTPService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 30:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:18 error 'require' is not defined no-undef - 31:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:17 error 'require' is not defined no-undef - 32:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:24 error 'require' is not defined no-undef - 111:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/auth/PermissionService.js - 21:5 error 'implicit_user_app_permissions' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:5 error 'default_implicit_user_app_permissions' is assigned a value but never used @typescript-eslint/no-unused-vars - 23:5 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:5 error 'require' is not defined no-undef - 25:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:31 error 'require' is not defined no-undef - 26:9 error 'AssignableMethodsFeature' is assigned a value but never used @typescript-eslint/no-unused-vars - 26:38 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:38 error 'require' is not defined no-undef - 27:9 error 'remove_paths_through_user' is assigned a value but never used @typescript-eslint/no-unused-vars - 27:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:39 error 'require' is not defined no-undef - 28:9 error 'Context' is assigned a value but never used @typescript-eslint/no-unused-vars - 28:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:21 error 'require' is not defined no-undef - 29:9 error 'get_a_letter' is assigned a value but never used @typescript-eslint/no-unused-vars - 29:23 error 'cylog' is assigned a value but never used @typescript-eslint/no-unused-vars - 29:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:33 error 'require' is not defined no-undef - 30:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:21 error 'require' is not defined no-undef - 31:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:22 error 'require' is not defined no-undef - 32:54 error 'AccessTokenActorType' is assigned a value but never used @typescript-eslint/no-unused-vars - 32:76 error 'SiteActorType' is assigned a value but never used @typescript-eslint/no-unused-vars - 32:94 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:94 error 'require' is not defined no-undef - 34:7 error 'implicit_user_permissions' is assigned a value but never used @typescript-eslint/no-unused-vars - 180:48 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 367:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 367:15 error 'require' is not defined no-undef - 436:57 error 'key' is defined but never used @typescript-eslint/no-unused-vars - 494:57 error 'key' is defined but never used @typescript-eslint/no-unused-vars - 544:57 error 'key' is defined but never used @typescript-eslint/no-unused-vars - 983:39 error 'log' is defined but never used @typescript-eslint/no-unused-vars - 1036:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/auth/TokenService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 57:24 error 'Buffer' is not defined no-undef - 66:29 error 'Buffer' is not defined no-undef - 118:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 118:14 error 'require' is not defined no-undef - 280:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/auth/VirtualGroupService.js - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 49:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/database/BaseDatabaseAccessService.js - 20:9 error 'AdvancedBase' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:31 error 'require' is not defined no-undef - 36:22 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 105:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/database/SqliteDatabaseAccessService.js - 20:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:31 error 'require' is not defined no-undef - 21:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:29 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:28 error 'require' is not defined no-undef - 24:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:20 error 'require' is not defined no-undef - 25:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:39 error 'require' is not defined no-undef - 33:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:19 error 'require' is not defined no-undef - 196:33 error '__dirname' is not defined no-undef - 205:25 error Unexpected lexical declaration in case block no-case-declarations - 212:33 error Unexpected 'debugger' statement no-debugger - 373:32 error 'filename' is defined but never used @typescript-eslint/no-unused-vars - 384:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 384:20 error 'require' is not defined no-undef - 402:36 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 402:36 error 'require' is not defined no-undef - 440:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/database/constructs.js - 34:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/database/consts.js - 20:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/database/sqlite_setup/0025_system-user.dbmig.js - 12:26 error 'read' is not defined no-undef - 21:34 error 'read' is not defined no-undef - 29:5 error 'log' is not defined no-undef - 34:11 error 'write' is not defined no-undef - 40:44 error 'write' is not defined no-undef - 48:13 error 'system_group_id' is assigned a value but never used @typescript-eslint/no-unused-vars - 48:39 error 'read' is not defined no-undef - 53:38 error 'read' is not defined no-undef - 59:7 error 'write' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/database/sqlite_setup/0026_user-groups.dbmig.js - 2:19 error 'temp_group_id' is assigned a value but never used @typescript-eslint/no-unused-vars - 2:43 error 'write' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/database/sqlite_setup/0027_emulator-app.dbmig.js - 5:11 error 'write' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/drivers/CoercionService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:22 error 'require' is not defined no-undef - 22:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:24 error 'require' is not defined no-undef - 34:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:16 error 'require' is not defined no-undef - 132:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/drivers/DriverError.js - 49:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/drivers/DriverService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:18 error 'require' is not defined no-undef - 22:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:25 error 'require' is not defined no-undef - 23:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:24 error 'require' is not defined no-undef - 24:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:21 error 'require' is not defined no-undef - 25:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:20 error 'require' is not defined no-undef - 26:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:28 error 'require' is not defined no-undef - 27:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:21 error 'require' is not defined no-undef - 28:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:22 error 'require' is not defined no-undef - 37:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 37:16 error 'require' is not defined no-undef - 78:40 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 78:40 error 'require' is not defined no-undef - 122:32 error 'svc_registry' is not defined no-undef - 131:46 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 136:9 error Unreachable code no-unreachable - 479:50 error 'services' is not defined no-undef - 495:50 error 'services' is not defined no-undef - 539:50 error 'services' is not defined no-undef - 645:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/drivers/DriverUsagePolicyService.js - 2:7 error 'APIError' is assigned a value but never used @typescript-eslint/no-unused-vars - 2:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:18 error 'require' is not defined no-undef - 3:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:28 error 'require' is not defined no-undef - 4:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:21 error 'require' is not defined no-undef - 89:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 89:22 error 'require' is not defined no-undef - 136:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/drivers/FileFacade.js - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:24 error 'require' is not defined no-undef - 23:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:30 error 'require' is not defined no-undef - 24:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:25 error 'require' is not defined no-undef - 25:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:20 error 'require' is not defined no-undef - 51:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 51:16 error 'require' is not defined no-undef - 78:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 107:28 error 'Buffer' is not defined no-undef - 124:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/drivers/interfaces.js - 76:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/drivers/meta/Construct.js - 20:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:23 error 'require' is not defined no-undef - 21:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:15 error 'require' is not defined no-undef - 22:69 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:69 error 'require' is not defined no-undef - 205:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/drivers/meta/Runtime.js - 20:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:23 error 'require' is not defined no-undef - 21:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:22 error 'require' is not defined no-undef - 50:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/drivers/types.js - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 21:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:27 error 'require' is not defined no-undef - 22:42 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:42 error 'require' is not defined no-undef - 23:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:24 error 'require' is not defined no-undef - 24:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:18 error 'require' is not defined no-undef - 158:7 error 'URL' is defined but never used @typescript-eslint/no-unused-vars - 208:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 208:16 error 'require' is not defined no-undef - 347:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/file-cache/FileCacheService.js - 20:7 error 'TeePromise' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:20 error 'require' is not defined no-undef - 21:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:26 error 'require' is not defined no-undef - 22:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:25 error 'require' is not defined no-undef - 23:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:25 error 'require' is not defined no-undef - 55:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 55:13 error 'require' is not defined no-undef - 56:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 56:16 error 'require' is not defined no-undef - 132:24 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 226:22 error 'Buffer' is not defined no-undef - 387:29 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 388:27 error 'path' is assigned a value but never used @typescript-eslint/no-unused-vars - 408:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/file-cache/FileTracker.js - 88:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/fs/FSLockService.js - 20:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:20 error 'require' is not defined no-undef - 21:9 error 'TeePromise' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:24 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 146:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/information/InformationService.js - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 272:30 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 282:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/periodic/FSEntryMigrateService.js - 20:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:20 error 'require' is not defined no-undef - 21:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:31 error 'require' is not defined no-undef - 22:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:34 error 'require' is not defined no-undef - 23:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:27 error 'require' is not defined no-undef - 24:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:26 error 'require' is not defined no-undef - 70:15 error 'WIDTH' is already defined no-redeclare - 176:18 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 178:23 error 'dbrw' is assigned a value but never used @typescript-eslint/no-unused-vars - 233:18 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 234:32 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 234:32 error 'require' is not defined no-undef - 305:18 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 307:29 error 'log' is assigned a value but never used @typescript-eslint/no-unused-vars - 336:19 error 'update_res' is assigned a value but never used @typescript-eslint/no-unused-vars - 357:7 error 'Mig_AuditInitialStorage' is defined but never used @typescript-eslint/no-unused-vars - 366:18 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 368:17 error 'dbrr' is assigned a value but never used @typescript-eslint/no-unused-vars - 368:23 error 'dbrw' is assigned a value but never used @typescript-eslint/no-unused-vars - 368:29 error 'log' is assigned a value but never used @typescript-eslint/no-unused-vars - 402:39 error 'log' is defined but never used @typescript-eslint/no-unused-vars - 413:39 error 'log' is defined but never used @typescript-eslint/no-unused-vars - 425:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/runtime-analysis/AlarmService.js - 20:7 error 'JSON5' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:15 error 'require' is not defined no-undef - 21:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:20 error 'require' is not defined no-undef - 23:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:14 error 'require' is not defined no-undef - 24:7 error '_path' is assigned a value but never used @typescript-eslint/no-unused-vars - 24:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:15 error 'require' is not defined no-undef - 25:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:12 error 'require' is not defined no-undef - 27:9 error 'fallbackRead' is assigned a value but never used @typescript-eslint/no-unused-vars - 27:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:26 error 'require' is not defined no-undef - 28:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:33 error 'require' is not defined no-undef - 29:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:33 error 'require' is not defined no-undef - 30:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:21 error 'require' is not defined no-undef - 31:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:25 error 'require' is not defined no-undef - 32:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:21 error 'require' is not defined no-undef - 340:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 462:33 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 462:39 error 'log' is defined but never used @typescript-eslint/no-unused-vars - 473:39 error 'log' is defined but never used @typescript-eslint/no-unused-vars - 505:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/runtime-analysis/ErrorService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 90:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/runtime-analysis/ExpectationService.js - 20:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:24 error 'require' is not defined no-undef - 21:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:18 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 196:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/runtime-analysis/HeapMonService.js - 20:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:18 error 'require' is not defined no-undef - 69:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/runtime-analysis/LogService.js - 34:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 34:17 error 'require' is not defined no-undef - 35:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 35:21 error 'require' is not defined no-undef - 36:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:21 error 'require' is not defined no-undef - 37:1 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 37:1 error 'require' is not defined no-undef - 160:74 error 'objects' is defined but never used @typescript-eslint/no-unused-vars - 161:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 161:26 error 'require' is not defined no-undef - 204:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 254:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 254:24 error 'require' is not defined no-undef - 303:53 error 'objects' is defined but never used @typescript-eslint/no-unused-vars - 496:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 496:15 error 'require' is not defined no-undef - 518:33 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 518:39 error 'log' is defined but never used @typescript-eslint/no-unused-vars - 519:21 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 537:34 error 'name' is defined but never used @typescript-eslint/no-unused-vars - 547:33 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 547:39 error 'log' is defined but never used @typescript-eslint/no-unused-vars - 698:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 698:24 error 'require' is not defined no-undef - 709:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 716:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 716:24 error 'require' is not defined no-undef - 722:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 729:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 729:24 error 'require' is not defined no-undef - 735:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 764:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/runtime-analysis/PagerService.js - 20:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:14 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:14 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 143:39 error 'log' is defined but never used @typescript-eslint/no-unused-vars - 158:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/runtime-analysis/ProcessEventService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 39:9 error 'process' is not defined no-undef - 58:9 error 'process' is not defined no-undef - 77:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/runtime-analysis/ServerHealthService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:20 error 'require' is not defined no-undef - 22:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:27 error 'require' is not defined no-undef - 23:46 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:46 error 'require' is not defined no-undef - 39:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 39:13 error 'require' is not defined no-undef - 73:15 error 'min_free_KiB' is assigned a value but never used @typescript-eslint/no-unused-vars - 81:14 error 'process' is not defined no-undef - 235:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/sla/MonthlyUsageService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:50 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:50 error 'require' is not defined no-undef - 22:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:22 error 'require' is not defined no-undef - 121:32 error 'ver' is defined but never used @typescript-eslint/no-unused-vars - 214:15 error 'specifier_entries' is assigned a value but never used @typescript-eslint/no-unused-vars - 263:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/sla/RateLimitService.js - 20:9 error 'AdvancedBase' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:26 error 'require' is not defined no-undef - 21:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:18 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:25 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 168:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/sla/SLAService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 140:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/thumbnails/HTTPThumbnailService.js - 23:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:15 error 'require' is not defined no-undef - 25:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:24 error 'require' is not defined no-undef - 26:9 error 'AdvancedBase' is assigned a value but never used @typescript-eslint/no-unused-vars - 26:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:26 error 'require' is not defined no-undef - 27:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:18 error 'require' is not defined no-undef - 28:50 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:50 error 'require' is not defined no-undef - 29:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:21 error 'require' is not defined no-undef - 385:17 error 'axios' is assigned a value but never used @typescript-eslint/no-unused-vars - 450:13 error 'expected' is assigned a value but never used @typescript-eslint/no-unused-vars - 631:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/thumbnails/NAPIThumbnailService.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 45:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 45:22 error 'require' is not defined no-undef - 71:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/thumbnails/PureJSThumbnailService.js - 20:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:14 error 'require' is not defined no-undef - 21:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:21 error 'require' is not defined no-undef - 22:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:30 error 'require' is not defined no-undef - 49:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 49:15 error 'require' is not defined no-undef - 79:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/services/web/UserProtectedEndpointsService.js - 20:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:22 error 'require' is not defined no-undef - 21:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:15 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:27 error 'require' is not defined no-undef - 25:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:22 error 'require' is not defined no-undef - 26:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:18 error 'require' is not defined no-undef - 46:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 46:18 error 'require' is not defined no-undef - 135:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 135:13 error 'require' is not defined no-undef - 139:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 139:13 error 'require' is not defined no-undef - 143:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 143:13 error 'require' is not defined no-undef - 148:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/socketio.js - 20:1 error 'module' is not defined no-undef - 23:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:14 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/structured/sequence/scan-permission.js - 19:9 error 'permission' is assigned a value but never used @typescript-eslint/no-unused-vars - 19:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:24 error 'require' is not defined no-undef - 20:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:22 error 'require' is not defined no-undef - 21:9 error 'get_user' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:22 error 'require' is not defined no-undef - 22:9 error 'Actor' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:34 error 'require' is not defined no-undef - 23:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:33 error 'require' is not defined no-undef - 25:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/structured/sequence/share.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 20:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:22 error 'require' is not defined no-undef - 21:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:16 error 'require' is not defined no-undef - 22:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:22 error 'require' is not defined no-undef - 24:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:19 error 'require' is not defined no-undef - 25:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:31 error 'require' is not defined no-undef - 26:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:28 error 'require' is not defined no-undef - 27:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:21 error 'require' is not defined no-undef - 28:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:28 error 'require' is not defined no-undef - 29:35 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:35 error 'require' is not defined no-undef - 30:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:18 error 'require' is not defined no-undef - 31:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:20 error 'require' is not defined no-undef - 46:1 error 'module' is not defined no-undef - 180:23 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 483:21 error 'result' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/traits/AssignableMethodsFeature.js - 29:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/traits/AsyncProviderFeature.js - 118:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/traits/ChannelFeature.js - 44:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/traits/ContextAwareFeature.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 28:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/traits/OtelFeature.js - 19:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:21 error 'require' is not defined no-undef - 47:7 error 'SyncOtelFeature' is defined but never used @typescript-eslint/no-unused-vars - 74:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/traits/SyncFeature.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 39:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/traits/WeakConstructorFeature.js - 27:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/unstructured/permission-scan-lib.js - 55:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/unstructured/permission-scanners.js - 5:5 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:5 error 'require' is not defined no-undef - 6:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:22 error 'require' is not defined no-undef - 7:57 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:57 error 'require' is not defined no-undef - 8:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:34 error 'require' is not defined no-undef - 56:51 error 'perm' is defined but never used @typescript-eslint/no-unused-vars - 146:45 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 177:52 error 'perm' is defined but never used @typescript-eslint/no-unused-vars - 342:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/user-mig.js - 20:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:12 error 'require' is not defined no-undef - 21:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:19 error 'require' is not defined no-undef - 32:17 error 'dir' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/configutil.js - 21:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:19 error 'require' is not defined no-undef - 26:37 error '__dirname' is not defined no-undef - 35:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/consolelog.js - 114:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/context.js - 19:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:31 error 'require' is not defined no-undef - 20:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:16 error 'require' is not defined no-undef - 21:9 error 'generate_random_code' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:34 error 'require' is not defined no-undef - 109:37 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 141:15 error 'als' is assigned a value but never used @typescript-eslint/no-unused-vars - 165:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 165:16 error 'require' is not defined no-undef - 187:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/datautil.js - 45:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 45:20 error 'require' is not defined no-undef - 50:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/debugutil.js - 12:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/errorutil.js - 67:1 error 'module' is not defined no-undef - 75:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 75:21 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/expressutil.js - 19:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:19 error 'require' is not defined no-undef - 48:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/files.js - 19:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:12 error 'require' is not defined no-undef - 34:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/fnutil.js - 39:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/fuzz.js - 90:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/gcutil.js - 30:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/hl_types.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 67:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/identifier.js - 50:7 error 'words' is assigned a value but never used @typescript-eslint/no-unused-vars - 100:10 error 'compose_code' is defined but never used @typescript-eslint/no-unused-vars - 113:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/langutil.js - 45:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/linux.js - 19:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:18 error 'require' is not defined no-undef - 30:23 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 38:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/listenerutil.js - 77:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/lockutil.js - 19:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:24 error 'require' is not defined no-undef - 131:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/multivalue.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 80:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/opmath.js - 64:17 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 68:19 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 91:11 error 'v' is defined but never used @typescript-eslint/no-unused-vars - 130:27 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 191:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/otelutil.js - 24:44 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:44 error 'require' is not defined no-undef - 25:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:21 error 'require' is not defined no-undef - 26:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:24 error 'require' is not defined no-undef - 154:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/pathutil.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 28:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:15 error 'require' is not defined no-undef - 55:14 error 'process' is not defined no-undef - 59:25 error 'process' is not defined no-undef - 92:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/promise.js - 152:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/queuing.js - 19:7 error 'QueueBatcher' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/retryutil.js - 67:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/smolutil.js - 31:17 error 'trim' is assigned a value but never used @typescript-eslint/no-unused-vars - 31:23 error 'discard_empty' is assigned a value but never used @typescript-eslint/no-unused-vars - 51:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/stdioutil.js - 48:32 error 'process' is not defined no-undef - 62:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/streamutil.js - 19:46 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:46 error 'require' is not defined no-undef - 20:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:24 error 'require' is not defined no-undef - 21:9 error 'EWMA' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:18 error 'require' is not defined no-undef - 51:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 51:29 error 'require' is not defined no-undef - 164:24 error 'Buffer' is not defined no-undef - 165:35 error 'Buffer' is not defined no-undef - 173:28 error 'Buffer' is not defined no-undef - 207:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 233:40 error 'Buffer' is not defined no-undef - 255:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 261:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 274:35 error 'Buffer' is not defined no-undef - 280:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 416:18 error 'Buffer' is not defined no-undef - 438:22 error 'Buffer' is not defined no-undef - 472:12 error 'Buffer' is not defined no-undef - 482:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/structutil.js - 32:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/strutil.js - 53:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/time.js - 45:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/urlutil.js - 30:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/uuidfpe.js - 1:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:16 error 'require' is not defined no-undef - 15:16 error 'Buffer' is not defined no-undef - 38:27 error 'Buffer' is not defined no-undef - 54:27 error 'Buffer' is not defined no-undef - 59:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/validutil.js - 30:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/src/util/workutil.js - 53:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/backend/tools/test.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:16 error 'require' is not defined no-undef - 21:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:25 error 'require' is not defined no-undef - 22:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:20 error 'require' is not defined no-undef - 23:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:21 error 'require' is not defined no-undef - 24:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:20 error 'require' is not defined no-undef - 25:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:34 error 'require' is not defined no-undef - 55:13 error 'def' is not defined no-undef - 56:13 error 'def' is not defined no-undef - 67:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 67:39 error 'require' is not defined no-undef - 70:43 error 'manager' is defined but never used @typescript-eslint/no-unused-vars - 74:31 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 74:31 error 'require' is not defined no-undef - 161:27 error 'process' is not defined no-undef - 162:11 error 'process' is not defined no-undef - 168:13 error 'process' is not defined no-undef - 229:5 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/contextlink/context.js - 36:31 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/contextlink/test/testcontext.js - 22:1 error 'describe' is not defined no-undef - 23:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 23:5 error 'it' is not defined no-undef - 32:5 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/dev-center/js/dev-center.js - 26:24 error 'puter' is not defined no-undef - 27:5 error 'developer' is assigned a value but never used @typescript-eslint/no-unused-vars - 60:22 error 'puter' is not defined no-undef - 87:59 error 'html_encode' is not defined no-undef - 98:12 error 'html_encode' is not defined no-undef - 101:1 error '$' is not defined no-undef - 105:5 error '$' is not defined no-undef - 108:9 error 'puter' is not defined no-undef - 114:17 error '$' is not defined no-undef - 116:17 error '$' is not defined no-undef - 116:51 error 'html_encode' is not defined no-undef - 122:13 error 'puter' is not defined no-undef - 125:21 error '$' is not defined no-undef - 130:21 error 'puter' is not defined no-undef - 134:25 error '$' is not defined no-undef - 140:21 error '$' is not defined no-undef - 141:21 error '$' is not defined no-undef - 146:9 error 'puter' is not defined no-undef - 150:13 error '$' is not defined no-undef - 155:21 error '$' is not defined no-undef - 156:21 error '$' is not defined no-undef - 158:17 error '$' is not defined no-undef - 160:21 error '$' is not defined no-undef - 165:17 error '$' is not defined no-undef - 180:9 error '$' is not defined no-undef - 184:9 error '$' is not defined no-undef - 186:9 error 'puter' is not defined no-undef - 187:13 error '$' is not defined no-undef - 191:21 error '$' is not defined no-undef - 192:21 error '$' is not defined no-undef - 194:17 error '$' is not defined no-undef - 196:21 error '$' is not defined no-undef - 201:17 error '$' is not defined no-undef - 202:17 error '$' is not defined no-undef - 208:1 error '$' is not defined no-undef - 208:47 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 209:5 error '$' is not defined no-undef - 210:5 error '$' is not defined no-undef - 211:5 error '$' is not defined no-undef - 212:5 error '$' is not defined no-undef - 212:30 error '$' is not defined no-undef - 217:9 error '$' is not defined no-undef - 224:14 error '$' is not defined no-undef - 226:9 error '$' is not defined no-undef - 228:13 error 'puter' is not defined no-undef - 231:21 error '$' is not defined no-undef - 233:17 error '$' is not defined no-undef - 235:21 error '$' is not defined no-undef - 241:1 error '$' is not defined no-undef - 241:63 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 242:23 error 'puter' is not defined no-undef - 245:9 error 'puter' is not defined no-undef - 260:16 error 'slugify' is not defined no-undef - 270:5 error '$' is not defined no-undef - 275:5 error 'puter' is not defined no-undef - 295:29 error 'puter' is not defined no-undef - 303:19 error 'puter' is not defined no-undef - 308:13 error 'puter' is not defined no-undef - 317:17 error 'puter' is not defined no-undef - 326:29 error '$' is not defined no-undef - 327:29 error '$' is not defined no-undef - 329:25 error '$' is not defined no-undef - 332:29 error 'deploy' is not defined no-undef - 334:29 error 'deploy' is not defined no-undef - 344:13 error 'puter' is not defined no-undef - 354:13 error '$' is not defined no-undef - 355:13 error '$' is not defined no-undef - 362:1 error '$' is not defined no-undef - 362:50 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 363:5 error 'deploy' is not defined no-undef - 366:1 error '$' is not defined no-undef - 366:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 367:26 error '$' is not defined no-undef - 371:1 error '$' is not defined no-undef - 371:56 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 372:19 error '$' is not defined no-undef - 373:21 error '$' is not defined no-undef - 374:20 error '$' is not defined no-undef - 377:28 error 'puter' is not defined no-undef - 380:9 error 'puter' is not defined no-undef - 391:30 error 'puter' is not defined no-undef - 391:100 error 'html_encode' is not defined no-undef - 406:9 error '$' is not defined no-undef - 407:9 error 'puter' is not defined no-undef - 407:49 error 'app' is defined but never used @typescript-eslint/no-unused-vars - 409:21 error '$' is not defined no-undef - 410:21 error '$' is not defined no-undef - 410:86 error 'params' is defined but never used @typescript-eslint/no-unused-vars - 411:25 error '$' is not defined no-undef - 412:29 error '$' is not defined no-undef - 413:29 error '$' is not defined no-undef - 414:29 error '$' is not defined no-undef - 416:29 error '$' is not defined no-undef - 417:29 error '$' is not defined no-undef - 426:17 error 'puter' is not defined no-undef - 431:21 error 'puter' is not defined no-undef - 433:21 error 'puter' is not defined no-undef - 441:21 error '$' is not defined no-undef - 442:21 error 'puter' is not defined no-undef - 492:51 error 'html_encode' is not defined no-undef - 492:81 error 'html_encode' is not defined no-undef - 493:51 error 'html_encode' is not defined no-undef - 493:76 error 'html_encode' is not defined no-undef - 495:64 error 'html_encode' is not defined no-undef - 495:104 error 'html_encode' is not defined no-undef - 497:70 error 'html_encode' is not defined no-undef - 497:111 error 'html_encode' is not defined no-undef - 499:91 error 'html_encode' is not defined no-undef - 499:133 error 'html_encode' is not defined no-undef - 499:174 error 'html_encode' is not defined no-undef - 501:64 error 'html_encode' is not defined no-undef - 501:95 error 'html_encode' is not defined no-undef - 501:125 error 'html_encode' is not defined no-undef - 514:101 error 'html_encode' is not defined no-undef - 514:141 error 'html_encode' is not defined no-undef - 524:65 error 'html_encode' is not defined no-undef - 528:95 error 'html_encode' is not defined no-undef - 531:125 error 'html_encode' is not defined no-undef - 534:118 error 'html_encode' is not defined no-undef - 537:83 error 'html_encode' is not defined no-undef - 540:101 error 'html_encode' is not defined no-undef - 540:155 error 'html_encode' is not defined no-undef - 540:221 error 'html_encode' is not defined no-undef - 547:55 error 'html_encode' is not defined no-undef - 553:43 error 'html_encode' is not defined no-undef - 553:132 error 'html_encode' is not defined no-undef - 579:96 error 'html_encode' is not defined no-undef - 581:97 error 'html_encode' is not defined no-undef - 586:131 error 'html_encode' is not defined no-undef - 588:133 error 'html_encode' is not defined no-undef - 627:16 error '$' is not defined no-undef - 628:15 error '$' is not defined no-undef - 629:19 error '$' is not defined no-undef - 630:22 error '$' is not defined no-undef - 631:15 error '$' is not defined no-undef - 632:27 error '$' is not defined no-undef - 633:19 error '$' is not defined no-undef - 634:22 error '$' is not defined no-undef - 636:20 error '$' is not defined no-undef - 637:21 error '$' is not defined no-undef - 638:18 error '$' is not defined no-undef - 639:19 error '$' is not defined no-undef - 642:30 error '$' is not defined no-undef - 643:25 error '$' is not defined no-undef - 644:30 error '$' is not defined no-undef - 645:27 error '$' is not defined no-undef - 646:21 error '$' is not defined no-undef - 647:29 error '$' is not defined no-undef - 648:32 error '$' is not defined no-undef - 656:8 error '$' is not defined no-undef - 661:8 error '$' is not defined no-undef - 667:9 error '$' is not defined no-undef - 668:9 error '$' is not defined no-undef - 669:9 error '$' is not defined no-undef - 670:9 error '$' is not defined no-undef - 671:9 error '$' is not defined no-undef - 672:9 error '$' is not defined no-undef - 673:9 error '$' is not defined no-undef - 674:9 error '$' is not defined no-undef - 675:9 error '$' is not defined no-undef - 676:9 error '$' is not defined no-undef - 677:9 error '$' is not defined no-undef - 678:9 error '$' is not defined no-undef - 679:9 error '$' is not defined no-undef - 680:9 error '$' is not defined no-undef - 681:9 error '$' is not defined no-undef - 682:9 error '$' is not defined no-undef - 683:9 error '$' is not defined no-undef - 684:9 error '$' is not defined no-undef - 685:9 error '$' is not defined no-undef - 692:9 error '$' is not defined no-undef - 694:9 error '$' is not defined no-undef - 701:9 error '$' is not defined no-undef - 703:9 error '$' is not defined no-undef - 709:5 error '$' is not defined no-undef - 710:5 error '$' is not defined no-undef - 711:5 error '$' is not defined no-undef - 712:5 error '$' is not defined no-undef - 713:5 error '$' is not defined no-undef - 714:5 error '$' is not defined no-undef - 715:5 error '$' is not defined no-undef - 716:5 error '$' is not defined no-undef - 717:5 error '$' is not defined no-undef - 718:5 error '$' is not defined no-undef - 719:5 error '$' is not defined no-undef - 720:5 error '$' is not defined no-undef - 721:5 error '$' is not defined no-undef - 722:5 error '$' is not defined no-undef - 723:5 error '$' is not defined no-undef - 724:5 error '$' is not defined no-undef - 725:5 error '$' is not defined no-undef - 728:9 error '$' is not defined no-undef - 729:9 error '$' is not defined no-undef - 730:9 error '$' is not defined no-undef - 731:9 error '$' is not defined no-undef - 733:9 error '$' is not defined no-undef - 734:9 error '$' is not defined no-undef - 735:9 error '$' is not defined no-undef - 736:9 error '$' is not defined no-undef - 740:9 error '$' is not defined no-undef - 741:9 error '$' is not defined no-undef - 742:9 error '$' is not defined no-undef - 744:9 error '$' is not defined no-undef - 745:9 error '$' is not defined no-undef - 746:9 error '$' is not defined no-undef - 751:5 error '$' is not defined no-undef - 752:5 error '$' is not defined no-undef - 753:5 error '$' is not defined no-undef - 755:25 error 'puter' is not defined no-undef - 759:5 error '$' is not defined no-undef - 763:5 error '$' is not defined no-undef - 770:5 error '$' is not defined no-undef - 771:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 771:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 772:33 error '$' is not defined no-undef - 773:13 error '$' is not defined no-undef - 774:13 error '$' is not defined no-undef - 776:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 776:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 777:13 error '$' is not defined no-undef - 778:13 error '$' is not defined no-undef - 786:13 error '$' is not defined no-undef - 789:13 error '$' is not defined no-undef - 803:25 error '$' is not defined no-undef - 804:25 error '$' is not defined no-undef - 806:25 error '$' is not defined no-undef - 809:25 error '$' is not defined no-undef - 812:25 error 'puter' is not defined no-undef - 817:25 error '$' is not defined no-undef - 818:25 error '$' is not defined no-undef - 837:25 error '$' is not defined no-undef - 838:25 error '$' is not defined no-undef - 840:25 error '$' is not defined no-undef - 843:25 error '$' is not defined no-undef - 845:25 error 'puter' is not defined no-undef - 850:25 error '$' is not defined no-undef - 851:25 error '$' is not defined no-undef - 852:25 error '$' is not defined no-undef - 861:42 error 'puter' is not defined no-undef - 878:29 error '$' is not defined no-undef - 879:29 error '$' is not defined no-undef - 881:29 error '$' is not defined no-undef - 884:29 error '$' is not defined no-undef - 890:21 error 'puter' is not defined no-undef - 895:21 error '$' is not defined no-undef - 896:21 error '$' is not defined no-undef - 910:35 error 'puter' is not defined no-undef - 925:17 error 'puter' is not defined no-undef - 930:17 error '$' is not defined no-undef - 931:17 error '$' is not defined no-undef - 951:25 error 'html_encode' is not defined no-undef - 952:13 error '$' is not defined no-undef - 953:13 error '$' is not defined no-undef - 955:13 error '$' is not defined no-undef - 958:13 error '$' is not defined no-undef - 965:5 error '$' is not defined no-undef - 968:1 error '$' is not defined no-undef - 968:50 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 969:24 error '$' is not defined no-undef - 970:23 error '$' is not defined no-undef - 971:20 error '$' is not defined no-undef - 988:9 error '$' is not defined no-undef - 989:9 error '$' is not defined no-undef - 995:5 error '$' is not defined no-undef - 997:5 error '$' is not defined no-undef - 998:14 error 'puter' is not defined no-undef - 1008:42 error 'puter' is not defined no-undef - 1011:13 error '$' is not defined no-undef - 1012:13 error '$' is not defined no-undef - 1014:13 error '$' is not defined no-undef - 1016:13 error '$' is not defined no-undef - 1018:13 error '$' is not defined no-undef - 1021:13 error '$' is not defined no-undef - 1022:13 error '$' is not defined no-undef - 1026:13 error '$' is not defined no-undef - 1031:1 error '$' is not defined no-undef - 1031:63 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1032:19 error '$' is not defined no-undef - 1033:18 error '$' is not defined no-undef - 1034:23 error '$' is not defined no-undef - 1035:25 error '$' is not defined no-undef - 1036:17 error '$' is not defined no-undef - 1037:20 error '$' is not defined no-undef - 1038:19 error '$' is not defined no-undef - 1039:17 error '$' is not defined no-undef - 1040:18 error '$' is not defined no-undef - 1041:22 error '$' is not defined no-undef - 1043:33 error '$' is not defined no-undef - 1087:24 error '$' is not defined no-undef - 1088:27 error '$' is not defined no-undef - 1096:55 error 'byte_format' is not defined no-undef - 1107:9 error '$' is not defined no-undef - 1108:9 error '$' is not defined no-undef - 1114:5 error 'puter' is not defined no-undef - 1119:5 error '$' is not defined no-undef - 1122:9 error '$' is not defined no-undef - 1123:62 error '$' is not defined no-undef - 1124:16 error '$' is not defined no-undef - 1125:26 error '$' is not defined no-undef - 1128:5 error 'puter' is not defined no-undef - 1134:26 error '$' is not defined no-undef - 1135:21 error '$' is not defined no-undef - 1137:34 error '$' is not defined no-undef - 1148:31 error '$' is not defined no-undef - 1149:28 error '$' is not defined no-undef - 1150:21 error '$' is not defined no-undef - 1151:29 error '$' is not defined no-undef - 1160:9 error '$' is not defined no-undef - 1161:9 error '$' is not defined no-undef - 1164:9 error '$' is not defined no-undef - 1165:9 error '$' is not defined no-undef - 1167:9 error '$' is not defined no-undef - 1167:49 error 'html_encode' is not defined no-undef - 1169:9 error '$' is not defined no-undef - 1170:9 error '$' is not defined no-undef - 1172:9 error '$' is not defined no-undef - 1172:55 error 'html_encode' is not defined no-undef - 1173:9 error '$' is not defined no-undef - 1173:61 error 'html_encode' is not defined no-undef - 1174:9 error '$' is not defined no-undef - 1174:61 error 'html_encode' is not defined no-undef - 1176:9 error '$' is not defined no-undef - 1177:9 error '$' is not defined no-undef - 1178:9 error '$' is not defined no-undef - 1182:9 error '$' is not defined no-undef - 1184:9 error 'puter' is not defined no-undef - 1188:1 error '$' is not defined no-undef - 1193:1 error '$' is not defined no-undef - 1199:1 error '$' is not defined no-undef - 1199:58 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1200:5 error 'puter' is not defined no-undef - 1200:24 error '$' is not defined no-undef - 1203:1 error '$' is not defined no-undef - 1203:50 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1204:5 error '$' is not defined no-undef - 1205:5 error 'puter' is not defined no-undef - 1208:1 error '$' is not defined no-undef - 1208:50 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1210:5 error '$' is not defined no-undef - 1211:5 error 'puter' is not defined no-undef - 1214:1 error '$' is not defined no-undef - 1214:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1215:5 error 'puter' is not defined no-undef - 1215:24 error '$' is not defined no-undef - 1218:1 error '$' is not defined no-undef - 1218:65 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1219:19 error '$' is not defined no-undef - 1220:20 error '$' is not defined no-undef - 1221:21 error '$' is not defined no-undef - 1224:28 error 'puter' is not defined no-undef - 1227:9 error 'puter' is not defined no-undef - 1238:30 error 'puter' is not defined no-undef - 1238:100 error 'html_encode' is not defined no-undef - 1253:9 error '$' is not defined no-undef - 1254:9 error 'puter' is not defined no-undef - 1254:49 error 'app' is defined but never used @typescript-eslint/no-unused-vars - 1256:21 error '$' is not defined no-undef - 1257:21 error '$' is not defined no-undef - 1262:17 error 'puter' is not defined no-undef - 1267:21 error 'puter' is not defined no-undef - 1269:21 error 'puter' is not defined no-undef - 1276:21 error '$' is not defined no-undef - 1277:21 error 'puter' is not defined no-undef - 1288:1 error '$' is not defined no-undef - 1288:54 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1289:5 error '$' is not defined no-undef - 1289:28 error '$' is not defined no-undef - 1292:1 error '$' is not defined no-undef - 1292:56 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1293:5 error '$' is not defined no-undef - 1294:5 error '$' is not defined no-undef - 1295:5 error '$' is not defined no-undef - 1298:5 error '$' is not defined no-undef - 1300:9 error 'puter' is not defined no-undef - 1302:13 error '$' is not defined no-undef - 1304:13 error '$' is not defined no-undef - 1308:21 error '$' is not defined no-undef - 1309:21 error '$' is not defined no-undef - 1311:17 error '$' is not defined no-undef - 1313:21 error '$' is not defined no-undef - 1318:17 error '$' is not defined no-undef - 1325:5 error '$' is not defined no-undef - 1328:5 error '$' is not defined no-undef - 1338:14 error '_' is defined but never used @typescript-eslint/no-unused-vars - 1345:1 error '$' is not defined no-undef - 1345:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1346:5 error '$' is not defined no-undef - 1347:5 error '$' is not defined no-undef - 1348:5 error '$' is not defined no-undef - 1349:5 error '$' is not defined no-undef - 1355:1 error '$' is not defined no-undef - 1355:59 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1356:24 error 'puter' is not defined no-undef - 1360:24 error 'puter' is not defined no-undef - 1376:9 error '$' is not defined no-undef - 1377:9 error '$' is not defined no-undef - 1378:9 error '$' is not defined no-undef - 1428:44 error 'html_encode' is not defined no-undef - 1428:81 error 'html_encode' is not defined no-undef - 1428:119 error 'html_encode' is not defined no-undef - 1432:79 error 'html_encode' is not defined no-undef - 1432:119 error 'html_encode' is not defined no-undef - 1438:57 error 'html_encode' is not defined no-undef - 1438:99 error 'html_encode' is not defined no-undef - 1438:143 error 'html_encode' is not defined no-undef - 1438:195 error 'html_encode' is not defined no-undef - 1442:71 error 'html_encode' is not defined no-undef - 1442:113 error 'html_encode' is not defined no-undef - 1442:154 error 'html_encode' is not defined no-undef - 1442:179 error 'html_encode' is not defined no-undef - 1454:44 error 'html_encode' is not defined no-undef - 1454:90 error 'html_encode' is not defined no-undef - 1460:71 error 'html_encode' is not defined no-undef - 1460:111 error 'html_encode' is not defined no-undef - 1464:68 error 'html_encode' is not defined no-undef - 1464:110 error 'html_encode' is not defined no-undef - 1464:151 error 'html_encode' is not defined no-undef - 1468:60 error 'html_encode' is not defined no-undef - 1468:101 error 'html_encode' is not defined no-undef - 1472:72 error 'html_encode' is not defined no-undef - 1472:114 error 'html_encode' is not defined no-undef - 1472:155 error 'html_encode' is not defined no-undef - 1488:80 error 'moment' is not defined no-undef - 1562:1 error '$' is not defined no-undef - 1563:5 error '$' is not defined no-undef - 1563:7 error '$' is not defined no-undef - 1566:1 error '$' is not defined no-undef - 1566:36 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1568:26 error '$' is not defined no-undef - 1583:5 error '$' is not defined no-undef - 1584:5 error '$' is not defined no-undef - 1585:5 error '$' is not defined no-undef - 1586:5 error '$' is not defined no-undef - 1604:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1616:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1621:5 error '$' is not defined no-undef - 1623:9 error '$' is not defined no-undef - 1633:17 error '$' is not defined no-undef - 1633:43 error 'html_encode' is not defined no-undef - 1635:17 error '$' is not defined no-undef - 1635:43 error 'html_encode' is not defined no-undef - 1649:28 error 'puter' is not defined no-undef - 1651:33 error 'puter' is not defined no-undef - 1683:35 error 'puter' is not defined no-undef - 1727:27 error 'puter' is not defined no-undef - 1761:5 error '$' is not defined no-undef - 1764:5 error '$' is not defined no-undef - 1767:9 error '$' is not defined no-undef - 1768:9 error '$' is not defined no-undef - 1776:33 error 'puter' is not defined no-undef - 1788:31 error Unsafe usage of optional chaining. If it short-circuits with 'undefined' the evaluation will throw TypeError no-unsafe-optional-chaining - 1789:13 error 'puter' is not defined no-undef - 1797:15 error 'puter' is not defined no-undef - 1807:29 error 'puter' is not defined no-undef - 1822:28 error 'puter' is not defined no-undef - 1831:33 error 'puter' is not defined no-undef - 1836:27 error 'puter' is not defined no-undef - 1842:21 error '$' is not defined no-undef - 1851:19 error 'puter' is not defined no-undef - 1865:9 error 'puter' is not defined no-undef - 1865:70 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 1867:13 error 'puter' is not defined no-undef - 1878:13 error '$' is not defined no-undef - 1880:13 error '$' is not defined no-undef - 1897:19 error 'puter' is not defined no-undef - 1903:13 error '$' is not defined no-undef - 1913:9 error 'puter' is not defined no-undef - 1913:70 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 1915:13 error 'puter' is not defined no-undef - 1926:13 error '$' is not defined no-undef - 1928:13 error '$' is not defined no-undef - 1938:9 error 'puter' is not defined no-undef - 1947:21 error '$' is not defined no-undef - 1949:28 error 'uploaded' is defined but never used @typescript-eslint/no-unused-vars - 1957:17 error 'puter' is not defined no-undef - 1957:78 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 1959:21 error 'puter' is not defined no-undef - 1970:21 error '$' is not defined no-undef - 1972:21 error '$' is not defined no-undef - 1980:1 error '$' is not defined no-undef - 1980:55 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1982:5 error '$' is not defined no-undef - 1984:5 error '$' is not defined no-undef - 1984:35 error '$' is not defined no-undef - 1986:5 error '$' is not defined no-undef - 1988:5 error '$' is not defined no-undef - 2049:1 error '$' is not defined no-undef - 2049:57 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2050:5 error '$' is not defined no-undef - 2053:1 error '$' is not defined no-undef - 2053:48 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2054:5 error 'puter' is not defined no-undef - 2054:24 error '$' is not defined no-undef - 2057:1 error '$' is not defined no-undef - 2057:69 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2058:5 error '$' is not defined no-undef - 2059:23 error 'puter' is not defined no-undef - 2062:9 error 'puter' is not defined no-undef - 2068:9 error '$' is not defined no-undef - 2079:9 error '$' is not defined no-undef - 2085:1 error '$' is not defined no-undef - 2085:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2086:5 error '$' is not defined no-undef - 2087:5 error '$' is not defined no-undef - 2088:5 error '$' is not defined no-undef - 2089:5 error 'puter' is not defined no-undef - 2091:13 error '$' is not defined no-undef - 2093:17 error '$' is not defined no-undef - 2101:21 error '$' is not defined no-undef - 2102:100 error 'html_encode' is not defined no-undef - 2103:99 error 'html_encode' is not defined no-undef - 2103:141 error 'html_encode' is not defined no-undef - 2104:194 error 'html_encode' is not defined no-undef - 2104:220 error 'html_encode' is not defined no-undef - 2119:1 error '$' is not defined no-undef - 2119:65 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2120:5 error '$' is not defined no-undef - 2121:5 error '$' is not defined no-undef - 2124:5 error '$' is not defined no-undef - 2127:1 error '$' is not defined no-undef - 2128:5 error '$' is not defined no-undef - 2129:5 error '$' is not defined no-undef - 2131:22 error '$' is not defined no-undef - 2133:5 error '$' is not defined no-undef - 2134:5 error '$' is not defined no-undef - 2136:5 error '$' is not defined no-undef - 2139:5 error 'deploy' is not defined no-undef - 2139:19 error '$' is not defined no-undef - 2140:5 error '$' is not defined no-undef - 2143:1 error '$' is not defined no-undef - 2143:59 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2144:5 error '$' is not defined no-undef - 2146:1 error '$' is not defined no-undef - 2146:70 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2147:5 error '$' is not defined no-undef - 2148:5 error '$' is not defined no-undef - 2150:5 error '$' is not defined no-undef - 2156:1 error '$' is not defined no-undef - 2156:58 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2157:21 error '$' is not defined no-undef - 2158:19 error '$' is not defined no-undef - 2160:5 error 'puter' is not defined no-undef - 2168:24 error 'uploaded' is defined but never used @typescript-eslint/no-unused-vars - 2169:13 error 'puter' is not defined no-undef - 2183:5 error '$' is not defined no-undef - 2184:5 error '$' is not defined no-undef - 2185:5 error '$' is not defined no-undef - 2188:1 error '$' is not defined no-undef - 2190:9 error '$' is not defined no-undef - 2198:1 error '$' is not defined no-undef - 2200:9 error '$' is not defined no-undef - 2214:13 error '$' is not defined no-undef - 2216:13 error '$' is not defined no-undef - 2216:47 error 'html_encode' is not defined no-undef - 2227:27 error 'puter' is not defined no-undef - 2242:9 error 'puter' is not defined no-undef - 2247:9 error '$' is not defined no-undef - 2248:9 error '$' is not defined no-undef - 2269:5 error '$' is not defined no-undef - 2272:5 error '$' is not defined no-undef - 2272:39 error 'html_encode' is not defined no-undef - 2275:1 error '$' is not defined no-undef - 2275:62 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2276:5 error '$' is not defined no-undef - 2279:1 error '$' is not defined no-undef - 2279:46 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2280:5 error '$' is not defined no-undef - 2282:5 error 'puter' is not defined no-undef - 2286:13 error '$' is not defined no-undef - 2288:17 error '$' is not defined no-undef - 2298:25 error '$' is not defined no-undef - 2300:25 error '$' is not defined no-undef - 2308:13 error '$' is not defined no-undef - 2313:1 error '$' is not defined no-undef - 2320:1 error '$' is not defined no-undef - 2320:86 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2322:20 error '$' is not defined no-undef - 2325:9 error '$' is not defined no-undef - 2327:9 error '$' is not defined no-undef - 2330:9 error '$' is not defined no-undef - 2340:17 error '$' is not defined no-undef - 2342:17 error '$' is not defined no-undef - 2348:1 error '$' is not defined no-undef - 2348:52 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2349:5 error '$' is not defined no-undef - 2350:5 error '$' is not defined no-undef - 2351:5 error '$' is not defined no-undef - 2355:1 error '$' is not defined no-undef - 2355:53 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2357:9 error '$' is not defined no-undef - 2357:47 error '$' is not defined no-undef - 2358:9 error '$' is not defined no-undef - 2359:9 error '$' is not defined no-undef - 2360:16 error '$' is not defined no-undef - 2361:9 error '$' is not defined no-undef - 2362:9 error '$' is not defined no-undef - 2365:9 error '$' is not defined no-undef - 2366:9 error '$' is not defined no-undef - 2370:9 error '$' is not defined no-undef - 2371:9 error '$' is not defined no-undef - 2373:9 error '$' is not defined no-undef - 2376:9 error '$' is not defined no-undef - 2377:9 error '$' is not defined no-undef - 2379:9 error '$' is not defined no-undef - 2383:1 error '$' is not defined no-undef - 2383:61 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2385:22 error 'puter' is not defined no-undef - 2403:9 error '$' is not defined no-undef - 2406:22 error '$' is not defined no-undef - 2411:29 error '$' is not defined no-undef - 2412:30 error '$' is not defined no-undef - 2415:36 error 'puter' is not defined no-undef - 2419:21 error 'puter' is not defined no-undef - 2430:34 error 'puter' is not defined no-undef - 2452:19 error 'puter' is not defined no-undef - 2455:13 error '$' is not defined no-undef - 2455:78 error 'params' is defined but never used @typescript-eslint/no-unused-vars - 2456:17 error '$' is not defined no-undef - 2457:21 error '$' is not defined no-undef - 2458:21 error '$' is not defined no-undef - 2459:21 error '$' is not defined no-undef - 2461:21 error '$' is not defined no-undef - 2462:21 error '$' is not defined no-undef - 2469:36 error 'puter' is not defined no-undef - 2475:31 error 'puter' is not defined no-undef - 2478:23 error 'puter' is not defined no-undef - 2490:13 error '$' is not defined no-undef - 2491:16 error '$' is not defined no-undef - 2493:17 error '$' is not defined no-undef - 2495:17 error '$' is not defined no-undef - 2496:17 error '$' is not defined no-undef - 2502:1 error '$' is not defined no-undef - 2502:56 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2503:9 error '$' is not defined no-undef - 2504:9 error '$' is not defined no-undef - 2505:9 error '$' is not defined no-undef - 2506:9 error '$' is not defined no-undef - 2508:9 error '$' is not defined no-undef - 2509:9 error '$' is not defined no-undef - 2510:9 error '$' is not defined no-undef - 2541:1 error '$' is not defined no-undef - 2541:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2542:9 error '$' is not defined no-undef - 2543:9 error '$' is not defined no-undef - 2544:9 error '$' is not defined no-undef - 2546:9 error '$' is not defined no-undef - 2547:9 error '$' is not defined no-undef - 2551:1 error '$' is not defined no-undef - 2551:60 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2552:8 error '$' is not defined no-undef - 2560:5 error '$' is not defined no-undef - 2561:5 error '$' is not defined no-undef - 2562:5 error '$' is not defined no-undef - 2563:5 error '$' is not defined no-undef - 2564:5 error '$' is not defined no-undef - 2565:5 error '$' is not defined no-undef - 2569:5 error '$' is not defined no-undef - 2570:5 error '$' is not defined no-undef - 2571:5 error '$' is not defined no-undef - 2572:5 error '$' is not defined no-undef - 2573:5 error '$' is not defined no-undef - 2574:5 error '$' is not defined no-undef - 2577:1 error '$' is not defined no-undef - 2577:52 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2581:1 error '$' is not defined no-undef - 2581:54 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2582:5 error '$' is not defined no-undef - 2583:5 error '$' is not defined no-undef - 2589:35 error 'puter' is not defined no-undef - 2592:37 error 'puter' is not defined no-undef - 2599:19 error 'route' is assigned a value but never used @typescript-eslint/no-unused-vars - 2599:33 error 'puter' is not defined no-undef - 2602:19 error 'puter' is not defined no-undef - 2612:132 error 'html_encode' is not defined no-undef - 2612:186 error 'html_encode' is not defined no-undef - 2612:242 error 'html_encode' is not defined no-undef - 2621:1 error '$' is not defined no-undef - 2621:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2622:23 error 'puter' is not defined no-undef - 2626:31 error 'puter' is not defined no-undef - 2640:9 error '$' is not defined no-undef - 2641:9 error '$' is not defined no-undef - 2642:9 error '$' is not defined no-undef - 2649:1 error '$' is not defined no-undef - 2649:73 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2650:5 error '$' is not defined no-undef - 2651:5 error '$' is not defined no-undef - 2652:5 error '$' is not defined no-undef - 2653:5 error '$' is not defined no-undef - 2660:34 error 'puter' is not defined no-undef - 2671:15 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/dev-center/js/html-entities.js - 1:192 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:618 error Unexpected control character(s) in regular expression: \x01, \x08, \x11, \x15, \x17, \x1f no-control-regex - 1:798 error Unexpected control character(s) in regular expression: \x01, \x0c, \x0e, \x1f no-control-regex - 1:1315 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1470 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1500 error Expected a conditional expression and instead saw an assignment no-cond-assign - 1:1513 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1933 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2525 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2842 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2872 error Expected a conditional expression and instead saw an assignment no-cond-assign - 1:2885 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2950 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68654 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68979 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69614 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/dev-center/js/jquery-3.6.0.min.js - 2:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:29 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:71 error 'module' is not defined no-undef - 2:86 error 'module' is not defined no-undef - 2:794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:1202 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:2260 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:2317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:3420 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:3527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:3576 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:5642 error Unexpected control character(s) in regular expression: \x1f, \x1f no-control-regex - 2:5946 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:6029 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:6125 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:6349 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:6805 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:6857 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:7057 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:7076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:7361 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:7381 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:7627 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:8235 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:9864 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:9899 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:10209 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:10218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:10471 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:11284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:11795 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:12223 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:12791 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:12829 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:13191 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:13328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:13812 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:13821 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:14124 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:15144 error Unexpected constant truthiness on the left-hand side of a `&&` expression no-constant-binary-expression - 2:15952 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:16100 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:16223 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:16421 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:16795 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 2:17086 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:17485 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19305 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19405 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19465 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19649 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20422 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20477 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20818 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:21295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:21507 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:21747 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:21780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22090 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:22131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22140 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22201 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:22244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22688 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:23843 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:24201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:24367 error Unnecessary escape character: \/ no-useless-escape - 2:24637 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:24881 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:25340 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:25722 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:26113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:27949 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28081 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28378 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28708 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:29668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:29769 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:29979 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:30112 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:30353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:30474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:30595 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:30814 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31194 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31537 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31746 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31832 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31972 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:32815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:33495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:33977 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:33979 error Empty block statement no-empty - 2:34017 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:34433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35603 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35847 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:35881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35908 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:36283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:36731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:36764 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:36820 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:37014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:37409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:37630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:37724 error Unnecessary escape character: \/ no-useless-escape - 2:37787 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:38732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39346 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39373 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:39406 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39489 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:39498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39685 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:39687 error Empty block statement no-empty - 2:40148 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:40278 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:40527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:40701 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:40790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:41122 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:41881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42037 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42904 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:43444 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:43572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:43617 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:44447 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:44556 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:44683 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:45252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:45373 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:45506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:47601 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:47836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48028 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48169 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48491 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48611 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48837 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:49237 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:49283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:49356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:49591 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:49754 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50065 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50717 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50795 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:50797 error Empty block statement no-empty - 2:50800 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50944 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:51218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:51497 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:52020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:52051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:52347 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:52634 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:54092 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:55030 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:55649 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:57033 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:57521 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:58356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:58580 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:58859 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:59285 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:60379 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:60454 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:60793 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:60935 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:61000 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:61144 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:61320 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:61391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:62109 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:62196 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:62474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:62894 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63190 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63351 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63528 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63569 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63626 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63708 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63966 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64600 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64638 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64694 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64764 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:65293 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:66086 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:66650 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:67421 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:67829 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:67895 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:67904 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:67939 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68199 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:68265 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:68331 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68644 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68672 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:68681 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68949 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:69048 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:69157 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:70093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:70239 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:70544 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:71280 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:71294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:71409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:72443 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:72581 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:72825 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:72827 error Empty block statement no-empty - 2:73168 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:73321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:74353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:74440 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:74449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:74849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:74922 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:75721 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:76034 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:76794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:76814 error 'r.href' is assigned to itself no-self-assign - 2:76890 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:78199 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:78284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:78396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:78567 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:78781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:79368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:80481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:80934 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:81162 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:81650 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:81652 error Empty block statement no-empty - 2:81704 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82150 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82182 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82643 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82788 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82827 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83137 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83303 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83415 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83516 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83563 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:84258 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:84768 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:84921 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:85127 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:85470 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:86295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:86457 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:87047 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:88628 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:88858 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:89201 error 'define' is not defined no-undef - 2:89213 error 'define' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/dev-center/js/jquery.dragster.js - 85:3 error 'jQuery' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/dev-center/js/slugify.js - 3:5 error 'module' is not defined no-undef - 4:5 error 'module' is not defined no-undef - 7:44 error 'define' is not defined no-undef - 8:5 error 'define' is not defined no-undef - 14:4943 error Unnecessary escape character: \" no-useless-escape - 14:4954 error Unnecessary escape character: \" no-useless-escape - 14:4965 error Unnecessary escape character: \" no-useless-escape - -/Users/emilyzhu/Documents/GitHub/puter/src/emulator/dist/main.js - 1:303 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2144 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:3642 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:3821 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:4024 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:4176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:4714 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5322 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5872 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:6014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:6153 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:6315 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:8855 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:9066 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:9597 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:9795 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:10285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:10578 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:10884 error 'r' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:10940 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:11070 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:11438 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:11604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:11702 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:11743 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:12184 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:12470 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:12570 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:12600 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:12686 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:12865 error Expected to call 'super()' constructor-super - 1:12879 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:12879 error 'this' is not allowed before 'super()' no-this-before-super - 1:12897 error 'this' is not allowed before 'super()' no-this-before-super - 1:12922 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:13123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:13213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:13331 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:13462 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:13885 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:14467 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:14469 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:14471 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:14473 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:15817 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:15900 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:15987 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:16066 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:16224 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:16408 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:16641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17031 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17058 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17196 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17223 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17661 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17737 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:18015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:18388 error 'r' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:18967 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:19292 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:19676 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:19933 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:20428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:21035 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:21080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:21432 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:21724 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:21862 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:28714 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:28796 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:28902 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:28990 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:29394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:29442 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:30335 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:30524 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:30615 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:30696 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:30866 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:31067 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:31176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:31255 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:31463 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:31560 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:31598 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:31756 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:31964 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:32374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:32430 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:33002 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:33211 error 'e' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:33242 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:33260 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:33296 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:33470 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:33475 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:33574 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:33867 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:34095 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:34200 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:34221 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:34335 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:34419 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:34461 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:34482 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:34696 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:34729 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:34920 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:35029 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:35200 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:35564 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:35620 error Unnecessary escape character: \/ no-useless-escape - 1:36049 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:36213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:36304 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:36659 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:36701 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:36725 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:36803 error 'puter' is not defined no-undef - 1:36862 error 'i' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:36867 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:36955 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:37125 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:37228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:37352 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:37379 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:37430 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:37587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:38094 error 'puter' is not defined no-undef - 1:38129 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:38131 error Empty block statement no-empty - 1:38133 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:38143 error 'puter' is not defined no-undef - 1:38644 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:38890 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:39056 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:39263 error 'V86' is not defined no-undef - 1:39329 error 'puter' is not defined no-undef - 1:39681 error 'puter' is not defined no-undef - 1:39842 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:39887 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:40150 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:40299 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:40490 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:40725 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:40887 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:41107 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:41573 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:41614 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:41626 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:42006 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:42081 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/emulator/src/main.js - 3:42 error 'MODE' is not defined no-undef - 8:18 error 'MODE' is not defined no-undef - 10:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 10:26 error 'require' is not defined no-undef - 17:5 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 17:5 error 'require' is not defined no-undef - 19:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:19 error 'require' is not defined no-undef - 124:1 error 'puter' is not defined no-undef - 125:27 error 'reject' is assigned a value but never used @typescript-eslint/no-unused-vars - 193:28 error 'puter' is not defined no-undef - 194:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 194:17 error Empty block statement no-empty - 197:15 error 'puter' is not defined no-undef - 291:42 error 'V86' is not defined no-undef - 294:27 error 'puter' is not defined no-undef - 311:93 error 'puter' is not defined no-undef - 337:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 341:11 error 'decoder' is assigned a value but never used @typescript-eslint/no-unused-vars - 389:17 error Unreachable code no-unreachable - 393:17 error 'ptt' is not defined no-undef - 397:17 error Unreachable code no-unreachable - 397:17 error 'ptt' is not defined no-undef - 401:21 error 'ptt' is not defined no-undef - 405:17 error Unreachable code no-unreachable - 412:36 error 'ptt' is not defined no-undef - 481:21 error 'data' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/emulator/webpack.config.js - 1:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:27 error 'require' is not defined no-undef - 2:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:22 error 'require' is not defined no-undef - 3:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:20 error 'require' is not defined no-undef - 5:1 error 'module' is not defined no-undef - 14:34 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/git/dist/bundle.js - 4:145 error 'global' is not defined no-undef - 35:2 error Definition for rule 'node-core/prefer-primordials' was not found node-core/prefer-primordials - 177:4 warning Unused eslint-disable directive (no problems were reported from 'no-restricted-globals') - 198:4 warning Unused eslint-disable directive (no problems were reported from 'no-restricted-globals') - 239:4 warning Unused eslint-disable directive (no problems were reported from 'no-restricted-globals') - 252:4 warning Unused eslint-disable directive (no problems were reported from 'no-restricted-globals') - 278:2 error Definition for rule 'node-core/prefer-primordials' was not found node-core/prefer-primordials - 375:35 warning Unused eslint-disable directive (no problems were reported from 'no-useless-constructor') - 381:35 warning Unused eslint-disable directive (no problems were reported from 'no-useless-constructor') - 387:35 warning Unused eslint-disable directive (no problems were reported from 'no-useless-constructor') - 393:35 warning Unused eslint-disable directive (no problems were reported from 'no-useless-constructor') - 804:21 error 'process' is not defined no-undef - 809:33 error 'process' is not defined no-undef - 813:31 error 'process' is not defined no-undef - 1153:49 error 'process' is not defined no-undef - 1216:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1276:25 error 'process' is not defined no-undef - 1282:10 error Redundant double negation no-extra-boolean-cast - 1319:33 error 'process' is not defined no-undef - 1320:11 error 'process' is not defined no-undef - 1329:38 error 'process' is not defined no-undef - 1329:56 error 'process' is not defined no-undef - 1359:10 error Redundant double negation no-extra-boolean-cast - 1392:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1662:78 error Empty block statement no-empty - 1667:78 error Empty block statement no-empty - 1723:82 error Empty block statement no-empty - 1727:81 error Empty block statement no-empty - 1744:75 warning Unused eslint-disable directive (no problems were reported from 'dot-notation') - 1745:53 warning Unused eslint-disable directive (no problems were reported from 'dot-notation') - 1787:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2063:30 warning Unused eslint-disable directive (no problems were reported from 'eqeqeq') - 3378:51 error 'max' is defined but never used @typescript-eslint/no-unused-vars - 3378:56 error 'min' is defined but never used @typescript-eslint/no-unused-vars - 3552:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 3552:21 warning Unused eslint-disable directive (no problems were reported from 'no-unused-expressions') - 3812:24 warning Unused eslint-disable directive (no problems were reported from 'no-self-compare') - 3839:2 error Definition for rule 'node/no-deprecated-api' was not found node/no-deprecated-api - 4098:4 warning Unused eslint-disable directive (no problems were reported) - 4110:12 error 'Int32Array' is already defined as a built-in global variable no-redeclare - 4337:2 warning Unused eslint-disable directive (no problems were reported from 'space-unary-ops') - 4422:2 warning Unused eslint-disable directive (no problems were reported from 'comma-spacing' or 'array-bracket-spacing') - 7555:57 error '__' is defined but never used @typescript-eslint/no-unused-vars - 7556:69 error '__' is defined but never used @typescript-eslint/no-unused-vars - 11022:30 warning Unused eslint-disable directive (no problems were reported from 'guard-for-in') - 11639:6 error 'process' is not defined no-undef - 11639:21 error 'process' is not defined no-undef - 11640:9 error 'process' is not defined no-undef - 11680:42 error Unnecessary escape character: \- no-useless-escape - 11682:41 error Unnecessary escape character: \- no-useless-escape - 12769:13 error '_' is defined but never used @typescript-eslint/no-unused-vars - 12791:32 error 'Buffer' is not defined no-undef - 12828:10 error 'Buffer' is not defined no-undef - 12957:24 error 'Buffer' is not defined no-undef - 13021:20 error 'Buffer' is not defined no-undef - 13024:22 error 'Buffer' is not defined no-undef - 13044:21 error 'Buffer' is not defined no-undef - 13063:19 error 'Buffer' is not defined no-undef - 13064:19 error 'Buffer' is not defined no-undef - 13066:13 error 'Buffer' is not defined no-undef - 13066:34 error 'Buffer' is not defined no-undef - 13264:12 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 13345:18 error '_entry' is defined but never used @typescript-eslint/no-unused-vars - 14174:15 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 14257:15 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 14388:10 error 'Buffer' is not defined no-undef - 14414:13 error 'Buffer' is not defined no-undef - 14416:23 error 'Buffer' is not defined no-undef - 14417:24 error 'Buffer' is not defined no-undef - 14418:23 error 'Buffer' is not defined no-undef - 14419:27 error 'Buffer' is not defined no-undef - 14420:22 error 'Buffer' is not defined no-undef - 14421:17 error 'Buffer' is not defined no-undef - 14442:13 error 'Buffer' is not defined no-undef - 14443:8 error 'Buffer' is not defined no-undef - 14444:8 error 'Buffer' is not defined no-undef - 14462:16 error 'Buffer' is not defined no-undef - 14499:15 error 'Buffer' is not defined no-undef - 14668:27 error 'Buffer' is not defined no-undef - 14671:16 error 'Buffer' is not defined no-undef - 14703:20 error 'Buffer' is not defined no-undef - 14811:18 error 'Buffer' is not defined no-undef - 14929:38 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 14929:50 error 'reference' is defined but never used @typescript-eslint/no-unused-vars - 15017:17 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 15029:21 error 'Buffer' is not defined no-undef - 15036:44 error 'Buffer' is not defined no-undef - 15050:42 error 'Buffer' is not defined no-undef - 15056:45 error 'Buffer' is not defined no-undef - 15064:26 error 'Buffer' is not defined no-undef - 15066:24 error 'Buffer' is not defined no-undef - 15068:13 error 'Buffer' is not defined no-undef - 15143:15 error 'Buffer' is not defined no-undef - 15151:17 error 'Buffer' is not defined no-undef - 15168:4 error 'emitter' is defined but never used @typescript-eslint/no-unused-vars - 15169:4 error 'emitterPrefix' is defined but never used @typescript-eslint/no-unused-vars - 15204:4 error 'format' is assigned a value but never used @typescript-eslint/no-unused-vars - 15261:44 error 'Buffer' is not defined no-undef - 15292:22 error 'Buffer' is not defined no-undef - 15806:17 error 'Buffer' is not defined no-undef - 15902:13 error 'Buffer' is not defined no-undef - 15937:17 error 'Buffer' is not defined no-undef - 15960:13 error 'Buffer' is not defined no-undef - 16128:12 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 16203:15 error '_entry' is defined but never used @typescript-eslint/no-unused-vars - 16257:12 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 16369:29 error 'process' is not defined no-undef - 16540:4 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 16697:27 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 16727:19 error 'error' is defined but never used @typescript-eslint/no-unused-vars - 16733:19 error 'Buffer' is not defined no-undef - 16736:15 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 16752:15 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 16871:15 error 'Buffer' is not defined no-undef - 16871:46 error 'Buffer' is not defined no-undef - 17120:13 error '_' is defined but never used @typescript-eslint/no-unused-vars - 17139:15 error 'Buffer' is not defined no-undef - 17457:4 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 17858:13 error 'Buffer' is not defined no-undef - 18281:13 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 18403:15 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 18467:15 error 'method' is defined but never used @typescript-eslint/no-unused-vars - 18475:15 error 'method' is defined but never used @typescript-eslint/no-unused-vars - 18556:31 error '_' is defined but never used @typescript-eslint/no-unused-vars - 19094:15 error '_' is defined but never used @typescript-eslint/no-unused-vars - 19112:20 error 'Buffer' is not defined no-undef - 19222:13 error 'Buffer' is not defined no-undef - 19226:13 error 'Buffer' is not defined no-undef - 19231:15 error 'Buffer' is not defined no-undef - 19235:13 error 'Buffer' is not defined no-undef - 19235:28 error 'Buffer' is not defined no-undef - 19386:19 error 'Buffer' is not defined no-undef - 19391:13 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19501:17 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19690:4 error 'format' is assigned a value but never used @typescript-eslint/no-unused-vars - 19859:10 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 20003:10 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 20009:10 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 20231:15 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 20231:20 error Empty block statement no-empty - 20247:23 error 'Buffer' is not defined no-undef - 20280:17 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 20376:21 error 'Buffer' is not defined no-undef - 21222:17 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 21588:23 error 'Buffer' is not defined no-undef - 21589:24 error 'Buffer' is not defined no-undef - 21590:25 error 'Buffer' is not defined no-undef - 21600:14 error 'Buffer' is not defined no-undef - 22629:17 error 'Buffer' is not defined no-undef - 22631:17 error 'Buffer' is not defined no-undef - 24001:19 error 'Buffer' is not defined no-undef - 24029:12 error 'Buffer' is not defined no-undef - 24067:21 error 'Buffer' is not defined no-undef - 24295:15 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 24295:20 error Empty block statement no-empty - 24626:17 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 24626:20 error Empty block statement no-empty - 24723:18 error 'k' is defined but never used @typescript-eslint/no-unused-vars - 25373:4 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 25791:32 error 'gitdir' is defined but never used @typescript-eslint/no-unused-vars - 25857:17 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 26133:8 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 26138:8 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 26148:10 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 26151:10 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 27170:21 error 'Buffer' is not defined no-undef - 27562:18 error 'process' is not defined no-undef - 28022:14 error 'stream' is defined but never used @typescript-eslint/no-unused-vars - 28359:14 error 'stream' is defined but never used @typescript-eslint/no-unused-vars - 28370:14 error 'stream' is defined but never used @typescript-eslint/no-unused-vars - 28509:16 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 28646:19 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 28794:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 28819:23 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 28829:35 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 28866:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 28881:32 error 'filepath' is defined but never used @typescript-eslint/no-unused-vars - 28881:48 error 'workdir' is defined but never used @typescript-eslint/no-unused-vars - 28914:26 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - 28915:18 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 28937:25 error 'filepath' is defined but never used @typescript-eslint/no-unused-vars - 28937:35 error 'head' is defined but never used @typescript-eslint/no-unused-vars - 28938:32 error 'head' is defined but never used @typescript-eslint/no-unused-vars - 28938:48 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 29165:2 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 29244:7 warning Unused eslint-disable directive (no problems were reported from 'no-bitwise') - 29291:6 warning Unused eslint-disable directive (no problems were reported from 'no-bitwise') - 29519:3 warning Unused eslint-disable directive (no problems were reported from 'no-implicit-coercion') - 29828:22 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 30116:10 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 30508:6 error '_typeof' is a function no-func-assign - 30512:6 error '_typeof' is a function no-func-assign - 30621:16 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 30666:15 error Unnecessary escape character: \- no-useless-escape - 30666:17 error Unnecessary escape character: \- no-useless-escape - 30666:19 error Unnecessary escape character: \- no-useless-escape - 30690:27 error Unnecessary escape character: \- no-useless-escape - 30690:29 error Unnecessary escape character: \- no-useless-escape - 30690:31 error Unnecessary escape character: \- no-useless-escape - 31277:18 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 31320:27 error 'a' is assigned a value but never used @typescript-eslint/no-unused-vars - 31523:4 error 'onProgress' is defined but never used @typescript-eslint/no-unused-vars - 31600:34 error 'auth' is defined but never used @typescript-eslint/no-unused-vars - 31613:35 error 'auth' is defined but never used @typescript-eslint/no-unused-vars - 31801:27 error 'positionals' is assigned a value but never used @typescript-eslint/no-unused-vars - 31909:26 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - 32154:29 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 32253:34 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 32436:23 error 'a' is assigned a value but never used @typescript-eslint/no-unused-vars - 32436:26 error 'b' is assigned a value but never used @typescript-eslint/no-unused-vars - 32897:22 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 32897:26 error 'env' is assigned a value but never used @typescript-eslint/no-unused-vars - 32898:26 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - 32994:20 error 'stat' is assigned a value but never used @typescript-eslint/no-unused-vars - 33068:27 error 'positionals' is assigned a value but never used @typescript-eslint/no-unused-vars - 33427:24 error 'result' is assigned a value but never used @typescript-eslint/no-unused-vars - 33532:40 error 'tokens' is assigned a value but never used @typescript-eslint/no-unused-vars - 33667:18 error 'io' is assigned a value but never used @typescript-eslint/no-unused-vars - 33809:26 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - 33920:31 error 'args' is assigned a value but never used @typescript-eslint/no-unused-vars - 33921:26 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - 34067:22 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 34067:26 error 'env' is assigned a value but never used @typescript-eslint/no-unused-vars - 34067:31 error 'args' is assigned a value but never used @typescript-eslint/no-unused-vars - 34068:26 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - 34441:37 error 'puter' is not defined no-undef - 34465:31 error 'puter' is not defined no-undef - 34474:31 error 'puter' is not defined no-undef - 34483:40 error 'puter' is not defined no-undef - 34494:31 error 'puter' is not defined no-undef - 34503:31 error 'puter' is not defined no-undef - 34512:44 error 'puter' is not defined no-undef - 34522:44 error 'puter' is not defined no-undef - 34530:37 error 'puter' is not defined no-undef - 34573:20 error 'puter' is not defined no-undef - 34575:16 error 'puter' is not defined no-undef - 34576:10 error 'puter' is not defined no-undef - 34582:10 error 'puter' is not defined no-undef - 34614:10 error 'puter' is not defined no-undef - 34646:10 error 'puter' is not defined no-undef - 34674:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 34676:10 error 'puter' is not defined no-undef - 34707:6 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/git/rollup.config.js - 46:43 error 'name' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/auth.js - 46:33 error 'auth' is defined but never used @typescript-eslint/no-unused-vars - 59:34 error 'auth' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/filesystem.js - 91:36 error 'puter' is not defined no-undef - 115:30 error 'puter' is not defined no-undef - 124:30 error 'puter' is not defined no-undef - 133:39 error 'puter' is not defined no-undef - 144:30 error 'puter' is not defined no-undef - 153:30 error 'puter' is not defined no-undef - 162:43 error 'puter' is not defined no-undef - 172:43 error 'puter' is not defined no-undef - 180:36 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/format.js - 118:35 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 217:40 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 400:22 error 'a' is assigned a value but never used @typescript-eslint/no-unused-vars - 400:25 error 'b' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/git-helpers.js - 94:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 242:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 267:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 277:34 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 314:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 329:31 error 'filepath' is defined but never used @typescript-eslint/no-unused-vars - 329:47 error 'workdir' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/main.js - 23:8 error 'git' is defined but never used @typescript-eslint/no-unused-vars - 33:19 error 'puter' is not defined no-undef - 35:15 error 'puter' is not defined no-undef - 36:9 error 'puter' is not defined no-undef - 42:9 error 'puter' is not defined no-undef - 74:9 error 'puter' is not defined no-undef - 106:9 error 'puter' is not defined no-undef - 134:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 136:9 error 'puter' is not defined no-undef - 167:5 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/add.js - 33:25 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - 34:17 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 56:24 error 'filepath' is defined but never used @typescript-eslint/no-unused-vars - 56:34 error 'head' is defined but never used @typescript-eslint/no-unused-vars - 57:31 error 'head' is defined but never used @typescript-eslint/no-unused-vars - 57:47 error 'index' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/branch.js - 191:23 error 'result' is assigned a value but never used @typescript-eslint/no-unused-vars - 209:27 error 'oid' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/cherry-pick.js - 41:17 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 63:15 error 'original_head_oid' is assigned a value but never used @typescript-eslint/no-unused-vars - 85:26 error 'a' is assigned a value but never used @typescript-eslint/no-unused-vars - 128:19 error 'file_status' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/commit.js - 43:26 error 'positionals' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/config.js - 40:25 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/diff.js - 20:73 error 'resolve_to_oid' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/fetch.js - 22:10 error 'SHOW_USAGE' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/help.js - 37:21 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 37:25 error 'env' is assigned a value but never used @typescript-eslint/no-unused-vars - 38:25 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/init.js - 64:19 error 'stat' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/log.js - 54:26 error 'positionals' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/push.js - 22:10 error 'SHOW_USAGE' is defined but never used @typescript-eslint/no-unused-vars - 134:13 error 'branches' is defined but never used @typescript-eslint/no-unused-vars - 218:23 error 'result' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/remote.js - 41:39 error 'tokens' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/restore.js - 53:17 error 'stdout' is assigned a value but never used @typescript-eslint/no-unused-vars - 53:25 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/show.js - 47:25 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/status.js - 35:25 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - 36:17 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 36:26 error 'positionals' is assigned a value but never used @typescript-eslint/no-unused-vars - 54:15 error 'HEAD' is assigned a value but never used @typescript-eslint/no-unused-vars - 55:15 error 'WORKDIR' is assigned a value but never used @typescript-eslint/no-unused-vars - 56:15 error 'STAGE' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/git/src/subcommands/version.js - 32:21 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 32:25 error 'env' is assigned a value but never used @typescript-eslint/no-unused-vars - 33:25 error 'stderr' is assigned a value but never used @typescript-eslint/no-unused-vars - 34:17 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 34:26 error 'positionals' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/dev-server.js - 27:12 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/dist/bundle.min.js - 129:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:29 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:71 error 'module' is not defined no-undef - 129:86 error 'module' is not defined no-undef - 129:794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:1202 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:2260 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 129:2317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:3420 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:3527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:3576 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:5642 error Unexpected control character(s) in regular expression: \x1f, \x1f no-control-regex - 129:5946 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:6029 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 129:6125 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:6349 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:6805 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:6857 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:7057 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 129:7076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:7361 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 129:7381 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:7627 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:8235 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:9864 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:9899 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:10209 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:10218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:10471 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:11284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:11795 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:12223 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:12791 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:12829 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:13191 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 129:13328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:13812 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:13821 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:14124 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:15144 error Unexpected constant truthiness on the left-hand side of a `&&` expression no-constant-binary-expression - 129:15952 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:16100 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:16223 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:16421 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:16795 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 129:17086 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:17485 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:19305 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:19405 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:19465 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:19649 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:19874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:20236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:20279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:20333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:20359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:20422 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:20477 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:20818 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:21295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:21507 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:21747 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:21780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:22045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:22090 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:22131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:22140 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:22201 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:22244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:22281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:22688 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:23843 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:24201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:24367 error Unnecessary escape character: \/ no-useless-escape - 129:24637 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:24881 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 129:25340 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:25722 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:26113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:27949 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:28081 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:28317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:28378 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:28514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:28708 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:29668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:29769 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:29979 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 129:30112 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:30353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:30474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:30595 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:30814 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:31194 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:31498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:31537 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:31746 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:31832 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:31972 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:32815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:33495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:33977 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 129:34017 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:34433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:35108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:35603 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:35847 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 129:35881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:35908 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:35963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:36283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:36731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:36764 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:36820 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:37014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:37409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:37630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:37724 error Unnecessary escape character: \/ no-useless-escape - 129:37787 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:38732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:39080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:39257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:39346 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:39373 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:39406 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:39489 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:39498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:39685 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 129:40148 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:40278 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:40527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:40701 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:40790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:41122 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:41881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:42037 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:42228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:42380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:42732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:42815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:42904 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:43444 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:43572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:43617 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 129:44447 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:44556 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:44683 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:45252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:45373 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:45506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:47604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:47839 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:48031 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:48172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:48494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:48614 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:48840 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:49240 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:49286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:49359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:49594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:49757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:50068 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:50179 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:50301 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:50720 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:50798 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 129:50803 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:50947 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:51221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:51509 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:52160 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:52191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:52487 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:52774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:54223 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:55161 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:55780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:57164 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:57652 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:58487 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:58711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:58990 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:59416 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:60510 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:60585 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:60924 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:61066 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:61131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:61275 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 129:61451 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:61522 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:62240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:62327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:62605 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:63025 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:63321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:63482 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:63659 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:63700 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:63757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:63839 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:64097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:64182 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:64731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:64769 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:64825 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:64895 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:65424 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:66217 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:66781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:67552 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:68036 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:68078 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:68445 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:68817 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:68874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:69093 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:69192 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:69301 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:70237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:70383 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:70688 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:71424 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:71438 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:71553 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:72587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:72725 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:72969 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 129:73312 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:73465 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:74497 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:74584 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:74593 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:74993 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:75066 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:75865 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:76178 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:76938 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:76958 error 'r.href' is assigned to itself no-self-assign - 129:77034 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 129:78343 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:78428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:78540 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:78711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:78925 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:79512 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:80625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:81078 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 129:81306 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:81794 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 129:81848 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:82294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:82326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:82787 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:82829 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:82932 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:82971 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:83281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:83447 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:83559 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:83660 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:83707 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:84402 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:84912 error Expected a conditional expression and instead saw an assignment no-cond-assign - 129:85065 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 129:85271 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:85614 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:86439 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:86601 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:87191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:88789 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:89019 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 129:89364 error 'define' is not defined no-undef - 129:89376 error 'define' is not defined no-undef - 134:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:60 error 'module' is not defined no-undef - 134:106 error 'define' is not defined no-undef - 134:117 error 'define' is not defined no-undef - 134:1020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:1049 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:1108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:1887 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:2291 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:2333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:2359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:3522 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:3658 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:4097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:4309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:4871 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:5836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:6401 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:7173 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:7728 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:7981 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:8159 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:8409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:8803 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:9124 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:9252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:9405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:10217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:10329 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:10431 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:10478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:11170 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:11517 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:12041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 138:46 error 'define' is not defined no-undef - 138:57 error 'define' is not defined no-undef - 138:115 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 138:530 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 138:757 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 138:862 error 'c' is defined but never used @typescript-eslint/no-unused-vars - 138:907 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 138:1128 error 'global' is not defined no-undef - 138:1144 error 'global' is not defined no-undef - 138:1151 error 'global' is not defined no-undef - 138:1461 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 138:1926 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 138:2330 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 138:2368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 138:2535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 138:2625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 138:2674 error 'module' is not defined no-undef - 148:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:69 error 'module' is not defined no-undef - 148:115 error 'define' is not defined no-undef - 148:126 error 'define' is not defined no-undef - 148:249 error 't' is a function no-func-assign - 148:607 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:1175 error 'i' is a function no-func-assign - 148:1294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:1507 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:1683 error 's' is a function no-func-assign - 148:1822 error 'a' is a function no-func-assign - 148:2162 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:2186 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:2188 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 148:2190 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 148:2200 error 'c' is a function no-func-assign - 148:2433 error 'h' is a function no-func-assign - 148:3360 error 'p' is a function no-func-assign - 148:3687 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:4217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:4621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:4648 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:4691 error Unsafe usage of ThrowStatement no-unsafe-finally - 148:4728 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:6129 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:6243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:6641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:6656 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:6798 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:6881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:7004 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:7093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:7139 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:7380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:7579 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:7790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:9025 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 148:9116 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:9968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:10041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:10353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:10467 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:10996 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:10998 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 148:11263 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:11501 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:11630 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:11724 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:11968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:12304 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:12354 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:12422 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:12478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:12541 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:12594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:12688 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:12695 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:13181 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:13228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:13314 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:13321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:13431 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:13506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:13987 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:14033 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:14151 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:14175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:14533 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:14848 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:14871 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 148:14944 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:15044 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:15093 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:15097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:15327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:15637 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:15761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:15953 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:15957 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:16093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:16334 error 'attachEvent' is not defined no-undef - 148:16506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:16518 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 148:17324 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:17481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:17597 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:17604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:17630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:17941 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:18071 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:18075 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:18093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:18210 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:18698 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:18705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:19060 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:19214 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:19309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:19523 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:19595 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:19762 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:19824 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:19888 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:19930 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:19960 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:20118 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:20226 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:20244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:20367 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:20486 error Unnecessary escape character: \/ no-useless-escape - 148:20497 error Unnecessary escape character: \/ no-useless-escape - 148:20539 error Unnecessary escape character: \/ no-useless-escape - 148:20555 error Unnecessary escape character: \/ no-useless-escape - 148:20610 error Unnecessary escape character: \/ no-useless-escape - 148:20649 error Unnecessary escape character: \/ no-useless-escape - 148:20659 error Unnecessary escape character: \/ no-useless-escape - 148:20687 error Unnecessary escape character: \/ no-useless-escape - 148:20911 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:21321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:21368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:21511 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:23055 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:23468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:23703 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:24036 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:24087 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:24161 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:24168 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:24451 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:24533 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:24705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:24780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:24958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:25029 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:25113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:25251 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:25292 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:25414 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:25606 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:26193 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:26319 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:26369 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:26478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:26808 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:26815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:27059 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:27356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:27749 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:28370 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:28505 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:28525 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:28587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:28648 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:28836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:28923 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:29050 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:29641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:29705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:30226 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 148:30899 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:31313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:31481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:31494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:31737 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:32761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:33137 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:34156 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:34203 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:34693 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:35014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:36383 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 148:36806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:37142 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:37326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:37642 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:37823 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:37952 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:37959 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:38097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:38149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:38590 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:38716 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:38787 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:38794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:39082 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:39172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:39328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:39847 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:39956 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:40277 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:40442 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:40649 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:40756 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:40941 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:40948 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:41072 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:41174 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:41260 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:43190 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:43324 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:43785 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:45430 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:45551 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:45664 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:45671 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:45750 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:45785 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:45972 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:46015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:46232 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:46730 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:47041 error 't' is defined but never used @typescript-eslint/no-unused-vars - 148:47307 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:47427 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:47628 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:47819 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:47884 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 148:47944 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:48118 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:48228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:48326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:48474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:48583 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:48744 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:12 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:38 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:171 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:412 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:624 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:773 error 't' is defined but never used @typescript-eslint/no-unused-vars - 153:948 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:1253 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:1471 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:2000 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:2239 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:2446 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:2640 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:2731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:3459 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:3588 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:3901 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:4036 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:4174 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:4757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:5172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:5243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:6437 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:7730 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:7783 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:7844 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:7981 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:8142 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:8309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:8962 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:9010 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:9039 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:13243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:14218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:14294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:14412 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:14551 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:14553 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 153:14718 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:15080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:15409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:15874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:15996 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:16120 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:16435 error 'u' is defined but never used @typescript-eslint/no-unused-vars - 153:16552 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:16675 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:17286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:17395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:17665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:17701 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 153:17812 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:17913 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:18122 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:18333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:18577 error Unnecessary escape character: \% no-useless-escape - 153:18850 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:19057 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:19320 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:19556 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 153:19777 error 'module' is not defined no-undef - 161:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:27 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:54 error 'define' is not defined no-undef - 161:65 error 'define' is not defined no-undef - 161:88 error 'jQuery' is not defined no-undef - 161:243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:721 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:1635 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:1920 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:2436 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:2721 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:3016 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:3524 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:3531 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:4082 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:4572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:4781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:5120 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:5172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:5237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:5266 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:5783 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:5790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:5834 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:6134 error 'e' is already defined no-redeclare - 161:6297 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:6304 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:6584 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:6649 error 't' is already defined no-redeclare - 161:6705 error 't' is already defined no-redeclare - 161:6712 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:6758 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:7000 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:7120 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:7360 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:7778 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:8029 error Expected a conditional expression and instead saw an assignment no-cond-assign - 161:8106 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:8325 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:8571 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:8641 error Unnecessary escape character: \+ no-useless-escape - 161:8643 error Unnecessary escape character: \- no-useless-escape - 161:9199 error 'e' is already defined no-redeclare - 161:10376 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:11086 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:11299 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:11799 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:12130 error 's' is already defined no-redeclare - 161:12211 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:12424 error 's' is already defined no-redeclare - 161:12550 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:12803 error 'i' is already defined no-redeclare - 161:12889 error 'o' is already defined no-redeclare - 161:13063 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:13290 error 'i' is already defined no-redeclare - 161:13372 error 'o' is already defined no-redeclare - 161:13551 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:13729 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:13836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:13928 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:14405 error Unnecessary escape character: \- no-useless-escape - 161:14598 error Unnecessary escape character: \% no-useless-escape - 161:14622 error Unnecessary escape character: \% no-useless-escape - 161:14646 error Unnecessary escape character: \% no-useless-escape - 161:15175 error Unnecessary escape character: \% no-useless-escape - 161:15199 error Unnecessary escape character: \% no-useless-escape - 161:16038 error 'i' is already defined no-redeclare - 161:16054 error 'e' is already defined no-redeclare - 161:16298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:16416 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:16727 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:16780 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:17015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:17093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:17361 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:17569 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:17601 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:17663 error 't' is already defined no-redeclare - 161:17857 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:19386 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:19597 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:19685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:20031 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:20254 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:20304 error 't' is defined but never used @typescript-eslint/no-unused-vars - 161:20395 error 't' is defined but never used @typescript-eslint/no-unused-vars - 161:20427 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:21433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:21551 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:22158 error 'e' is already defined no-redeclare - 161:22176 error 't' is already defined no-redeclare - 161:22472 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:22758 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:23217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:23245 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:23347 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:23495 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:23669 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:24643 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:24744 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:25227 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:25238 error 't' is defined but never used @typescript-eslint/no-unused-vars - 161:25548 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:26456 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:26597 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:27851 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:27904 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:28051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:28169 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:28481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:28595 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:28656 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:28750 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:29415 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:29702 error 'o' is already defined no-redeclare - 161:29736 error 'r' is already defined no-redeclare - 161:29810 error 's' is already defined no-redeclare - 161:30059 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:30128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:30961 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:31121 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:31417 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:31738 error 'o' is already defined no-redeclare - 161:31903 error 't' is already defined no-redeclare - 161:32138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:32208 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:32430 error 'o' is already defined no-redeclare - 161:32450 error 'n' is already defined no-redeclare - 161:32464 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:32896 error 'o' is already defined no-redeclare - 161:32963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:33437 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:33572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:34211 error 's' is already defined no-redeclare - 161:34261 error Redundant double negation no-extra-boolean-cast - 161:34463 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:34631 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:34917 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:35511 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:36610 error 'e' is already defined no-redeclare - 161:36712 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:36996 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:37125 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:37320 error 's' is already defined no-redeclare - 161:37395 error 'i' is already defined no-redeclare - 161:37541 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:37917 error 's' is already defined no-redeclare - 161:38002 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:38042 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:38296 error 'n' is already defined no-redeclare - 161:38533 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:38926 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:39283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:39719 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:39885 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:40201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:40468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:40797 error Unexpected control character(s) in regular expression: \x1f no-control-regex - 161:41806 error 't' is already defined no-redeclare - 161:42228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:42320 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:43097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:43524 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:43820 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:43960 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:44300 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:44606 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:45165 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:45295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:45417 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:45897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:46454 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:46842 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:47397 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:47722 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:47867 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:48104 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:48496 error 'r' is already defined no-redeclare - 161:48552 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:49298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:49909 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:50014 error 'l' is already defined no-redeclare - 161:50358 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:50630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:50941 error 't' is defined but never used @typescript-eslint/no-unused-vars - 161:51237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:51496 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:51636 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:52187 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:52247 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:52418 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:52531 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:53068 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:53295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:53771 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:53972 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:54467 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:54512 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:54678 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:54754 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:55033 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:55326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:55838 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:56020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:56155 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:56801 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:57160 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:57378 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:57470 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:57586 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:57805 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:57939 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:58503 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:58645 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:59124 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:59395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:59832 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:60411 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:60532 error 't' is already defined no-redeclare - 161:60546 error Unnecessary escape character: \- no-useless-escape - 161:60548 error Unnecessary escape character: \[ no-useless-escape - 161:60563 error Unnecessary escape character: \^ no-useless-escape - 161:61208 error 't' is already defined no-redeclare - 161:61222 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:61582 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:61639 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:61685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:61737 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:61786 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:61867 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:61925 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:62049 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:62106 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:62433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:62502 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:62571 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:62932 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:63563 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:63693 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:64159 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:64306 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:64632 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:64916 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:64923 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:65133 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:65311 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:65490 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:65767 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:65951 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:66103 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:66300 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:66356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:66535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:66865 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:67271 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:67527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:67884 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:68195 error Unnecessary escape character: \- no-useless-escape - 161:68197 error Unnecessary escape character: \[ no-useless-escape - 161:68212 error Unnecessary escape character: \^ no-useless-escape - 161:68621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:68973 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:69396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:69468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:69769 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:69781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:69832 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:69913 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:70298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:70726 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:70830 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:72126 error 'e' is already defined no-redeclare - 161:72241 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:72436 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:72443 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:72781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:73717 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:74594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:75163 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:75499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:75594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:75707 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:75920 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:76569 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:76774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:77478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:77981 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:78134 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:78309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:78460 error 't' is already defined no-redeclare - 161:78539 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:79108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:79572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:79636 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:80321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:80533 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:81044 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:81482 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:81576 error 'e' is already defined no-redeclare - 161:82088 error 't' is already defined no-redeclare - 161:82166 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:82792 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:85053 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:85326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:85759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:85783 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:86093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:86324 error Unnecessary escape character: \- no-useless-escape - 161:86617 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:87004 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:87958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:88117 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:88401 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:89841 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:90316 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:90863 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:91593 error 't' is defined but never used @typescript-eslint/no-unused-vars - 161:91865 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:92568 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:92650 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:93032 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:93251 error Expected a conditional expression and instead saw an assignment no-cond-assign - 161:93716 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:93811 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:93906 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:94159 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:94262 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:94515 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:94627 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:94693 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:95114 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:95342 error 't' is defined but never used @typescript-eslint/no-unused-vars - 161:95396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:95771 error Expected a conditional expression and instead saw an assignment no-cond-assign - 161:97085 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:97304 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:97827 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:98968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:99741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:100193 error 't' is already defined no-redeclare - 161:100222 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:100342 error 't' is already defined no-redeclare - 161:100371 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:100726 error 't' is already defined no-redeclare - 161:100755 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:100958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:101353 error 't' is already defined no-redeclare - 161:101360 error 't' is already defined no-redeclare - 161:101382 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:101464 error Expected a conditional expression and instead saw an assignment no-cond-assign - 161:101791 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:102032 error 't' is already defined no-redeclare - 161:102395 error 'a' is already defined no-redeclare - 161:102793 error 'e' is already defined no-redeclare - 161:102842 error 't' is already defined no-redeclare - 161:102888 error 'e' is already defined no-redeclare - 161:103024 error 't' is already defined no-redeclare - 161:103415 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:103627 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:103709 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:103815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:104128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:105058 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:105615 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:105807 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:105968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:106333 error 't' is defined but never used @typescript-eslint/no-unused-vars - 161:106345 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:106892 error 't' is defined but never used @typescript-eslint/no-unused-vars - 161:107029 error Unnecessary escape character: \- no-useless-escape - 161:107202 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:107293 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:107812 error 'e' is already defined no-redeclare - 161:107872 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:109235 error 'C' is already defined no-redeclare - 161:109838 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:112191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:112276 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:112356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:113319 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:114465 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:115143 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:115517 error Unnecessary escape character: \- no-useless-escape - 161:115566 error Unnecessary escape character: \- no-useless-escape - 161:115942 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:116180 error 'e' is already defined no-redeclare - 161:116246 error 's' is already defined no-redeclare - 161:116316 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:116531 error 't' is already defined no-redeclare - 161:116562 error 'i' is already defined no-redeclare - 161:116659 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:117162 error 'i' is already defined no-redeclare - 161:117429 error 't' is already defined no-redeclare - 161:117563 error Unnecessary escape character: \- no-useless-escape - 161:117593 error Unnecessary escape character: \- no-useless-escape - 161:118072 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:118449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:118927 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:119175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:119261 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:119446 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:119453 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:119774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:120125 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:121585 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:122407 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:122607 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:122682 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:123213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:123402 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:123513 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:124183 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:124335 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:125383 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:126141 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:126559 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:127153 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:127472 error 't' is already defined no-redeclare - 161:127877 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:128007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:129742 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:131297 error 't' is already defined no-redeclare - 161:133262 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:133983 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:134080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:134236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:134295 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:134302 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:134658 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:134665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:136264 error 'i' is already defined no-redeclare - 161:136276 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:136380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:136489 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:136515 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:136624 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:136737 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:137043 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:138149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:138284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:138611 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:140203 error 'i' is already defined no-redeclare - 161:140215 error 'i' is already defined no-redeclare - 161:140342 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:140537 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:140563 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:140667 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:141309 error 'e' is already defined no-redeclare - 161:141378 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:141407 error 't' is defined but never used @typescript-eslint/no-unused-vars - 161:141461 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:141468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:142757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:142858 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:142980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:143503 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:143648 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:144108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:144396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:144475 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:145289 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:145602 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:146810 error 'e' is already defined no-redeclare - 161:146829 error 'i' is already defined no-redeclare - 161:147375 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:148127 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:148733 error 'n' is already defined no-redeclare - 161:148943 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:149257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:150254 error 'i' is already defined no-redeclare - 161:150855 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:151116 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:151404 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:152609 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:153146 error 'n' is already defined no-redeclare - 161:153169 error 'n' is already defined no-redeclare - 161:153217 error 'o' is already defined no-redeclare - 161:153670 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:153905 error 'o' is already defined no-redeclare - 161:153921 error 'a' is already defined no-redeclare - 161:153984 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:154803 error 't' is already defined no-redeclare - 161:154875 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:156355 error 'o' is already defined no-redeclare - 161:156391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:157360 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:157409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:157611 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:157976 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:158113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:158444 error 's' is already defined no-redeclare - 161:158619 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:159583 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:159991 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:160869 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:161079 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:161488 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:161495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:162042 error 's' is already defined no-redeclare - 161:162203 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:162210 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:162541 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:163013 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:163113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:163228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:163456 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:163969 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:164172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:164356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:164761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:165026 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:165119 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:165426 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:165456 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:165645 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:166189 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:166421 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:166659 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:166875 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:166943 error 't' is already defined no-redeclare - 161:167326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:167547 error 'i' is already defined no-redeclare - 161:167578 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:167907 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:167996 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:168141 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:168467 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:168590 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:168607 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:168630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:168885 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:169548 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:170311 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:170547 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:170729 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:171196 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:171232 error Expected a conditional expression and instead saw an assignment no-cond-assign - 161:171559 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:171648 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:171812 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:172072 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:172413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:172563 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:172711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:172957 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:173076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:173194 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:173412 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:175773 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:176120 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:176506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:176591 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:176731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:177374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:177619 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:177738 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:177856 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:177972 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:178064 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:178327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:178675 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:178831 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:179130 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:179252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:179337 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:179625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:180537 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:180544 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:180616 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:180793 error 'e' is already defined no-redeclare - 161:181251 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:181346 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:181368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:181748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:182267 error Expected a conditional expression and instead saw an assignment no-cond-assign - 161:182481 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:182716 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:183887 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:184007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:184227 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:184902 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:185089 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:185184 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:185286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:186014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:186072 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:186079 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:186428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:186569 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:186964 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:187215 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:187627 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:188097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:188443 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:188484 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:189055 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:189129 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:189604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:189795 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:189955 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:190105 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:190237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:190286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:190353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:190428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:190504 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:190828 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:190854 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:190963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:191100 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:191385 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:191525 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:191794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:192285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:192653 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:193030 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:193042 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:193359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:193910 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:194206 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:194523 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:194814 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:195415 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:195562 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:195680 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:196000 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:196673 error 'e' is already defined no-redeclare - 161:197137 error 't' is already defined no-redeclare - 161:197370 error 't' is already defined no-redeclare - 161:197944 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:198314 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:198482 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:198621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:198891 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:199326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:199589 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:199828 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:199931 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:200020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:200738 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:201020 error 't' is already defined no-redeclare - 161:201191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:201374 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:201417 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:201473 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:203797 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:204665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:204852 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:204946 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:204953 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:205376 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:205735 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:210407 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:210780 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:211295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:211545 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:212359 error Unnecessary escape character: \- no-useless-escape - 161:212371 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:212885 error 'h' is already defined no-redeclare - 161:212925 error 'c' is already defined no-redeclare - 161:213465 error 't' is already defined no-redeclare - 161:213840 error 't' is already defined no-redeclare - 161:214713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:215499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:215838 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:216141 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:216321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:217002 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:217366 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:217917 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:218477 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:218713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:219094 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:219259 error Expected a conditional expression and instead saw an assignment no-cond-assign - 161:219394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:219664 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:220506 error 't' is already defined no-redeclare - 161:221141 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:222759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:224160 error 't' is already defined no-redeclare - 161:226436 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:226672 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:226954 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:227038 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:227919 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:228763 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:229105 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:229194 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:229600 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:230047 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:230109 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:230245 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:230521 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:230643 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:230761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:230910 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:231078 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:231627 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:232812 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:232982 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:233467 error 't' is already defined no-redeclare - 161:233760 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:233925 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:234421 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:234723 error 'Globalize' is not defined no-undef - 161:234875 error 'Globalize' is not defined no-undef - 161:235209 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:235349 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:235557 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:235690 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:236331 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:236797 error 't' is defined but never used @typescript-eslint/no-unused-vars - 161:236835 error 't' is defined but never used @typescript-eslint/no-unused-vars - 161:236894 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:236916 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:238218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:238564 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:238844 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:239480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:239789 error Unnecessary escape character: \/ no-useless-escape - 161:239798 error Unnecessary escape character: \[ no-useless-escape - 161:239802 error Unnecessary escape character: \^ no-useless-escape - 161:239904 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:240336 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:240948 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:240996 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:241212 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:241327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:241790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:242677 error Expected a conditional expression and instead saw an assignment no-cond-assign - 161:242696 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:242885 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:243021 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:243435 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:243596 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:244158 error 'i' is already defined no-redeclare - 161:244208 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:244614 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:244660 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:244713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:244852 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:244938 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:245479 error 't' is already defined no-redeclare - 161:245501 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:245860 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:246045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:246281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:246511 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:246958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:247082 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:247107 error 't' is already defined no-redeclare - 161:247179 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:247404 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:247541 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:247883 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:248374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:248585 error 'e' is already defined no-redeclare - 161:248602 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:248655 error Expected a conditional expression and instead saw an assignment no-cond-assign - 161:248780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:249110 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:249117 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:249302 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:249309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:249366 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:249656 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:249706 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:249827 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:249891 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:250086 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:250402 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:250494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:250541 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:250710 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:250748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:250753 error Expected a conditional expression and instead saw an assignment no-cond-assign - 161:251515 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:251667 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:251755 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:251820 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:251990 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:252049 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:252533 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:253092 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:253293 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 161:253300 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 161:253357 error 'e' is already defined no-redeclare - 161:253369 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 173:88 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 175:481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 176:505 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 177:423 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 179:1967 error Unexpected control character(s) in regular expression: \x00 no-control-regex - 179:2022 error Unnecessary escape character: \[ no-useless-escape - 179:2026 error Unnecessary escape character: \/ no-useless-escape - 179:3710 error Unexpected combined character in character class no-misleading-character-class - 180:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 180:185 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 185:459 error 'global' is not defined no-undef - 185:467 error 'global' is not defined no-undef - 185:491 error 'global' is not defined no-undef - 185:623 error 'exports' is not defined no-undef - 185:633 error 'exports' is not defined no-undef - 185:651 error 'exports' is not defined no-undef - 185:691 error 'module' is not defined no-undef - 185:700 error 'module' is not defined no-undef - 185:717 error 'module' is not defined no-undef - 186:104 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 186:452 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 187:51 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 187:493 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 188:24 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 189:102 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 190:102 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 191:47 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 192:99 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 193:122 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 193:426 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 194:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 194:295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 195:366 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 195:409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 196:91 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 197:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 197:209 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 198:125 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 198:235 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 199:411 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 200:169 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 200:288 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 201:151 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 201:236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 203:229 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 203:350 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 204:274 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 204:381 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 205:47 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 205:191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 205:475 error 'r' is defined but never used @typescript-eslint/no-unused-vars - 205:477 error 'u' is defined but never used @typescript-eslint/no-unused-vars - 206:208 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 206:438 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 207:36 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 207:190 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 207:272 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 208:155 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 208:206 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 208:303 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 209:99 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 209:448 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 210:338 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 210:398 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 211:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 211:29 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 212:56 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 214:452 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 215:166 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 215:314 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 215:392 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 216:292 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 219:208 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 221:461 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 222:125 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 223:391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 227:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 227:23 error Expected a 'break' statement before 'case' no-fallthrough - 227:232 error Expected a 'break' statement before 'case' no-fallthrough - 227:323 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 228:128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 228:284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 228:354 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 230:211 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 235:20 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 235:79 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 237:118 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 237:304 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 237:330 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 237:401 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 238:333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 242:246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 245:476 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 246:156 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 246:192 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 247:432 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 251:118 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 251:227 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 262:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 264:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 264:240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 264:493 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 265:103 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 265:181 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 266:2 error Expected a conditional expression and instead saw an assignment no-cond-assign - 266:264 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 267:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 267:348 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 269:148 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 269:500 error Expected a conditional expression and instead saw an assignment no-cond-assign - 270:79 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 271:304 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 271:352 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 271:454 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 273:92 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 275:62 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 276:125 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 278:90 error Unexpected comma in middle of array no-sparse-arrays - 278:302 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 278:340 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 282:359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 282:433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 285:357 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 286:177 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 286:309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 286:402 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 287:109 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 288:290 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 297:286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 297:483 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 300:130 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 301:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 301:168 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 302:327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 303:239 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 303:283 error 'define' is not defined no-undef - 303:295 error 'define' is not defined no-undef - 303:315 error 'define' is not defined no-undef - 306:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 306:230 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 306:345 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 306:480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 306:562 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 306:801 error 'jQuery' is not defined no-undef - 309:192 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 309:616 error Unexpected control character(s) in regular expression: \x01, \x08, \x11, \x15, \x17, \x1f no-control-regex - 309:796 error Unexpected control character(s) in regular expression: \x01, \x0c, \x0e, \x1f no-control-regex - 309:1082 error 'e' is already defined no-redeclare - 309:1314 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 309:1508 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 309:1589 error 'a' is already defined no-redeclare - 309:1685 error 'a' is already defined no-redeclare - 309:1923 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 309:2031 error Expected a conditional expression and instead saw an assignment no-cond-assign - 309:2257 error 'e' is already defined no-redeclare - 309:2284 error 't' is already defined no-redeclare - 309:2305 error 'e' is already defined no-redeclare - 309:2315 error 'e' is already defined no-redeclare - 309:2486 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 309:2592 error Expected a conditional expression and instead saw an assignment no-cond-assign - 309:2809 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 309:2874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 309:69862 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 309:70187 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 309:70701 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 309:70801 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 312:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 312:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 312:71 error 'exports' is not defined no-undef - 312:107 error 'define' is not defined no-undef - 312:118 error 'define' is not defined no-undef - 312:969 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 312:1221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 312:1247 error Expected a conditional expression and instead saw an assignment no-cond-assign - 312:1295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 312:1326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 312:1593 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:69 error 'module' is not defined no-undef - 322:115 error 'define' is not defined no-undef - 322:126 error 'define' is not defined no-undef - 322:361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:586 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:894 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:1278 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:1467 error Expected a conditional expression and instead saw an assignment no-cond-assign - 322:1478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:2073 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:2257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:2288 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:2416 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:2449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:2590 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:2934 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:3273 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:3310 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:3342 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:4051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:4495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:4909 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:4938 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:5348 error Expected a conditional expression and instead saw an assignment no-cond-assign - 322:5361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:5390 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:5678 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:5761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:6144 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:6182 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:6546 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:6622 error Expected a conditional expression and instead saw an assignment no-cond-assign - 322:6679 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:6713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:7016 error Expected a conditional expression and instead saw an assignment no-cond-assign - 322:7045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:7063 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:7179 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:7310 error 'b' is a function no-func-assign - 322:7413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:7501 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:7602 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:7745 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:7944 error 'i' is defined but never used @typescript-eslint/no-unused-vars - 322:7957 error Expected a conditional expression and instead saw an assignment no-cond-assign - 322:8936 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:9088 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:9281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:10956 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:11003 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:11221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:12733 error Expected a conditional expression and instead saw an assignment no-cond-assign - 322:13182 error Expected a conditional expression and instead saw an assignment no-cond-assign - 322:13237 error Expected a conditional expression and instead saw an assignment no-cond-assign - 322:13305 error Expected a conditional expression and instead saw an assignment no-cond-assign - 322:13736 error Expected a conditional expression and instead saw an assignment no-cond-assign - 322:15491 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:16368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:16879 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 322:17085 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:17251 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:19412 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:19728 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:20890 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:20977 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:21723 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:22497 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:22584 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:23792 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 322:23799 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:24230 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:24310 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:24541 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:24772 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:24925 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 322:24932 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:25157 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 322:25223 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:25390 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 322:25460 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:25528 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 322:25612 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:25616 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 322:25849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:25850 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 322:26054 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:26174 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:26257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:26433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:26601 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 322:27579 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:27647 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 322:27664 error Expected a conditional expression and instead saw an assignment no-cond-assign - 326:589 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 326:896 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 326:1760 error 'module' is not defined no-undef - 326:1813 error 'define' is not defined no-undef - 326:1825 error 'define' is not defined no-undef - 337:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:14 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:67 error 'module' is not defined no-undef - 337:114 error 'define' is not defined no-undef - 337:125 error 'define' is not defined no-undef - 337:205 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:507 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 337:507 error 'require' is not defined no-undef - 337:546 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 337:550 error 'exports' is not defined no-undef - 337:733 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:895 error 'setImmediate' is not defined no-undef - 337:1449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:1980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:2246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:2487 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:2789 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:3506 error Unexpected comma in middle of array no-sparse-arrays - 337:3893 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:3981 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:4149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:4163 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:4240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:4666 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:4720 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:4735 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:4832 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:4891 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:4922 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:5053 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:5087 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:5101 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:5231 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:5370 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:5428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:5518 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:5654 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:5789 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:5910 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:6097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:6150 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:6209 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:6521 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:6610 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:6651 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:6805 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:6948 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:7368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:7566 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:7645 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:7708 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:7797 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:7859 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:8134 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:8486 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:8880 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:8989 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:9039 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:9090 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:9112 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:9244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:9711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:9757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:9963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:10195 error 'e' is already defined no-redeclare - 337:10685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:11466 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:11664 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:11810 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:11983 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:12036 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:12413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:12673 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:12744 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:13123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:13641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:13800 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:13927 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:14000 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:14207 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:14249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:14374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:14803 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:14888 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:14988 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:15200 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:15354 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:15514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:15907 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:15992 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:16077 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:16217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:16389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:16753 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:16868 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:16998 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:17214 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:17270 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:17300 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:17488 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 337:17591 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:18011 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:18093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:18169 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:18305 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:18801 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:18900 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:18976 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:19128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:19181 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:19725 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:19807 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:19902 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 337:20096 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:20147 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:20438 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:20540 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 337:20547 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:20621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:20694 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:21048 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:21170 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:21387 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:21423 error 't' is defined but never used @typescript-eslint/no-unused-vars - 337:21544 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:21804 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:22028 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:22077 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:22138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:22302 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:22630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:22665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:23087 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:23619 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:23726 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:24307 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:24404 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:24502 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:24655 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:24817 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 337:24824 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:25164 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 337:25171 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:25505 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:25577 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 337:25782 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:26007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:26073 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:26098 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:26128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:26207 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:26336 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:26392 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 337:26399 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:26494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:26740 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:26831 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:27002 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:27397 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:27496 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:27528 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:27725 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:27759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:28053 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:28230 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:28280 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:28549 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:28660 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:28866 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 337:29094 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 337:29101 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:29281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:29405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:29494 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 337:29738 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:29930 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:30046 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:30131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:30278 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:30454 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:30535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:30567 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:30742 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 337:30859 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:30961 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:31201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:31556 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:31643 error 'r' is defined but never used @typescript-eslint/no-unused-vars - 337:31734 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:32179 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:32306 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:32457 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 337:32626 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:43 error 'define' is not defined no-undef - 340:54 error 'define' is not defined no-undef - 340:107 error 'exports' is not defined no-undef - 340:124 error 'module' is not defined no-undef - 340:204 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:461 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:557 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:1032 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:1113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:1286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:1449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:1477 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:1515 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:1578 error 'setImmediate' is not defined no-undef - 340:1701 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:1792 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:2144 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:2571 error 'module' is not defined no-undef - 340:2586 error 'module' is not defined no-undef - 340:2851 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:3435 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:3646 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:3830 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:4055 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:4088 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:4223 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:4291 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:5020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:5277 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:5321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:5377 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:5421 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:5494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:5571 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:5663 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:5727 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:5791 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:5862 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:6915 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:7008 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:7152 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:7405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:7425 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:7780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:7985 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:8064 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:8144 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:8367 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:8625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:8875 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:9270 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:9413 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:9588 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:10246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:10394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:10668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:10823 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:11340 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:11389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:11606 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:11985 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:12005 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:12279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:12374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:12883 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:13079 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:13153 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:13505 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:13782 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:13811 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:13894 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:14310 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:14337 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:14377 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:14441 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:14458 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:14850 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:14906 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:15355 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:15569 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:15709 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:16054 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:16294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:16762 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:17334 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:17387 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:17496 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:17696 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:17747 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:17873 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:17875 error 'EXIF' is not defined no-undef - 340:17934 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:18027 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:18276 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:18485 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:18619 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:18754 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:19006 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:19322 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:19643 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:20516 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:21079 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:21106 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:21755 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:22061 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:22157 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:22359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:23238 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 340:23358 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 340:23365 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 918:39 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - 952:9 error 'install_in_instance' is assigned a value but never used @typescript-eslint/no-unused-vars - 955:39 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - 967:22 error 'v' is defined but never used @typescript-eslint/no-unused-vars - 1003:40 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - 1023:39 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - 1116:31 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1173:5 error Expected to call 'super()' constructor-super - 1174:9 error 'this' is not allowed before 'super()' no-this-before-super - 1175:9 error 'this' is not allowed before 'super()' no-this-before-super - 1449:18 error 'level' is defined but never used @typescript-eslint/no-unused-vars - 1449:25 error 'message' is defined but never used @typescript-eslint/no-unused-vars - 1449:34 error 'fields' is defined but never used @typescript-eslint/no-unused-vars - 1449:42 error 'values' is defined but never used @typescript-eslint/no-unused-vars - 1784:9 error 'TeePromise' is assigned a value but never used @typescript-eslint/no-unused-vars - 2059:24 error Promise executor functions should not be async no-async-promise-executor - 2065:164 error 'html_encode' is not defined no-undef - 2065:209 error 'html_encode' is not defined no-undef - 2065:234 error 'html_encode' is not defined no-undef - 2070:105 error 'i18n' is not defined no-undef - 2100:35 error '$' is not defined no-undef - 2102:48 error '$' is not defined no-undef - 2117:9 error '$' is not defined no-undef - 2117:63 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2118:34 error '$' is not defined no-undef - 2119:13 error '$' is not defined no-undef - 2121:9 error '$' is not defined no-undef - 2121:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2122:13 error '$' is not defined no-undef - 2123:13 error '$' is not defined no-undef - 2162:24 error Promise executor functions should not be async no-async-promise-executor - 2174:105 error 'i18n' is not defined no-undef - 2180:20 error 'i18n' is not defined no-undef - 2204:35 error 'iro' is not defined no-undef - 2204:51 error '$' is not defined no-undef - 2207:40 error 'iro' is not defined no-undef - 2215:40 error 'iro' is not defined no-undef - 2224:40 error 'iro' is not defined no-undef - 2246:9 error '$' is not defined no-undef - 2246:63 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2248:13 error '$' is not defined no-undef - 2250:9 error '$' is not defined no-undef - 2250:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2251:13 error '$' is not defined no-undef - 2252:13 error '$' is not defined no-undef - 2294:24 error Promise executor functions should not be async no-async-promise-executor - 2298:25 error 'i18n' is not defined no-undef - 2299:25 error 'i18n' is not defined no-undef - 2313:117 error 'i18n' is not defined no-undef - 2313:161 error 'i18n' is not defined no-undef - 2314:113 error 'i18n' is not defined no-undef - 2314:156 error 'i18n' is not defined no-undef - 2340:21 error '$' is not defined no-undef - 2355:9 error '$' is not defined no-undef - 2360:9 error '$' is not defined no-undef - 2363:16 error '$' is not defined no-undef - 2364:25 error '$' is not defined no-undef - 2368:13 error '$' is not defined no-undef - 2372:9 error '$' is not defined no-undef - 2374:17 error '$' is not defined no-undef - 2436:47 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2491:13 error 'batch_progress' is assigned a value but never used @typescript-eslint/no-unused-vars - 2618:31 error '$' is not defined no-undef - 2623:22 error '$' is not defined no-undef - 2628:30 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 2665:9 error 'puter' is not defined no-undef - 2712:22 error 'html_encode' is not defined no-undef - 2713:26 error 'html_encode' is not defined no-undef - 2762:124 error 'html_encode' is not defined no-undef - 2766:134 error 'i18n' is not defined no-undef - 2787:9 error '$' is not defined no-undef - 2790:25 error '$' is not defined no-undef - 2793:13 error '$' is not defined no-undef - 2796:17 error '$' is not defined no-undef - 2832:21 error '$' is not defined no-undef - 2846:9 error 'puter' is not defined no-undef - 2861:9 error 'puter' is not defined no-undef - 2877:9 error 'puter' is not defined no-undef - 2899:9 error '$' is not defined no-undef - 2933:9 error '$' is not defined no-undef - 2947:9 error '$' is not defined no-undef - 2952:13 error 'allowed_file_types' is assigned a value but never used @typescript-eslint/no-unused-vars - 2982:25 error '$' is not defined no-undef - 2982:57 error 'html_encode' is not defined no-undef - 2992:9 error '$' is not defined no-undef - 2992:54 error 'html_encode' is not defined no-undef - 3014:33 error '$' is not defined no-undef - 3017:26 error '$' is not defined no-undef - 3023:23 error '$' is not defined no-undef - 3039:26 error 'puter' is not defined no-undef - 3063:27 error 'html_encode' is not defined no-undef - 3064:128 error 'html_encode' is not defined no-undef - 3065:142 error 'html_encode' is not defined no-undef - 3072:25 error '$' is not defined no-undef - 3086:9 error '$' is not defined no-undef - 3092:9 error 'set_menu_item_prop' is not defined no-undef - 3098:9 error 'set_menu_item_prop' is not defined no-undef - 3104:9 error 'set_menu_item_prop' is not defined no-undef - 3110:9 error 'set_menu_item_prop' is not defined no-undef - 3116:9 error 'set_menu_item_prop' is not defined no-undef - 3124:26 error 'puter' is not defined no-undef - 3132:24 error '$' is not defined no-undef - 3134:24 error '$' is not defined no-undef - 3134:68 error '$' is not defined no-undef - 3136:13 error '$' is not defined no-undef - 3165:27 error 'html_encode' is not defined no-undef - 3168:128 error 'html_encode' is not defined no-undef - 3169:142 error 'html_encode' is not defined no-undef - 3190:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 3194:13 error '$' is not defined no-undef - 3226:23 error 'I' is assigned a value but never used @typescript-eslint/no-unused-vars - 3228:31 error 'html_encode' is not defined no-undef - 3229:33 error '$' is not defined no-undef - 3239:25 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 3251:25 error '$' is not defined no-undef - 3290:25 error '$' is not defined no-undef - 3290:57 error 'html_encode' is not defined no-undef - 3304:9 error '$' is not defined no-undef - 3317:25 error '$' is not defined no-undef - 3317:57 error 'html_encode' is not defined no-undef - 3332:9 error '$' is not defined no-undef - 3346:25 error '$' is not defined no-undef - 3346:57 error 'html_encode' is not defined no-undef - 3361:13 error '$' is not defined no-undef - 3369:13 error '$' is not defined no-undef - 3384:25 error '$' is not defined no-undef - 3384:57 error 'html_encode' is not defined no-undef - 3403:13 error '$' is not defined no-undef - 3415:13 error '$' is not defined no-undef - 3430:25 error '$' is not defined no-undef - 3430:57 error 'html_encode' is not defined no-undef - 3449:13 error '$' is not defined no-undef - 3464:25 error '$' is not defined no-undef - 3464:57 error 'html_encode' is not defined no-undef - 3483:13 error '$' is not defined no-undef - 3510:9 error 'puter' is not defined no-undef - 3518:52 error 'privacy_aware_path' is not defined no-undef - 3548:9 error 'puter' is not defined no-undef - 3553:17 error 'puter' is not defined no-undef - 3570:21 error 'puter' is not defined no-undef - 3621:9 error '$' is not defined no-undef - 3649:9 error '$' is not defined no-undef - 3677:9 error '$' is not defined no-undef - 3693:19 error '$' is not defined no-undef - 3725:13 error '$' is not defined no-undef - 3743:9 error '$' is not defined no-undef - 3760:17 error '$' is not defined no-undef - 3789:47 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 3811:47 error 'puter' is not defined no-undef - 3820:56 error 'puter' is not defined no-undef - 3835:43 error 'privacy_aware_path' is not defined no-undef - 3839:29 error '$' is not defined no-undef - 3843:29 error '$' is not defined no-undef - 3846:43 error '$' is not defined no-undef - 3846:75 error 'html_encode' is not defined no-undef - 3861:29 error '$' is not defined no-undef - 3861:61 error 'html_encode' is not defined no-undef - 3862:57 error '$' is not defined no-undef - 3862:87 error '$' is not defined no-undef - 3864:29 error '$' is not defined no-undef - 3871:57 error 'html_encode' is not defined no-undef - 3874:52 error 'i18n' is not defined no-undef - 3879:52 error 'i18n' is not defined no-undef - 3883:50 error '$' is not defined no-undef - 3889:37 error '$' is not defined no-undef - 3897:50 error '$' is not defined no-undef - 3900:33 error '$' is not defined no-undef - 3910:21 error '$' is not defined no-undef - 3914:25 error '$' is not defined no-undef - 3957:17 error 'overwrite' is assigned a value but never used @typescript-eslint/no-unused-vars - 3970:23 error 'res' is assigned a value but never used @typescript-eslint/no-unused-vars - 3980:39 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 3999:39 error 'puter' is not defined no-undef - 4005:48 error 'puter' is not defined no-undef - 4018:35 error 'privacy_aware_path' is not defined no-undef - 4021:21 error '$' is not defined no-undef - 4026:49 error 'html_encode' is not defined no-undef - 4029:44 error 'i18n' is not defined no-undef - 4033:44 error 'i18n' is not defined no-undef - 4120:13 error '$' is not defined no-undef - 4136:9 error '$' is not defined no-undef - 4145:11 error 'puter' is not defined no-undef - 4146:28 error 'puter' is not defined no-undef - 4180:19 error 'use' is not defined no-undef - 4182:66 error 'def' is not defined no-undef - 4216:13 error '$' is not defined no-undef - 4218:21 error 'html_encode' is not defined no-undef - 4224:9 error '$' is not defined no-undef - 4226:17 error 'html_encode' is not defined no-undef - 4234:29 error '$' is not defined no-undef - 4244:13 error '$' is not defined no-undef - 4279:19 error 'use' is not defined no-undef - 4281:66 error 'def' is not defined no-undef - 4334:32 error 'i18n' is not defined no-undef - 4336:9 error '$' is not defined no-undef - 4358:9 error '$' is not defined no-undef - 4363:35 error '$' is not defined no-undef - 4364:13 error '$' is not defined no-undef - 4370:17 error '$' is not defined no-undef - 4379:29 error '$' is not defined no-undef - 4388:36 error 'i18n' is not defined no-undef - 4393:15 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4394:9 error '$' is not defined no-undef - 4398:29 error '$' is not defined no-undef - 4446:36 error 'i18n' is not defined no-undef - 4447:13 error '$' is not defined no-undef - 4451:17 error '$' is not defined no-undef - 4455:17 error '$' is not defined no-undef - 4528:19 error 'use' is not defined no-undef - 4534:66 error 'def' is not defined no-undef - 4554:9 error '$' is not defined no-undef - 4566:13 error '$' is not defined no-undef - 4601:19 error 'use' is not defined no-undef - 4606:66 error 'def' is not defined no-undef - 4611:9 error '$' is not defined no-undef - 4615:13 error '$' is not defined no-undef - 4659:19 error 'use' is not defined no-undef - 4661:66 error 'def' is not defined no-undef - 4679:9 error '$' is not defined no-undef - 4694:13 error '$' is not defined no-undef - 4698:9 error '$' is not defined no-undef - 4704:17 error '$' is not defined no-undef - 4708:13 error '$' is not defined no-undef - 4713:9 error '$' is not defined no-undef - 4720:9 error '$' is not defined no-undef - 4795:24 error Promise executor functions should not be async no-async-promise-executor - 4799:25 error 'i18n' is not defined no-undef - 4808:32 error 'html_encode' is not defined no-undef - 4820:53 error 'html_encode' is not defined no-undef - 4827:67 error 'html_encode' is not defined no-undef - 4828:47 error 'html_encode' is not defined no-undef - 4829:47 error 'html_encode' is not defined no-undef - 4831:36 error 'html_encode' is not defined no-undef - 4869:9 error '$' is not defined no-undef - 4874:9 error '$' is not defined no-undef - 4877:21 error '$' is not defined no-undef - 4878:13 error '$' is not defined no-undef - 4884:1 error 'def' is not defined no-undef - 5298:41 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 5298:44 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 5315:4 error 'jQuery' is not defined no-undef - 5397:5 error '$' is not defined no-undef - 5411:85 error '$' is not defined no-undef - 5449:65 error 'html_encode' is not defined no-undef - 5450:72 error 'html_encode' is not defined no-undef - 5452:65 error 'html_encode' is not defined no-undef - 5452:169 error 'html_encode' is not defined no-undef - 5461:5 error '$' is not defined no-undef - 5465:24 error '$' is not defined no-undef - 5466:25 error '$' is not defined no-undef - 5473:12 error 'isMobile' is not defined no-undef - 5473:30 error 'isMobile' is not defined no-undef - 5496:22 error '$' is not defined no-undef - 5510:5 error '$' is not defined no-undef - 5520:9 error '$' is not defined no-undef - 5525:9 error '$' is not defined no-undef - 5527:9 error '$' is not defined no-undef - 5529:9 error '$' is not defined no-undef - 5533:5 error '$' is not defined no-undef - 5537:9 error '$' is not defined no-undef - 5537:71 error '$' is not defined no-undef - 5538:13 error '$' is not defined no-undef - 5542:9 error '$' is not defined no-undef - 5546:5 error '$' is not defined no-undef - 5549:26 error '$' is not defined no-undef - 5549:87 error '$' is not defined no-undef - 5551:41 error '$' is not defined no-undef - 5552:27 error '$' is not defined no-undef - 5555:31 error '$' is not defined no-undef - 5555:91 error '$' is not defined no-undef - 5556:27 error '$' is not defined no-undef - 5559:13 error '$' is not defined no-undef - 5571:5 error '$' is not defined no-undef - 5578:20 error '$' is not defined no-undef - 5578:55 error '$' is not defined no-undef - 5585:26 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 5597:24 error '$' is not defined no-undef - 5599:13 error '$' is not defined no-undef - 5601:13 error '$' is not defined no-undef - 5603:13 error '$' is not defined no-undef - 5605:13 error '$' is not defined no-undef - 5610:20 error '$' is not defined no-undef - 5613:24 error '$' is not defined no-undef - 5613:63 error '$' is not defined no-undef - 5615:25 error '$' is not defined no-undef - 5617:25 error '$' is not defined no-undef - 5621:29 error 'isMobile' is not defined no-undef - 5621:47 error 'isMobile' is not defined no-undef - 5631:59 error '$' is not defined no-undef - 5634:49 error '$' is not defined no-undef - 5649:16 error '$' is not defined no-undef - 5650:17 error '$' is not defined no-undef - 5650:56 error '$' is not defined no-undef - 5652:17 error '$' is not defined no-undef - 5657:13 error '$' is not defined no-undef - 5662:5 error '$' is not defined no-undef - 5670:5 error '$' is not defined no-undef - 5678:9 error '$' is not defined no-undef - 5679:9 error '$' is not defined no-undef - 5680:9 error '$' is not defined no-undef - 5683:5 error '$' is not defined no-undef - 5688:13 error '$' is not defined no-undef - 5691:13 error '$' is not defined no-undef - 5693:13 error '$' is not defined no-undef - 5694:16 error '$' is not defined no-undef - 5700:5 error '$' is not defined no-undef - 5706:5 error '$' is not defined no-undef - 5706:47 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 5707:9 error '$' is not defined no-undef - 5711:5 error '$' is not defined no-undef - 5711:47 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 5731:5 error '$' is not defined no-undef - 5733:5 error '$' is not defined no-undef - 5735:5 error '$' is not defined no-undef - 5738:1 error '$' is not defined no-undef - 5740:5 error '$' is not defined no-undef - 5743:1 error '$' is not defined no-undef - 5743:56 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 5745:5 error '$' is not defined no-undef - 5746:9 error '$' is not defined no-undef - 5750:1 error '$' is not defined no-undef - 5750:61 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 5750:64 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 5753:1 error '$' is not defined no-undef - 5753:64 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 5755:5 error '$' is not defined no-undef - 5776:66 error 'def' is not defined no-undef - 5818:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 5846:26 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 5893:28 error '$' is not defined no-undef - 5959:37 error '$' is not defined no-undef - 5961:9 error '$' is not defined no-undef - 5994:41 error '$' is not defined no-undef - 6005:30 error 'html_encode' is not defined no-undef - 6006:34 error 'html_encode' is not defined no-undef - 6011:53 error 'html_encode' is not defined no-undef - 6014:39 error 'html_encode' is not defined no-undef - 6015:44 error 'html_encode' is not defined no-undef - 6017:35 error 'html_encode' is not defined no-undef - 6019:32 error 'html_encode' is not defined no-undef - 6021:47 error 'html_encode' is not defined no-undef - 6022:30 error 'html_encode' is not defined no-undef - 6029:58 error 'timeago' is not defined no-undef - 6038:31 error 'i18n' is not defined no-undef - 6040:46 error 'html_encode' is not defined no-undef - 6046:31 error 'html_encode' is not defined no-undef - 6053:32 error 'html_encode' is not defined no-undef - 6059:32 error 'html_encode' is not defined no-undef - 6067:51 error 'html_encode' is not defined no-undef - 6073:32 error 'html_encode' is not defined no-undef - 6076:43 error 'html_encode' is not defined no-undef - 6082:32 error 'html_encode' is not defined no-undef - 6090:73 error 'html_encode' is not defined no-undef - 6090:122 error 'i18n' is not defined no-undef - 6090:138 error 'html_encode' is not defined no-undef - 6092:170 error 'html_encode' is not defined no-undef - 6096:5 error '$' is not defined no-undef - 6099:28 error '$' is not defined no-undef - 6107:24 error '$' is not defined no-undef - 6112:13 error '$' is not defined no-undef - 6113:25 error '$' is not defined no-undef - 6122:9 error '$' is not defined no-undef - 6134:9 error '$' is not defined no-undef - 6136:17 error '$' is not defined no-undef - 6139:17 error '$' is not defined no-undef - 6143:17 error '$' is not defined no-undef - 6146:64 error '$' is not defined no-undef - 6162:5 error '$' is not defined no-undef - 6171:25 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 6171:32 error 'ui' is defined but never used @typescript-eslint/no-unused-vars - 6173:13 error '$' is not defined no-undef - 6174:13 error '$' is not defined no-undef - 6176:13 error '$' is not defined no-undef - 6185:13 error '$' is not defined no-undef - 6188:32 error '$' is not defined no-undef - 6190:17 error '$' is not defined no-undef - 6196:13 error '$' is not defined no-undef - 6201:13 error '$' is not defined no-undef - 6212:17 error '$' is not defined no-undef - 6213:17 error '$' is not defined no-undef - 6214:17 error '$' is not defined no-undef - 6217:42 error '$' is not defined no-undef - 6221:13 error '$' is not defined no-undef - 6228:17 error '$' is not defined no-undef - 6237:13 error '$' is not defined no-undef - 6249:21 error '$' is not defined no-undef - 6254:16 error '$' is not defined no-undef - 6256:17 error '$' is not defined no-undef - 6256:50 error '$' is not defined no-undef - 6258:17 error '$' is not defined no-undef - 6258:50 error '$' is not defined no-undef - 6261:17 error '$' is not defined no-undef - 6266:37 error '$' is not defined no-undef - 6267:21 error '$' is not defined no-undef - 6278:16 error '$' is not defined no-undef - 6279:52 error '$' is not defined no-undef - 6286:17 error '$' is not defined no-undef - 6287:47 error '$' is not defined no-undef - 6291:13 error '$' is not defined no-undef - 6292:13 error '$' is not defined no-undef - 6294:13 error '$' is not defined no-undef - 6296:13 error '$' is not defined no-undef - 6306:5 error '$' is not defined no-undef - 6312:16 error '$' is not defined no-undef - 6312:71 error '$' is not defined no-undef - 6316:103 error '$' is not defined no-undef - 6330:71 error '$' is not defined no-undef - 6346:31 error '$' is not defined no-undef - 6347:30 error '$' is not defined no-undef - 6349:31 error '$' is not defined no-undef - 6368:21 error '$' is not defined no-undef - 6376:42 error '$' is not defined no-undef - 6377:58 error '$' is not defined no-undef - 6379:128 error '$' is not defined no-undef - 6385:100 error '$' is not defined no-undef - 6386:29 error '$' is not defined no-undef - 6387:46 error '$' is not defined no-undef - 6387:147 error '$' is not defined no-undef - 6389:29 error '$' is not defined no-undef - 6389:79 error '$' is not defined no-undef - 6389:114 error '$' is not defined no-undef - 6390:29 error '$' is not defined no-undef - 6390:84 error '$' is not defined no-undef - 6390:120 error '$' is not defined no-undef - 6396:24 error '$' is not defined no-undef - 6397:62 error '$' is not defined no-undef - 6400:54 error '$' is not defined no-undef - 6400:104 error '$' is not defined no-undef - 6400:147 error '$' is not defined no-undef - 6405:13 error '$' is not defined no-undef - 6411:39 error '$' is not defined no-undef - 6412:87 error '$' is not defined no-undef - 6415:17 error '$' is not defined no-undef - 6419:17 error '$' is not defined no-undef - 6420:17 error '$' is not defined no-undef - 6422:17 error '$' is not defined no-undef - 6425:13 error '$' is not defined no-undef - 6429:17 error '$' is not defined no-undef - 6434:17 error '$' is not defined no-undef - 6435:17 error '$' is not defined no-undef - 6436:17 error '$' is not defined no-undef - 6438:13 error '$' is not defined no-undef - 6445:8 error 'isMobile' is not defined no-undef - 6445:26 error 'isMobile' is not defined no-undef - 6446:9 error '$' is not defined no-undef - 6448:16 error '$' is not defined no-undef - 6451:16 error '$' is not defined no-undef - 6461:9 error '$' is not defined no-undef - 6463:16 error '$' is not defined no-undef - 6466:16 error '$' is not defined no-undef - 6479:5 error '$' is not defined no-undef - 6481:12 error '$' is not defined no-undef - 6485:12 error '$' is not defined no-undef - 6489:35 error '$' is not defined no-undef - 6492:29 error '$' is not defined no-undef - 6492:69 error '$' is not defined no-undef - 6493:13 error '$' is not defined no-undef - 6500:42 error '$' is not defined no-undef - 6501:13 error '$' is not defined no-undef - 6503:40 error '$' is not defined no-undef - 6504:13 error '$' is not defined no-undef - 6507:13 error '$' is not defined no-undef - 6514:5 error '$' is not defined no-undef - 6516:12 error '$' is not defined no-undef - 6520:35 error '$' is not defined no-undef - 6525:13 error '$' is not defined no-undef - 6541:68 error '$' is not defined no-undef - 6546:5 error '$' is not defined no-undef - 6547:13 error '$' is not defined no-undef - 6547:46 error '$' is not defined no-undef - 6547:84 error '$' is not defined no-undef - 6551:12 error '$' is not defined no-undef - 6565:26 error '$' is not defined no-undef - 6566:26 error '$' is not defined no-undef - 6567:26 error '$' is not defined no-undef - 6573:92 error '$' is not defined no-undef - 6581:13 error '$' is not defined no-undef - 6581:34 error 'html_encode' is not defined no-undef - 6582:13 error '$' is not defined no-undef - 6583:13 error '$' is not defined no-undef - 6583:40 error '$' is not defined no-undef - 6584:13 error '$' is not defined no-undef - 6588:9 error '$' is not defined no-undef - 6597:5 error '$' is not defined no-undef - 6599:13 error '$' is not defined no-undef - 6606:13 error '$' is not defined no-undef - 6607:13 error '$' is not defined no-undef - 6609:64 error '$' is not defined no-undef - 6617:5 error '$' is not defined no-undef - 6618:13 error '$' is not defined no-undef - 6626:13 error '$' is not defined no-undef - 6627:13 error '$' is not defined no-undef - 6628:13 error '$' is not defined no-undef - 6632:5 error '$' is not defined no-undef - 6642:5 error '$' is not defined no-undef - 6643:54 error '$' is not defined no-undef - 6658:5 error '$' is not defined no-undef - 6658:45 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 6665:5 error '$' is not defined no-undef - 6667:12 error '$' is not defined no-undef - 6671:12 error '$' is not defined no-undef - 6675:39 error 'isMobile' is not defined no-undef - 6675:58 error 'isMobile' is not defined no-undef - 6684:33 error '$' is not defined no-undef - 6696:27 error 'i18n' is not defined no-undef - 6699:35 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6700:44 error '$' is not defined no-undef - 6700:98 error '$' is not defined no-undef - 6729:35 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6730:46 error '$' is not defined no-undef - 6730:77 error '$' is not defined no-undef - 6730:109 error '$' is not defined no-undef - 6730:158 error '$' is not defined no-undef - 6744:27 error 'i18n' is not defined no-undef - 6751:118 error '$' is not defined no-undef - 6758:27 error 'i18n' is not defined no-undef - 6765:118 error '$' is not defined no-undef - 6777:23 error 'i18n' is not defined no-undef - 6782:31 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6783:47 error '$' is not defined no-undef - 6792:27 error 'i18n' is not defined no-undef - 6797:35 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6798:58 error '$' is not defined no-undef - 6812:27 error 'i18n' is not defined no-undef - 6815:38 error 'i18n' is not defined no-undef - 6818:44 error 'i18n' is not defined no-undef - 6822:44 error 'i18n' is not defined no-undef - 6831:49 error 'puter' is not defined no-undef - 6839:33 error '$' is not defined no-undef - 6839:55 error 'html_encode' is not defined no-undef - 6840:33 error '$' is not defined no-undef - 6840:57 error 'html_encode' is not defined no-undef - 6851:27 error 'i18n' is not defined no-undef - 6854:114 error '$' is not defined no-undef - 6856:32 error '$' is not defined no-undef - 6856:61 error '$' is not defined no-undef - 6861:104 error '$' is not defined no-undef - 6862:33 error '$' is not defined no-undef - 6864:33 error '$' is not defined no-undef - 6865:33 error '$' is not defined no-undef - 6865:75 error '$' is not defined no-undef - 6865:102 error '$' is not defined no-undef - 6866:33 error '$' is not defined no-undef - 6866:80 error '$' is not defined no-undef - 6866:108 error '$' is not defined no-undef - 6877:27 error 'i18n' is not defined no-undef - 6890:30 error '$' is not defined no-undef - 6890:84 error '$' is not defined no-undef - 6897:27 error 'i18n' is not defined no-undef - 6934:48 error 'html_encode' is not defined no-undef - 6936:119 error '$' is not defined no-undef - 6947:53 error 'i18n' is not defined no-undef - 6947:90 error 'html_encode' is not defined no-undef - 6951:56 error 'i18n' is not defined no-undef - 6956:56 error 'i18n' is not defined no-undef - 6967:48 error '$' is not defined no-undef - 6968:51 error '$' is not defined no-undef - 6969:47 error '$' is not defined no-undef - 6982:27 error 'i18n' is not defined no-undef - 6996:16 error '$' is not defined no-undef - 6998:27 error 'i18n' is not defined no-undef - 7031:103 error '$' is not defined no-undef - 7031:138 error '$' is not defined no-undef - 7031:174 error '$' is not defined no-undef - 7031:210 error '$' is not defined no-undef - 7041:27 error 'i18n' is not defined no-undef - 7058:118 error '$' is not defined no-undef - 7058:148 error '$' is not defined no-undef - 7068:27 error 'i18n' is not defined no-undef - 7073:40 error '$' is not defined no-undef - 7074:39 error '$' is not defined no-undef - 7090:27 error 'i18n' is not defined no-undef - 7101:27 error 'i18n' is not defined no-undef - 7105:124 error '$' is not defined no-undef - 7114:45 error '$' is not defined no-undef - 7116:27 error 'i18n' is not defined no-undef - 7118:120 error '$' is not defined no-undef - 7125:44 error '$' is not defined no-undef - 7127:27 error 'i18n' is not defined no-undef - 7129:40 error '$' is not defined no-undef - 7139:27 error 'i18n' is not defined no-undef - 7141:40 error '$' is not defined no-undef - 7141:98 error '$' is not defined no-undef - 7154:16 error '$' is not defined no-undef - 7156:27 error 'i18n' is not defined no-undef - 7168:27 error 'i18n' is not defined no-undef - 7178:16 error '$' is not defined no-undef - 7180:27 error 'i18n' is not defined no-undef - 7184:57 error '$' is not defined no-undef - 7186:63 error '$' is not defined no-undef - 7193:16 error '$' is not defined no-undef - 7201:27 error 'i18n' is not defined no-undef - 7203:110 error '$' is not defined no-undef - 7205:28 error '$' is not defined no-undef - 7205:60 error '$' is not defined no-undef - 7210:100 error '$' is not defined no-undef - 7223:16 error '$' is not defined no-undef - 7225:27 error 'i18n' is not defined no-undef - 7236:27 error 'i18n' is not defined no-undef - 7239:38 error 'i18n' is not defined no-undef - 7242:44 error 'i18n' is not defined no-undef - 7246:44 error 'i18n' is not defined no-undef - 7254:49 error 'puter' is not defined no-undef - 7261:33 error '$' is not defined no-undef - 7261:55 error 'html_encode' is not defined no-undef - 7261:123 error 'html_encode' is not defined no-undef - 7262:33 error '$' is not defined no-undef - 7271:16 error '$' is not defined no-undef - 7273:27 error 'i18n' is not defined no-undef - 7287:23 error 'i18n' is not defined no-undef - 7292:32 error '$' is not defined no-undef - 7292:61 error '$' is not defined no-undef - 7295:31 error '$' is not defined no-undef - 7295:59 error '$' is not defined no-undef - 7299:25 error '$' is not defined no-undef - 7300:25 error '$' is not defined no-undef - 7301:25 error '$' is not defined no-undef - 7313:30 error '$' is not defined no-undef - 7323:5 error '$' is not defined no-undef - 7324:21 error '$' is not defined no-undef - 7325:9 error '$' is not defined no-undef - 7325:37 error 'html_encode' is not defined no-undef - 7327:23 error '$' is not defined no-undef - 7328:23 error '$' is not defined no-undef - 7329:13 error '$' is not defined no-undef - 7330:13 error '$' is not defined no-undef - 7335:45 error '$' is not defined no-undef - 7335:105 error '$' is not defined no-undef - 7346:1 error '$' is not defined no-undef - 7348:1 error '$' is not defined no-undef - 7351:25 error '$' is not defined no-undef - 7358:1 error '$' is not defined no-undef - 7365:1 error '$' is not defined no-undef - 7370:23 error '$' is not defined no-undef - 7380:26 error 'i18n' is not defined no-undef - 7381:33 error 'i18n' is not defined no-undef - 7383:41 error '$' is not defined no-undef - 7391:23 error 'i18n' is not defined no-undef - 7393:41 error '$' is not defined no-undef - 7405:1 error '$' is not defined no-undef - 7405:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7406:5 error 'puter' is not defined no-undef - 7407:14 error '$' is not defined no-undef - 7418:1 error '$' is not defined no-undef - 7419:5 error 'puter' is not defined no-undef - 7420:14 error '$' is not defined no-undef - 7452:17 error '$' is not defined no-undef - 7468:1 error '$' is not defined no-undef - 7470:5 error '$' is not defined no-undef - 7474:1 error '$' is not defined no-undef - 7475:5 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 7476:5 error '$' is not defined no-undef - 7477:34 error '$' is not defined no-undef - 7478:9 error '$' is not defined no-undef - 7487:8 error '$' is not defined no-undef - 7491:83 error '$' is not defined no-undef - 7492:74 error 'i18n' is not defined no-undef - 7496:26 error '$' is not defined no-undef - 7497:33 error '$' is not defined no-undef - 7499:5 error '$' is not defined no-undef - 7500:5 error '$' is not defined no-undef - 7501:5 error '$' is not defined no-undef - 7502:5 error '$' is not defined no-undef - 7507:5 error '$' is not defined no-undef - 7507:32 error 'html_decode' is not defined no-undef - 7507:44 error '$' is not defined no-undef - 7510:23 error '$' is not defined no-undef - 7511:29 error '$' is not defined no-undef - 7516:9 error '$' is not defined no-undef - 7553:34 error '$' is not defined no-undef - 7556:5 error '$' is not defined no-undef - 7563:115 error 'html_encode' is not defined no-undef - 7567:5 error '$' is not defined no-undef - 7572:5 error '$' is not defined no-undef - 7572:36 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7583:9 error '$' is not defined no-undef - 7585:5 error '$' is not defined no-undef - 7587:13 error '$' is not defined no-undef - 7593:48 error '$' is not defined no-undef - 7598:42 error '$' is not defined no-undef - 7600:42 error '$' is not defined no-undef - 7604:50 error '$' is not defined no-undef - 7608:37 error '$' is not defined no-undef - 7608:77 error '$' is not defined no-undef - 7611:9 error '$' is not defined no-undef - 7619:5 error '$' is not defined no-undef - 7624:5 error '$' is not defined no-undef - 7685:38 error 'html_encode' is not defined no-undef - 7686:32 error 'html_encode' is not defined no-undef - 7687:31 error 'html_encode' is not defined no-undef - 7688:43 error 'html_encode' is not defined no-undef - 7690:28 error 'html_encode' is not defined no-undef - 7691:43 error 'html_encode' is not defined no-undef - 7699:31 error 'html_encode' is not defined no-undef - 7708:9 error '$' is not defined no-undef - 7710:9 error '$' is not defined no-undef - 7715:5 error '$' is not defined no-undef - 7717:5 error '$' is not defined no-undef - 7719:12 error '$' is not defined no-undef - 7724:13 error '$' is not defined no-undef - 7728:5 error '$' is not defined no-undef - 7731:13 error '$' is not defined no-undef - 7742:12 error '$' is not defined no-undef - 7746:39 error '$' is not defined no-undef - 7750:9 error '$' is not defined no-undef - 7752:23 error '$' is not defined no-undef - 7753:22 error '$' is not defined no-undef - 7755:21 error '$' is not defined no-undef - 7770:22 error '$' is not defined no-undef - 7775:37 error 'isMobile' is not defined no-undef - 7775:55 error 'isMobile' is not defined no-undef - 7786:22 error '$' is not defined no-undef - 7791:37 error 'isMobile' is not defined no-undef - 7791:55 error 'isMobile' is not defined no-undef - 7805:23 error 'i18n' is not defined no-undef - 7806:22 error '$' is not defined no-undef - 7817:23 error 'i18n' is not defined no-undef - 7818:22 error '$' is not defined no-undef - 7820:21 error '$' is not defined no-undef - 7821:24 error '$' is not defined no-undef - 7834:23 error 'i18n' is not defined no-undef - 7835:22 error '$' is not defined no-undef - 7837:21 error '$' is not defined no-undef - 7853:23 error 'i18n' is not defined no-undef - 7856:25 error '$' is not defined no-undef - 7863:23 error 'i18n' is not defined no-undef - 7866:25 error '$' is not defined no-undef - 7873:23 error 'i18n' is not defined no-undef - 7875:21 error '$' is not defined no-undef - 7889:5 error '$' is not defined no-undef - 7895:15 error '$' is not defined no-undef - 7896:15 error '$' is not defined no-undef - 7908:5 error '$' is not defined no-undef - 7914:16 error '$' is not defined no-undef - 7914:71 error '$' is not defined no-undef - 7918:103 error '$' is not defined no-undef - 7929:71 error '$' is not defined no-undef - 7951:31 error '$' is not defined no-undef - 7952:30 error '$' is not defined no-undef - 7954:31 error '$' is not defined no-undef - 7973:21 error '$' is not defined no-undef - 7978:17 error '$' is not defined no-undef - 7979:17 error '$' is not defined no-undef - 7980:17 error '$' is not defined no-undef - 7981:17 error '$' is not defined no-undef - 7985:13 error '$' is not defined no-undef - 7991:39 error '$' is not defined no-undef - 7992:87 error '$' is not defined no-undef - 7995:17 error '$' is not defined no-undef - 7999:17 error '$' is not defined no-undef - 8001:17 error '$' is not defined no-undef - 8003:17 error '$' is not defined no-undef - 8005:17 error '$' is not defined no-undef - 8008:13 error '$' is not defined no-undef - 8012:17 error '$' is not defined no-undef - 8017:17 error '$' is not defined no-undef - 8018:17 error '$' is not defined no-undef - 8019:17 error '$' is not defined no-undef - 8020:17 error '$' is not defined no-undef - 8022:13 error '$' is not defined no-undef - 8180:37 error '$' is not defined no-undef - 8180:60 error 'html_encode' is not defined no-undef - 8182:13 error '$' is not defined no-undef - 8182:36 error 'html_encode' is not defined no-undef - 8208:13 error 'isMobile' is not defined no-undef - 8211:8 error 'isMobile' is not defined no-undef - 8252:46 error 'html_encode' is not defined no-undef - 8253:29 error 'html_encode' is not defined no-undef - 8254:39 error 'html_encode' is not defined no-undef - 8255:34 error 'html_encode' is not defined no-undef - 8256:49 error 'html_encode' is not defined no-undef - 8257:30 error 'html_encode' is not defined no-undef - 8258:31 error 'html_encode' is not defined no-undef - 8259:30 error 'html_encode' is not defined no-undef - 8260:38 error 'html_encode' is not defined no-undef - 8261:37 error 'html_encode' is not defined no-undef - 8264:41 error 'html_encode' is not defined no-undef - 8267:47 error 'html_encode' is not defined no-undef - 8280:47 error 'html_encode' is not defined no-undef - 8283:69 error 'html_encode' is not defined no-undef - 8284:71 error 'html_encode' is not defined no-undef - 8285:85 error 'html_encode' is not defined no-undef - 8304:68 error 'html_encode' is not defined no-undef - 8308:114 error 'html_encode' is not defined no-undef - 8311:88 error 'html_encode' is not defined no-undef - 8313:84 error 'html_encode' is not defined no-undef - 8318:31 error 'isMobile' is not defined no-undef - 8320:72 error 'html_encode' is not defined no-undef - 8324:78 error 'i18n' is not defined no-undef - 8327:59 error 'i18n' is not defined no-undef - 8327:208 error 'html_encode' is not defined no-undef - 8327:303 error 'html_encode' is not defined no-undef - 8327:360 error 'i18n' is not defined no-undef - 8328:59 error 'i18n' is not defined no-undef - 8328:213 error 'html_encode' is not defined no-undef - 8328:308 error 'html_encode' is not defined no-undef - 8328:370 error 'i18n' is not defined no-undef - 8329:59 error 'i18n' is not defined no-undef - 8329:212 error 'html_encode' is not defined no-undef - 8329:309 error 'html_encode' is not defined no-undef - 8329:368 error 'i18n' is not defined no-undef - 8330:59 error 'i18n' is not defined no-undef - 8330:216 error 'html_encode' is not defined no-undef - 8330:315 error 'html_encode' is not defined no-undef - 8330:376 error 'i18n' is not defined no-undef - 8331:59 error 'i18n' is not defined no-undef - 8331:214 error 'html_encode' is not defined no-undef - 8331:312 error 'html_encode' is not defined no-undef - 8331:372 error 'i18n' is not defined no-undef - 8332:59 error 'i18n' is not defined no-undef - 8332:212 error 'html_encode' is not defined no-undef - 8332:309 error 'html_encode' is not defined no-undef - 8332:368 error 'i18n' is not defined no-undef - 8351:45 error 'html_encode' is not defined no-undef - 8351:198 error 'html_encode' is not defined no-undef - 8351:286 error 'html_encode' is not defined no-undef - 8351:308 error 'html_encode' is not defined no-undef - 8361:13 error '$' is not defined no-undef - 8369:133 error 'html_encode' is not defined no-undef - 8371:136 error 'html_encode' is not defined no-undef - 8373:164 error 'html_encode' is not defined no-undef - 8378:76 error 'html_encode' is not defined no-undef - 8378:113 error 'html_encode' is not defined no-undef - 8380:73 error 'html_encode' is not defined no-undef - 8387:44 error 'html_encode' is not defined no-undef - 8388:30 error 'html_encode' is not defined no-undef - 8404:37 error 'html_encode' is not defined no-undef - 8407:57 error 'html_encode' is not defined no-undef - 8408:63 error 'html_encode' is not defined no-undef - 8434:61 error 'i18n' is not defined no-undef - 8439:69 error 'i18n' is not defined no-undef - 8458:145 error 'html_encode' is not defined no-undef - 8459:87 error 'i18n' is not defined no-undef - 8463:82 error 'i18n' is not defined no-undef - 8475:10 error 'i18n' is not defined no-undef - 8478:87 error 'i18n' is not defined no-undef - 8479:113 error 'i18n' is not defined no-undef - 8488:87 error 'i18n' is not defined no-undef - 8489:133 error 'i18n' is not defined no-undef - 8499:30 error '$' is not defined no-undef - 8515:5 error '$' is not defined no-undef - 8520:35 error '$' is not defined no-undef - 8532:12 error '$' is not defined no-undef - 8539:54 error '$' is not defined no-undef - 8550:17 error '$' is not defined no-undef - 8553:17 error '$' is not defined no-undef - 8553:98 error '$' is not defined no-undef - 8554:17 error '$' is not defined no-undef - 8586:61 error '$' is not defined no-undef - 8593:5 error '$' is not defined no-undef - 8597:9 error '$' is not defined no-undef - 8606:9 error '$' is not defined no-undef - 8609:9 error '$' is not defined no-undef - 8623:5 error '$' is not defined no-undef - 8623:34 error 'html_encode' is not defined no-undef - 8627:9 error '$' is not defined no-undef - 8631:9 error '$' is not defined no-undef - 8635:9 error '$' is not defined no-undef - 8640:9 error '$' is not defined no-undef - 8648:13 error '$' is not defined no-undef - 8655:17 error '$' is not defined no-undef - 8666:32 error '$' is not defined no-undef - 8671:31 error '$' is not defined no-undef - 8672:30 error '$' is not defined no-undef - 8675:9 error '$' is not defined no-undef - 8687:13 error '$' is not defined no-undef - 8689:13 error '$' is not defined no-undef - 8692:21 error '$' is not defined no-undef - 8692:51 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 8700:33 error '$' is not defined no-undef - 8702:29 error '$' is not defined no-undef - 8705:25 error '$' is not defined no-undef - 8714:13 error '$' is not defined no-undef - 8714:43 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 8722:25 error '$' is not defined no-undef - 8724:21 error '$' is not defined no-undef - 8727:17 error '$' is not defined no-undef - 8740:9 error '$' is not defined no-undef - 8740:60 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 8741:30 error '$' is not defined no-undef - 8748:100 error '$' is not defined no-undef - 8756:9 error '$' is not defined no-undef - 8758:17 error '$' is not defined no-undef - 8765:9 error '$' is not defined no-undef - 8766:16 error '$' is not defined no-undef - 8767:17 error '$' is not defined no-undef - 8769:17 error '$' is not defined no-undef - 8771:9 error '$' is not defined no-undef - 8778:9 error '$' is not defined no-undef - 8778:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 8779:34 error '$' is not defined no-undef - 8795:46 error '$' is not defined no-undef - 8795:106 error '$' is not defined no-undef - 8798:40 error 'puter' is not defined no-undef - 8804:46 error 'privacy_aware_path' is not defined no-undef - 8807:35 error '$' is not defined no-undef - 8823:39 error '$' is not defined no-undef - 8835:17 error '$' is not defined no-undef - 8841:17 error '$' is not defined no-undef - 8843:17 error '$' is not defined no-undef - 8851:9 error '$' is not defined no-undef - 8851:69 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 8852:34 error '$' is not defined no-undef - 8858:39 error 'puter' is not defined no-undef - 8858:88 error '$' is not defined no-undef - 8872:46 error '$' is not defined no-undef - 8872:106 error '$' is not defined no-undef - 8875:39 error 'puter' is not defined no-undef - 8881:45 error 'privacy_aware_path' is not defined no-undef - 8884:35 error '$' is not defined no-undef - 8901:39 error '$' is not defined no-undef - 8909:17 error '$' is not defined no-undef - 8910:17 error '$' is not defined no-undef - 8919:9 error '$' is not defined no-undef - 8919:58 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 8924:13 error '$' is not defined no-undef - 8926:17 error '$' is not defined no-undef - 8927:17 error '$' is not defined no-undef - 8928:17 error '$' is not defined no-undef - 8939:9 error '$' is not defined no-undef - 8941:16 error '$' is not defined no-undef - 8956:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 8965:9 error '$' is not defined no-undef - 8974:72 error 'i18n' is not defined no-undef - 9007:9 error '$' is not defined no-undef - 9009:16 error '$' is not defined no-undef - 9036:9 error '$' is not defined no-undef - 9079:9 error '$' is not defined no-undef - 9080:170 error '$' is not defined no-undef - 9104:9 error '$' is not defined no-undef - 9105:30 error '$' is not defined no-undef - 9111:45 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 9113:43 error '$' is not defined no-undef - 9122:9 error '$' is not defined no-undef - 9123:30 error '$' is not defined no-undef - 9128:43 error '$' is not defined no-undef - 9131:43 error '$' is not defined no-undef - 9147:31 error 'isMobile' is not defined no-undef - 9148:13 error 'puter' is not defined no-undef - 9159:62 error 'html_encode' is not defined no-undef - 9160:46 error 'html_encode' is not defined no-undef - 9162:86 error 'html_encode' is not defined no-undef - 9166:17 error '$' is not defined no-undef - 9168:17 error '$' is not defined no-undef - 9173:28 error '$' is not defined no-undef - 9173:75 error '$' is not defined no-undef - 9180:34 error '$' is not defined no-undef - 9181:35 error '$' is not defined no-undef - 9182:35 error '$' is not defined no-undef - 9183:35 error '$' is not defined no-undef - 9189:83 error '$' is not defined no-undef - 9192:38 error '$' is not defined no-undef - 9193:39 error '$' is not defined no-undef - 9194:39 error '$' is not defined no-undef - 9195:39 error '$' is not defined no-undef - 9203:108 error '$' is not defined no-undef - 9204:37 error '$' is not defined no-undef - 9205:37 error '$' is not defined no-undef - 9207:37 error '$' is not defined no-undef - 9207:87 error '$' is not defined no-undef - 9207:122 error '$' is not defined no-undef - 9208:37 error '$' is not defined no-undef - 9208:92 error '$' is not defined no-undef - 9208:128 error '$' is not defined no-undef - 9214:117 error '$' is not defined no-undef - 9217:25 error '$' is not defined no-undef - 9218:25 error '$' is not defined no-undef - 9224:28 error '$' is not defined no-undef - 9224:75 error '$' is not defined no-undef - 9228:29 error '$' is not defined no-undef - 9232:25 error '$' is not defined no-undef - 9233:25 error '$' is not defined no-undef - 9234:25 error '$' is not defined no-undef - 9237:25 error '$' is not defined no-undef - 9241:29 error '$' is not defined no-undef - 9245:25 error '$' is not defined no-undef - 9246:25 error '$' is not defined no-undef - 9247:25 error '$' is not defined no-undef - 9249:25 error '$' is not defined no-undef - 9263:9 error '$' is not defined no-undef - 9269:9 error '$' is not defined no-undef - 9270:9 error '$' is not defined no-undef - 9273:9 error '$' is not defined no-undef - 9277:5 error '$' is not defined no-undef - 9278:12 error '$' is not defined no-undef - 9279:13 error '$' is not defined no-undef - 9283:17 error '$' is not defined no-undef - 9288:5 error '$' is not defined no-undef - 9288:40 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 9297:9 error '$' is not defined no-undef - 9298:16 error '$' is not defined no-undef - 9299:17 error '$' is not defined no-undef - 9307:54 error 'isMobile' is not defined no-undef - 9307:73 error 'isMobile' is not defined no-undef - 9310:31 error 'SelectionArea' is not defined no-undef - 9336:39 error 'store' is defined but never used @typescript-eslint/no-unused-vars - 9338:20 error '$' is not defined no-undef - 9340:27 error 'evt' is defined but never used @typescript-eslint/no-unused-vars - 9355:56 error '$' is not defined no-undef - 9371:21 error '$' is not defined no-undef - 9377:45 error '$' is not defined no-undef - 9378:17 error '$' is not defined no-undef - 9380:17 error '$' is not defined no-undef - 9382:23 error 'store' is defined but never used @typescript-eslint/no-unused-vars - 9382:30 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 9384:45 error '$' is not defined no-undef - 9385:17 error '$' is not defined no-undef - 9387:17 error '$' is not defined no-undef - 9394:5 error '$' is not defined no-undef - 9400:16 error '$' is not defined no-undef - 9400:63 error '$' is not defined no-undef - 9404:17 error '$' is not defined no-undef - 9419:75 error '$' is not defined no-undef - 9429:46 error '$' is not defined no-undef - 9429:107 error '$' is not defined no-undef - 9432:40 error 'puter' is not defined no-undef - 9446:31 error 'privacy_aware_path' is not defined no-undef - 9454:38 error '$' is not defined no-undef - 9465:17 error '$' is not defined no-undef - 9476:16 error '$' is not defined no-undef - 9476:81 error '$' is not defined no-undef - 9480:99 error '$' is not defined no-undef - 9484:13 error '$' is not defined no-undef - 9494:71 error '$' is not defined no-undef - 9503:28 error '$' is not defined no-undef - 9511:26 error '$' is not defined no-undef - 9512:27 error '$' is not defined no-undef - 9513:27 error '$' is not defined no-undef - 9514:27 error '$' is not defined no-undef - 9520:75 error '$' is not defined no-undef - 9523:30 error '$' is not defined no-undef - 9524:31 error '$' is not defined no-undef - 9525:31 error '$' is not defined no-undef - 9526:31 error '$' is not defined no-undef - 9535:29 error '$' is not defined no-undef - 9537:50 error '$' is not defined no-undef - 9544:96 error '$' is not defined no-undef - 9545:25 error '$' is not defined no-undef - 9546:25 error '$' is not defined no-undef - 9548:25 error '$' is not defined no-undef - 9548:75 error '$' is not defined no-undef - 9548:110 error '$' is not defined no-undef - 9549:25 error '$' is not defined no-undef - 9549:80 error '$' is not defined no-undef - 9549:116 error '$' is not defined no-undef - 9555:50 error '$' is not defined no-undef - 9560:17 error '$' is not defined no-undef - 9565:17 error '$' is not defined no-undef - 9576:9 error '$' is not defined no-undef - 9581:5 error '$' is not defined no-undef - 9583:13 error '$' is not defined no-undef - 9592:9 error '$' is not defined no-undef - 9602:5 error '$' is not defined no-undef - 9603:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 9603:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 9609:17 error '$' is not defined no-undef - 9612:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 9612:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 9616:25 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 9616:40 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 9620:25 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 9620:40 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 9630:5 error '$' is not defined no-undef - 9631:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 9631:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 9634:17 error '$' is not defined no-undef - 9637:17 error '$' is not defined no-undef - 9640:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 9640:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 9642:17 error '$' is not defined no-undef - 9650:63 error '$' is not defined no-undef - 9653:17 error '$' is not defined no-undef - 9664:5 error '$' is not defined no-undef - 9665:9 error '$' is not defined no-undef - 9673:5 error '$' is not defined no-undef - 9674:9 error '$' is not defined no-undef - 9687:39 error '$' is not defined no-undef - 9693:9 error '$' is not defined no-undef - 9694:29 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 9694:32 error 'ui' is defined but never used @typescript-eslint/no-unused-vars - 9698:21 error '$' is not defined no-undef - 9704:24 error '$' is not defined no-undef - 9706:29 error '$' is not defined no-undef - 9711:29 error '$' is not defined no-undef - 9713:29 error '$' is not defined no-undef - 9719:17 error '$' is not defined no-undef - 9722:49 error '$' is not defined no-undef - 9726:54 error '$' is not defined no-undef - 9729:17 error '$' is not defined no-undef - 9731:30 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 9731:33 error 'ui' is defined but never used @typescript-eslint/no-unused-vars - 9732:17 error '$' is not defined no-undef - 9733:17 error '$' is not defined no-undef - 9736:17 error '$' is not defined no-undef - 9738:20 error '$' is not defined no-undef - 9739:21 error '$' is not defined no-undef - 9741:21 error '$' is not defined no-undef - 9755:29 error '$' is not defined no-undef - 9841:29 error '$' is not defined no-undef - 9845:45 error '$' is not defined no-undef - 9846:46 error '$' is not defined no-undef - 9858:17 error '$' is not defined no-undef - 9860:17 error '$' is not defined no-undef - 9861:17 error '$' is not defined no-undef - 9862:38 error '$' is not defined no-undef - 9863:39 error '$' is not defined no-undef - 9866:17 error '$' is not defined no-undef - 9867:17 error '$' is not defined no-undef - 9871:17 error '$' is not defined no-undef - 9872:21 error '$' is not defined no-undef - 9872:44 error '$' is not defined no-undef - 9877:21 error '$' is not defined no-undef - 9882:29 error '$' is not defined no-undef - 9891:29 error '$' is not defined no-undef - 9900:29 error '$' is not defined no-undef - 9909:29 error '$' is not defined no-undef - 9918:29 error '$' is not defined no-undef - 9927:29 error '$' is not defined no-undef - 9947:28 error '$' is not defined no-undef - 9949:33 error '$' is not defined no-undef - 9954:33 error '$' is not defined no-undef - 9956:33 error '$' is not defined no-undef - 9965:20 error '$' is not defined no-undef - 9966:21 error '$' is not defined no-undef - 9971:20 error '$' is not defined no-undef - 9972:21 error '$' is not defined no-undef - 9977:21 error '$' is not defined no-undef - 9977:52 error '$' is not defined no-undef - 9978:21 error '$' is not defined no-undef - 9979:37 error '$' is not defined no-undef - 9994:12 error '$' is not defined no-undef - 9995:13 error '$' is not defined no-undef - 9999:9 error '$' is not defined no-undef - 10005:17 error '$' is not defined no-undef - 10006:17 error '$' is not defined no-undef - 10012:25 error '$' is not defined no-undef - 10019:25 error '$' is not defined no-undef - 10025:20 error '$' is not defined no-undef - 10026:62 error '$' is not defined no-undef - 10027:21 error '$' is not defined no-undef - 10037:17 error '$' is not defined no-undef - 10038:17 error '$' is not defined no-undef - 10039:17 error '$' is not defined no-undef - 10040:17 error '$' is not defined no-undef - 10041:40 error '$' is not defined no-undef - 10042:41 error '$' is not defined no-undef - 10045:17 error '$' is not defined no-undef - 10046:17 error '$' is not defined no-undef - 10055:16 error '$' is not defined no-undef - 10061:13 error '$' is not defined no-undef - 10062:13 error '$' is not defined no-undef - 10065:13 error '$' is not defined no-undef - 10066:13 error '$' is not defined no-undef - 10067:31 error '$' is not defined no-undef - 10069:13 error 'puter' is not defined no-undef - 10078:5 error '$' is not defined no-undef - 10082:17 error '$' is not defined no-undef - 10089:5 error '$' is not defined no-undef - 10091:39 error 'isMobile' is not defined no-undef - 10091:58 error 'isMobile' is not defined no-undef - 10094:25 error '$' is not defined no-undef - 10113:23 error '$' is not defined no-undef - 10122:21 error '$' is not defined no-undef - 10135:21 error '$' is not defined no-undef - 10135:57 error '$' is not defined no-undef - 10147:17 error '$' is not defined no-undef - 10161:5 error '$' is not defined no-undef - 10163:39 error 'isMobile' is not defined no-undef - 10163:58 error 'isMobile' is not defined no-undef - 10166:25 error '$' is not defined no-undef - 10176:16 error '$' is not defined no-undef - 10184:35 error 'i18n' is not defined no-undef - 10187:43 error 'i18n' is not defined no-undef - 10188:43 error '$' is not defined no-undef - 10190:83 error '$' is not defined no-undef - 10191:60 error '$' is not defined no-undef - 10191:99 error '$' is not defined no-undef - 10195:43 error 'i18n' is not defined no-undef - 10196:43 error '$' is not defined no-undef - 10198:87 error '$' is not defined no-undef - 10199:60 error '$' is not defined no-undef - 10199:103 error '$' is not defined no-undef - 10203:43 error 'i18n' is not defined no-undef - 10204:43 error '$' is not defined no-undef - 10206:83 error '$' is not defined no-undef - 10207:60 error '$' is not defined no-undef - 10207:99 error '$' is not defined no-undef - 10211:43 error 'i18n' is not defined no-undef - 10212:43 error '$' is not defined no-undef - 10214:83 error '$' is not defined no-undef - 10215:60 error '$' is not defined no-undef - 10215:99 error '$' is not defined no-undef - 10223:43 error 'i18n' is not defined no-undef - 10224:43 error '$' is not defined no-undef - 10226:57 error '$' is not defined no-undef - 10228:60 error '$' is not defined no-undef - 10232:43 error 'i18n' is not defined no-undef - 10233:43 error '$' is not defined no-undef - 10235:57 error '$' is not defined no-undef - 10237:60 error '$' is not defined no-undef - 10247:35 error 'i18n' is not defined no-undef - 10256:35 error 'i18n' is not defined no-undef - 10272:113 error '$' is not defined no-undef - 10281:35 error 'i18n' is not defined no-undef - 10282:73 error '$' is not defined no-undef - 10285:65 error '$' is not defined no-undef - 10294:35 error 'i18n' is not defined no-undef - 10304:35 error 'i18n' is not defined no-undef - 10305:39 error '$' is not defined no-undef - 10307:81 error '$' is not defined no-undef - 10318:35 error 'i18n' is not defined no-undef - 10325:54 error 'i18n' is not defined no-undef - 10335:113 error '$' is not defined no-undef - 10335:144 error '$' is not defined no-undef - 10335:176 error '$' is not defined no-undef - 10342:35 error 'i18n' is not defined no-undef - 10347:48 error '$' is not defined no-undef - 10348:47 error '$' is not defined no-undef - 10350:54 error '$' is not defined no-undef - 10363:35 error 'i18n' is not defined no-undef - 10390:35 error 'i18n' is not defined no-undef - 10395:46 error 'i18n' is not defined no-undef - 10398:52 error 'i18n' is not defined no-undef - 10403:52 error 'i18n' is not defined no-undef - 10412:33 error '$' is not defined no-undef - 10412:56 error 'html_encode' is not defined no-undef - 10420:33 error '$' is not defined no-undef - 10420:55 error 'html_encode' is not defined no-undef - 10420:123 error 'html_encode' is not defined no-undef - 10432:9 error '$' is not defined no-undef - 10441:5 error '$' is not defined no-undef - 10441:62 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 10443:15 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 10444:9 error '$' is not defined no-undef - 10445:30 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 10445:45 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 10446:17 error '$' is not defined no-undef - 10448:30 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 10448:45 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 10449:17 error '$' is not defined no-undef - 10453:17 error '$' is not defined no-undef - 10456:63 error '$' is not defined no-undef - 10469:27 error 'isMobile' is not defined no-undef - 10470:26 error '$' is not defined no-undef - 10507:31 error '$' is not defined no-undef - 10508:31 error '$' is not defined no-undef - 10518:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 10519:18 error '$' is not defined no-undef - 10520:17 error '$' is not defined no-undef - 10525:13 error '$' is not defined no-undef - 10530:5 error '$' is not defined no-undef - 10534:9 error '$' is not defined no-undef - 10537:13 error '$' is not defined no-undef - 10550:5 error '$' is not defined no-undef - 10553:8 error '$' is not defined no-undef - 10557:1 error '$' is not defined no-undef - 10558:23 error '$' is not defined no-undef - 10559:27 error '$' is not defined no-undef - 10560:24 error '$' is not defined no-undef - 10581:27 error '$' is not defined no-undef - 10590:1 error '$' is not defined no-undef - 10596:1 error '$' is not defined no-undef - 10598:35 error 'isMobile' is not defined no-undef - 10598:54 error 'isMobile' is not defined no-undef - 10605:11 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 10607:25 error '$' is not defined no-undef - 10615:21 error '$' is not defined no-undef - 10624:37 error '$' is not defined no-undef - 10648:1 error '$' is not defined no-undef - 10648:69 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 10649:21 error '$' is not defined no-undef - 10651:8 error '$' is not defined no-undef - 10652:43 error '$' is not defined no-undef - 10653:9 error '$' is not defined no-undef - 10657:13 error '$' is not defined no-undef - 10658:22 error '$' is not defined no-undef - 10658:47 error '$' is not defined no-undef - 10659:9 error '$' is not defined no-undef - 10665:13 error '$' is not defined no-undef - 10666:41 error '$' is not defined no-undef - 10667:9 error '$' is not defined no-undef - 10672:13 error '$' is not defined no-undef - 10673:21 error '$' is not defined no-undef - 10673:45 error '$' is not defined no-undef - 10674:9 error '$' is not defined no-undef - 10680:13 error '$' is not defined no-undef - 10681:21 error '$' is not defined no-undef - 10681:45 error '$' is not defined no-undef - 10682:43 error '$' is not defined no-undef - 10683:9 error '$' is not defined no-undef - 10690:13 error '$' is not defined no-undef - 10691:41 error '$' is not defined no-undef - 10692:43 error '$' is not defined no-undef - 10693:9 error '$' is not defined no-undef - 10699:13 error '$' is not defined no-undef - 10700:41 error '$' is not defined no-undef - 10701:22 error '$' is not defined no-undef - 10701:47 error '$' is not defined no-undef - 10702:9 error '$' is not defined no-undef - 10709:13 error '$' is not defined no-undef - 10710:21 error '$' is not defined no-undef - 10710:45 error '$' is not defined no-undef - 10711:22 error '$' is not defined no-undef - 10711:47 error '$' is not defined no-undef - 10712:9 error '$' is not defined no-undef - 10722:1 error '$' is not defined no-undef - 10723:9 error '$' is not defined no-undef - 10726:5 error '$' is not defined no-undef - 10727:5 error '$' is not defined no-undef - 10729:1 error '$' is not defined no-undef - 10730:5 error '$' is not defined no-undef - 10731:5 error '$' is not defined no-undef - 10734:1 error '$' is not defined no-undef - 10736:35 error '$' is not defined no-undef - 10736:67 error '$' is not defined no-undef - 10737:9 error '$' is not defined no-undef - 10738:9 error '$' is not defined no-undef - 10743:1 error '$' is not defined no-undef - 10744:31 error '$' is not defined no-undef - 10745:27 error '$' is not defined no-undef - 10749:25 error '$' is not defined no-undef - 10760:53 error '$' is not defined no-undef - 10762:55 error '$' is not defined no-undef - 10764:54 error '$' is not defined no-undef - 10768:1 error '$' is not defined no-undef - 10770:8 error '$' is not defined no-undef - 10774:35 error 'isMobile' is not defined no-undef - 10774:54 error 'isMobile' is not defined no-undef - 10782:1 error '$' is not defined no-undef - 10784:35 error 'isMobile' is not defined no-undef - 10784:54 error 'isMobile' is not defined no-undef - 10789:11 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 10796:13 error '$' is not defined no-undef - 10807:23 error '$' is not defined no-undef - 10808:25 error '$' is not defined no-undef - 10808:152 error '$' is not defined no-undef - 10810:22 error '$' is not defined no-undef - 10819:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 10828:45 error '$' is not defined no-undef - 10830:51 error '$' is not defined no-undef - 10835:25 error '$' is not defined no-undef - 10841:1 error '$' is not defined no-undef - 10851:5 error '$' is not defined no-undef - 10856:16 error '$' is not defined no-undef - 10856:63 error '$' is not defined no-undef - 10867:71 error '$' is not defined no-undef - 10876:96 error '$' is not defined no-undef - 10877:25 error '$' is not defined no-undef - 10878:25 error '$' is not defined no-undef - 10880:25 error '$' is not defined no-undef - 10880:75 error '$' is not defined no-undef - 10880:110 error '$' is not defined no-undef - 10881:25 error '$' is not defined no-undef - 10881:80 error '$' is not defined no-undef - 10881:116 error '$' is not defined no-undef - 10887:50 error '$' is not defined no-undef - 10890:13 error '$' is not defined no-undef - 10891:13 error '$' is not defined no-undef - 10897:16 error '$' is not defined no-undef - 10897:63 error '$' is not defined no-undef - 10901:17 error '$' is not defined no-undef - 10905:13 error '$' is not defined no-undef - 10906:13 error '$' is not defined no-undef - 10907:13 error '$' is not defined no-undef - 10910:13 error '$' is not defined no-undef - 10914:17 error '$' is not defined no-undef - 10918:13 error '$' is not defined no-undef - 10919:13 error '$' is not defined no-undef - 10920:13 error '$' is not defined no-undef - 10922:13 error '$' is not defined no-undef - 10945:87 error 'html_encode' is not defined no-undef - 10954:92 error 'html_encode' is not defined no-undef - 10954:113 error 'html_encode' is not defined no-undef - 10956:93 error 'html_encode' is not defined no-undef - 10956:144 error 'i18n' is not defined no-undef - 10956:160 error 'html_encode' is not defined no-undef - 10962:20 error '$' is not defined no-undef - 10963:42 error '$' is not defined no-undef - 10964:39 error '$' is not defined no-undef - 10965:37 error '$' is not defined no-undef - 10966:28 error '$' is not defined no-undef - 10967:38 error '$' is not defined no-undef - 10968:41 error '$' is not defined no-undef - 10969:21 error '$' is not defined no-undef - 10969:65 error '$' is not defined no-undef - 10970:22 error '$' is not defined no-undef - 10973:5 error '$' is not defined no-undef - 10974:5 error '$' is not defined no-undef - 10974:58 error 'html_encode' is not defined no-undef - 10977:5 error '$' is not defined no-undef - 10982:13 error '$' is not defined no-undef - 10985:13 error '$' is not defined no-undef - 10989:13 error '$' is not defined no-undef - 10992:13 error '$' is not defined no-undef - 10996:13 error '$' is not defined no-undef - 10999:13 error '$' is not defined no-undef - 11001:9 error '$' is not defined no-undef - 11002:9 error '$' is not defined no-undef - 11005:9 error '$' is not defined no-undef - 11008:12 error '$' is not defined no-undef - 11009:13 error '$' is not defined no-undef - 11012:9 error '$' is not defined no-undef - 11016:13 error '$' is not defined no-undef - 11017:13 error '$' is not defined no-undef - 11019:13 error '$' is not defined no-undef - 11020:13 error '$' is not defined no-undef - 11020:58 error 'i18n' is not defined no-undef - 11022:13 error '$' is not defined no-undef - 11023:13 error '$' is not defined no-undef - 11023:58 error 'i18n' is not defined no-undef - 11025:13 error '$' is not defined no-undef - 11026:13 error '$' is not defined no-undef - 11028:13 error '$' is not defined no-undef - 11029:13 error '$' is not defined no-undef - 11031:13 error '$' is not defined no-undef - 11032:13 error '$' is not defined no-undef - 11035:13 error '$' is not defined no-undef - 11037:13 error '$' is not defined no-undef - 11040:5 error '$' is not defined no-undef - 11040:36 error 'html_encode' is not defined no-undef - 11041:5 error '$' is not defined no-undef - 11041:36 error 'html_encode' is not defined no-undef - 11046:13 error 'puter' is not defined no-undef - 11047:17 error '$' is not defined no-undef - 11047:54 error '$' is not defined no-undef - 11048:17 error '$' is not defined no-undef - 11049:17 error '$' is not defined no-undef - 11050:17 error '$' is not defined no-undef - 11051:17 error '$' is not defined no-undef - 11052:17 error '$' is not defined no-undef - 11053:17 error '$' is not defined no-undef - 11056:21 error '$' is not defined no-undef - 11056:66 error 'i18n' is not defined no-undef - 11058:21 error '$' is not defined no-undef - 11060:17 error '$' is not defined no-undef - 11060:48 error 'html_encode' is not defined no-undef - 11062:17 error '$' is not defined no-undef - 11062:48 error 'html_encode' is not defined no-undef - 11063:17 error '$' is not defined no-undef - 11064:17 error '$' is not defined no-undef - 11082:9 error '$' is not defined no-undef - 11082:46 error '$' is not defined no-undef - 11083:9 error '$' is not defined no-undef - 11084:9 error '$' is not defined no-undef - 11085:9 error '$' is not defined no-undef - 11086:9 error '$' is not defined no-undef - 11101:5 error '$' is not defined no-undef - 11106:16 error '$' is not defined no-undef - 11106:63 error '$' is not defined no-undef - 11117:71 error '$' is not defined no-undef - 11126:96 error '$' is not defined no-undef - 11127:25 error '$' is not defined no-undef - 11128:25 error '$' is not defined no-undef - 11130:25 error '$' is not defined no-undef - 11130:75 error '$' is not defined no-undef - 11130:110 error '$' is not defined no-undef - 11131:25 error '$' is not defined no-undef - 11131:80 error '$' is not defined no-undef - 11131:116 error '$' is not defined no-undef - 11137:50 error '$' is not defined no-undef - 11140:13 error '$' is not defined no-undef - 11141:13 error '$' is not defined no-undef - 11147:16 error '$' is not defined no-undef - 11147:63 error '$' is not defined no-undef - 11151:17 error '$' is not defined no-undef - 11155:13 error '$' is not defined no-undef - 11156:13 error '$' is not defined no-undef - 11157:13 error '$' is not defined no-undef - 11160:13 error '$' is not defined no-undef - 11164:17 error '$' is not defined no-undef - 11168:13 error '$' is not defined no-undef - 11169:13 error '$' is not defined no-undef - 11170:13 error '$' is not defined no-undef - 11172:13 error '$' is not defined no-undef - 11178:1 error '$' is not defined no-undef - 11180:5 error '$' is not defined no-undef - 11181:27 error '$' is not defined no-undef - 11206:12 error '$' is not defined no-undef - 11207:37 error '$' is not defined no-undef - 11208:31 error '$' is not defined no-undef - 11210:13 error '_' is not defined no-undef - 11212:46 error '$' is not defined no-undef - 11212:75 error '$' is not defined no-undef - 11215:17 error '$' is not defined no-undef - 11215:46 error '$' is not defined no-undef - 11219:17 error '$' is not defined no-undef - 11219:46 error '$' is not defined no-undef - 11220:44 error '$' is not defined no-undef - 11220:73 error '$' is not defined no-undef - 11224:17 error '$' is not defined no-undef - 11224:46 error '$' is not defined no-undef - 11226:16 error '$' is not defined no-undef - 11231:16 error '$' is not defined no-undef - 11231:57 error '$' is not defined no-undef - 11233:17 error '$' is not defined no-undef - 11233:49 error '$' is not defined no-undef - 11234:17 error '$' is not defined no-undef - 11234:49 error '$' is not defined no-undef - 11235:17 error '$' is not defined no-undef - 11235:49 error '$' is not defined no-undef - 11237:17 error '$' is not defined no-undef - 11237:49 error '$' is not defined no-undef - 11242:17 error '$' is not defined no-undef - 11244:21 error '_' is not defined no-undef - 11245:51 error '$' is not defined no-undef - 11248:25 error '$' is not defined no-undef - 11268:13 error '$' is not defined no-undef - 11274:13 error '$' is not defined no-undef - 11277:13 error '$' is not defined no-undef - 11282:36 error '$' is not defined no-undef - 11283:37 error '$' is not defined no-undef - 11286:17 error '$' is not defined no-undef - 11298:17 error '$' is not defined no-undef - 11303:17 error '$' is not defined no-undef - 11311:12 error '_' is not defined no-undef - 11313:16 error 'isMobile' is not defined no-undef - 11313:34 error 'isMobile' is not defined no-undef - 11315:17 error '$' is not defined no-undef - 11318:13 error '$' is not defined no-undef - 11319:44 error '$' is not defined no-undef - 11328:9 error '$' is not defined no-undef - 11331:9 error '$' is not defined no-undef - 11334:40 error '$' is not defined no-undef - 11335:41 error '$' is not defined no-undef - 11340:9 error '$' is not defined no-undef - 11343:9 error '$' is not defined no-undef - 11354:9 error '$' is not defined no-undef - 11355:20 error '$' is not defined no-undef - 11356:21 error '$' is not defined no-undef - 11357:22 error '$' is not defined no-undef - 11358:23 error '$' is not defined no-undef - 11363:9 error '$' is not defined no-undef - 11365:9 error '$' is not defined no-undef - 11371:5 error '$' is not defined no-undef - 11372:28 error '$' is not defined no-undef - 11373:29 error '$' is not defined no-undef - 11374:26 error '$' is not defined no-undef - 11375:27 error '$' is not defined no-undef - 11382:22 error '$' is not defined no-undef - 11383:5 error '$' is not defined no-undef - 11383:93 error 'i18n' is not defined no-undef - 11383:150 error 'i18n' is not defined no-undef - 11388:22 error '$' is not defined no-undef - 11390:9 error '$' is not defined no-undef - 11391:9 error '$' is not defined no-undef - 11391:107 error 'i18n' is not defined no-undef - 11391:164 error 'i18n' is not defined no-undef - 11391:200 error 'i18n' is not defined no-undef - 11393:9 error '$' is not defined no-undef - 11401:5 error '$' is not defined no-undef - 11423:5 error '$' is not defined no-undef - 11432:86 error 'i18n' is not defined no-undef - 11433:90 error 'i18n' is not defined no-undef - 11434:86 error 'i18n' is not defined no-undef - 11435:86 error 'i18n' is not defined no-undef - 11444:9 error '$' is not defined no-undef - 11445:9 error '$' is not defined no-undef - 11446:9 error '$' is not defined no-undef - 11447:9 error '$' is not defined no-undef - 11448:9 error '$' is not defined no-undef - 11451:9 error '$' is not defined no-undef - 11452:9 error '$' is not defined no-undef - 11453:9 error '$' is not defined no-undef - 11454:9 error '$' is not defined no-undef - 11455:9 error '$' is not defined no-undef - 11458:9 error '$' is not defined no-undef - 11459:9 error '$' is not defined no-undef - 11460:9 error '$' is not defined no-undef - 11461:9 error '$' is not defined no-undef - 11462:9 error '$' is not defined no-undef - 11466:1 error '$' is not defined no-undef - 11466:34 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 11467:5 error '$' is not defined no-undef - 11468:12 error '$' is not defined no-undef - 11470:19 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 11471:13 error '$' is not defined no-undef - 11473:22 error '$' is not defined no-undef - 11474:23 error '$' is not defined no-undef - 11475:24 error '$' is not defined no-undef - 11476:25 error '$' is not defined no-undef - 11478:13 error '$' is not defined no-undef - 11481:17 error '$' is not defined no-undef - 11487:17 error '$' is not defined no-undef - 11496:8 error '$' is not defined no-undef - 11500:8 error '$' is not defined no-undef - 11501:9 error '$' is not defined no-undef - 11505:9 error '$' is not defined no-undef - 11509:1 error '$' is not defined no-undef - 11511:29 error '$' is not defined no-undef - 11512:24 error '$' is not defined no-undef - 11515:9 error '$' is not defined no-undef - 11517:9 error '$' is not defined no-undef - 11519:9 error '$' is not defined no-undef - 11521:12 error '$' is not defined no-undef - 11522:13 error '$' is not defined no-undef - 11525:12 error '$' is not defined no-undef - 11526:13 error '$' is not defined no-undef - 11526:45 error '$' is not defined no-undef - 11529:12 error '$' is not defined no-undef - 11530:13 error '$' is not defined no-undef - 11530:44 error '$' is not defined no-undef - 11534:9 error '$' is not defined no-undef - 11536:9 error '$' is not defined no-undef - 11540:12 error '$' is not defined no-undef - 11540:59 error '$' is not defined no-undef - 11541:13 error '$' is not defined no-undef - 11546:18 error '$' is not defined no-undef - 11547:13 error '$' is not defined no-undef - 11562:40 error '$' is not defined no-undef - 11564:9 error '$' is not defined no-undef - 11566:43 error '$' is not defined no-undef - 11568:9 error '$' is not defined no-undef - 11570:35 error '$' is not defined no-undef - 11571:30 error '$' is not defined no-undef - 11571:68 error '$' is not defined no-undef - 11573:53 error '$' is not defined no-undef - 11573:104 error '$' is not defined no-undef - 11574:30 error '$' is not defined no-undef - 11576:9 error '$' is not defined no-undef - 11576:47 error '$' is not defined no-undef - 11578:9 error '$' is not defined no-undef - 11579:9 error '$' is not defined no-undef - 11586:1 error '$' is not defined no-undef - 11586:34 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 11587:5 error '$' is not defined no-undef - 11588:12 error '$' is not defined no-undef - 11590:38 error '$' is not defined no-undef - 11590:76 error '$' is not defined no-undef - 11592:13 error '$' is not defined no-undef - 11593:36 error '$' is not defined no-undef - 11594:37 error '$' is not defined no-undef - 11595:34 error '$' is not defined no-undef - 11596:35 error '$' is not defined no-undef - 11600:13 error '$' is not defined no-undef - 11611:17 error '$' is not defined no-undef - 11625:1 error '$' is not defined no-undef - 11630:22 error '$' is not defined no-undef - 11642:5 error '$' is not defined no-undef - 11644:5 error '$' is not defined no-undef - 11647:5 error '$' is not defined no-undef - 11650:5 error '$' is not defined no-undef - 11653:8 error '$' is not defined no-undef - 11655:14 error '$' is not defined no-undef - 11657:14 error '$' is not defined no-undef - 11659:14 error '$' is not defined no-undef - 11664:23 error '$' is not defined no-undef - 11665:24 error '$' is not defined no-undef - 11669:5 error '$' is not defined no-undef - 11688:33 error '$' is not defined no-undef - 11701:5 error '$' is not defined no-undef - 11709:9 error '$' is not defined no-undef - 11710:9 error '$' is not defined no-undef - 11711:9 error '$' is not defined no-undef - 11713:9 error '$' is not defined no-undef - 11714:9 error '$' is not defined no-undef - 11715:9 error '$' is not defined no-undef - 11717:9 error '$' is not defined no-undef - 11718:9 error '$' is not defined no-undef - 11719:9 error '$' is not defined no-undef - 11721:9 error '$' is not defined no-undef - 11722:9 error '$' is not defined no-undef - 11723:9 error '$' is not defined no-undef - 11732:8 error '$' is not defined no-undef - 11732:50 error '$' is not defined no-undef - 11732:99 error '$' is not defined no-undef - 11735:13 error '$' is not defined no-undef - 11737:13 error '$' is not defined no-undef - 11745:15 error 'puter' is not defined no-undef - 11794:24 error Promise executor functions should not be async no-async-promise-executor - 11804:31 error 'html_encode' is not defined no-undef - 11805:87 error 'i18n' is not defined no-undef - 11821:55 error 'i18n' is not defined no-undef - 11824:62 error 'i18n' is not defined no-undef - 11849:17 error '$' is not defined no-undef - 11864:9 error '$' is not defined no-undef - 11866:9 error '$' is not defined no-undef - 11870:13 error '$' is not defined no-undef - 11871:13 error '$' is not defined no-undef - 11880:13 error '$' is not defined no-undef - 11883:17 error '$' is not defined no-undef - 11901:29 error '$' is not defined no-undef - 11905:29 error '$' is not defined no-undef - 11906:29 error '$' is not defined no-undef - 11907:29 error '$' is not defined no-undef - 11908:29 error '$' is not defined no-undef - 11909:29 error '$' is not defined no-undef - 11910:29 error '$' is not defined no-undef - 11914:25 error '$' is not defined no-undef - 11914:58 error 'html_encode' is not defined no-undef - 11915:25 error '$' is not defined no-undef - 11916:25 error '$' is not defined no-undef - 11917:25 error '$' is not defined no-undef - 11918:25 error '$' is not defined no-undef - 11919:25 error '$' is not defined no-undef - 11929:9 error '$' is not defined no-undef - 11929:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 11930:13 error '$' is not defined no-undef - 11943:42 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 11950:21 error '$' is not defined no-undef - 11958:9 error '$' is not defined no-undef - 11958:71 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 11960:13 error '$' is not defined no-undef - 12002:17 error '$' is not defined no-undef - 12003:17 error '$' is not defined no-undef - 12046:1 error 'def' is not defined no-undef - 12087:128 error 'i18n' is not defined no-undef - 12088:133 error 'i18n' is not defined no-undef - 12093:57 error 'i18n' is not defined no-undef - 12094:57 error 'i18n' is not defined no-undef - 12095:89 error 'i18n' is not defined no-undef - 12096:89 error 'i18n' is not defined no-undef - 12097:57 error 'i18n' is not defined no-undef - 12099:57 error 'i18n' is not defined no-undef - 12100:57 error 'i18n' is not defined no-undef - 12101:57 error 'i18n' is not defined no-undef - 12102:57 error 'i18n' is not defined no-undef - 12103:57 error 'i18n' is not defined no-undef - 12104:57 error 'i18n' is not defined no-undef - 12106:57 error 'i18n' is not defined no-undef - 12136:28 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 12154:5 error '$' is not defined no-undef - 12154:61 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 12156:9 error '$' is not defined no-undef - 12158:9 error '$' is not defined no-undef - 12160:9 error '$' is not defined no-undef - 12162:9 error '$' is not defined no-undef - 12162:64 error '$' is not defined no-undef - 12167:5 error 'puter' is not defined no-undef - 12176:17 error '$' is not defined no-undef - 12179:13 error '$' is not defined no-undef - 12181:13 error '$' is not defined no-undef - 12187:25 error '$' is not defined no-undef - 12188:25 error '$' is not defined no-undef - 12191:25 error '$' is not defined no-undef - 12192:25 error '$' is not defined no-undef - 12194:24 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 12201:17 error '$' is not defined no-undef - 12204:13 error '$' is not defined no-undef - 12206:13 error '$' is not defined no-undef - 12208:13 error '$' is not defined no-undef - 12210:13 error '$' is not defined no-undef - 12210:94 error 'timeago' is not defined no-undef - 12212:13 error '$' is not defined no-undef - 12212:92 error 'timeago' is not defined no-undef - 12216:21 error '$' is not defined no-undef - 12216:122 error 'html_encode' is not defined no-undef - 12216:222 error 'html_encode' is not defined no-undef - 12216:257 error 'html_encode' is not defined no-undef - 12216:347 error 'html_encode' is not defined no-undef - 12220:17 error '$' is not defined no-undef - 12225:21 error '$' is not defined no-undef - 12226:124 error 'timeago' is not defined no-undef - 12230:17 error '$' is not defined no-undef - 12233:13 error '$' is not defined no-undef - 12234:17 error 'puter' is not defined no-undef - 12235:21 error '$' is not defined no-undef - 12237:25 error '$' is not defined no-undef - 12237:82 error '$' is not defined no-undef - 12238:28 error '$' is not defined no-undef - 12239:29 error '$' is not defined no-undef - 12241:29 error '$' is not defined no-undef - 12294:24 error Promise executor functions should not be async no-async-promise-executor - 12294:31 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 12299:87 error 'i18n' is not defined no-undef - 12303:32 error 'i18n' is not defined no-undef - 12305:135 error 'i18n' is not defined no-undef - 12330:17 error '$' is not defined no-undef - 12344:9 error '$' is not defined no-undef - 12351:9 error '$' is not defined no-undef - 12351:72 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 12353:25 error '$' is not defined no-undef - 12360:13 error '$' is not defined no-undef - 12375:21 error '$' is not defined no-undef - 12388:21 error '$' is not defined no-undef - 12388:54 error 'html_encode' is not defined no-undef - 12389:21 error '$' is not defined no-undef - 12434:19 error 'use' is not defined no-undef - 12436:61 error 'def' is not defined no-undef - 12483:9 error '$' is not defined no-undef - 12488:87 error 'i18n' is not defined no-undef - 12496:9 error '$' is not defined no-undef - 12501:35 error '$' is not defined no-undef - 12502:13 error '$' is not defined no-undef - 12508:17 error '$' is not defined no-undef - 12512:23 error '$' is not defined no-undef - 12560:24 error Promise executor functions should not be async no-async-promise-executor - 12568:54 error 'i18n' is not defined no-undef - 12575:79 error 'i18n' is not defined no-undef - 12580:66 error 'i18n' is not defined no-undef - 12588:104 error 'i18n' is not defined no-undef - 12590:112 error 'i18n' is not defined no-undef - 12598:66 error 'i18n' is not defined no-undef - 12604:9 error 'puter' is not defined no-undef - 12607:13 error '$' is not defined no-undef - 12607:56 error 'html_encode' is not defined no-undef - 12607:99 error 'html_encode' is not defined no-undef - 12607:145 error 'html_encode' is not defined no-undef - 12610:13 error '$' is not defined no-undef - 12638:17 error '$' is not defined no-undef - 12656:9 error '$' is not defined no-undef - 12656:73 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 12665:9 error '$' is not defined no-undef - 12665:62 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 12666:36 error '$' is not defined no-undef - 12667:30 error '$' is not defined no-undef - 12682:13 error '$' is not defined no-undef - 12688:13 error '$' is not defined no-undef - 12708:45 error 'i18n' is not defined no-undef - 12711:45 error 'i18n' is not defined no-undef - 12748:45 error '$' is not defined no-undef - 12753:68 error 'i18n' is not defined no-undef - 12759:44 error 'i18n' is not defined no-undef - 12777:45 error 'i18n' is not defined no-undef - 12780:45 error 'i18n' is not defined no-undef - 12815:45 error '$' is not defined no-undef - 12820:68 error 'i18n' is not defined no-undef - 12825:44 error 'i18n' is not defined no-undef - 12864:21 error '$' is not defined no-undef - 12867:43 error '$' is not defined no-undef - 12872:44 error 'html_encode' is not defined no-undef - 12888:75 error 'html_encode' is not defined no-undef - 12891:21 error '$' is not defined no-undef - 12896:9 error '$' is not defined no-undef - 12902:9 error '$' is not defined no-undef - 12902:79 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 12904:13 error '$' is not defined no-undef - 12917:9 error '$' is not defined no-undef - 12917:89 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 12920:13 error '$' is not defined no-undef - 12921:13 error '$' is not defined no-undef - 12965:35 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 12989:28 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 13007:9 error '$' is not defined no-undef - 13012:28 error 'i18n' is not defined no-undef - 13015:5 error 'puter' is not defined no-undef - 13025:108 error 'html_encode' is not defined no-undef - 13028:79 error 'html_encode' is not defined no-undef - 13028:130 error 'html_encode' is not defined no-undef - 13029:50 error 'html_encode' is not defined no-undef - 13030:40 error 'html_encode' is not defined no-undef - 13033:89 error 'html_encode' is not defined no-undef - 13033:148 error 'html_encode' is not defined no-undef - 13033:200 error 'html_encode' is not defined no-undef - 13034:112 error 'html_encode' is not defined no-undef - 13034:154 error 'i18n' is not defined no-undef - 13037:85 error 'html_encode' is not defined no-undef - 13037:181 error 'i18n' is not defined no-undef - 13040:17 error '$' is not defined no-undef - 13044:17 error '$' is not defined no-undef - 13049:36 error 'i18n' is not defined no-undef - 13055:1 error '$' is not defined no-undef - 13058:15 error '$' is not defined no-undef - 13059:16 error '$' is not defined no-undef - 13061:14 error '$' is not defined no-undef - 13067:1 error '$' is not defined no-undef - 13080:34 error 'i18n' is not defined no-undef - 13083:40 error 'i18n' is not defined no-undef - 13088:40 error 'i18n' is not defined no-undef - 13096:21 error '$' is not defined no-undef - 13100:40 error '$' is not defined no-undef - 13113:29 error '$' is not defined no-undef - 13113:62 error '$' is not defined no-undef - 13122:1 error '$' is not defined no-undef - 13123:5 error 'puter' is not defined no-undef - 13125:9 error '$' is not defined no-undef - 13127:9 error '$' is not defined no-undef - 13130:13 error '$' is not defined no-undef - 13130:60 error '$' is not defined no-undef - 13131:13 error '$' is not defined no-undef - 13131:50 error '$' is not defined no-undef - 13133:13 error '$' is not defined no-undef - 13133:34 error '$' is not defined no-undef - 13134:13 error '$' is not defined no-undef - 13178:31 error 'html_encode' is not defined no-undef - 13179:51 error 'i18n' is not defined no-undef - 13179:95 error 'html_encode' is not defined no-undef - 13180:165 error 'html_encode' is not defined no-undef - 13181:133 error 'i18n' is not defined no-undef - 13189:61 error 'i18n' is not defined no-undef - 13190:255 error 'html_encode' is not defined no-undef - 13193:84 error 'html_encode' is not defined no-undef - 13195:97 error 'i18n' is not defined no-undef - 13217:13 error '$' is not defined no-undef - 13218:13 error '$' is not defined no-undef - 13232:5 error '$' is not defined no-undef - 13232:60 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 13236:25 error '$' is not defined no-undef - 13239:9 error '$' is not defined no-undef - 13241:9 error 'puter' is not defined no-undef - 13243:36 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 13245:17 error '$' is not defined no-undef - 13246:21 error '$' is not defined no-undef - 13247:21 error '$' is not defined no-undef - 13248:21 error '$' is not defined no-undef - 13249:21 error '$' is not defined no-undef - 13253:17 error '$' is not defined no-undef - 13255:21 error '$' is not defined no-undef - 13257:21 error '$' is not defined no-undef - 13257:60 error '$' is not defined no-undef - 13263:17 error '$' is not defined no-undef - 13269:17 error '$' is not defined no-undef - 13271:17 error '$' is not defined no-undef - 13275:5 error '$' is not defined no-undef - 13276:9 error '$' is not defined no-undef - 13280:1 error '$' is not defined no-undef - 13280:70 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 13321:24 error Promise executor functions should not be async no-async-promise-executor - 13343:13 error 'action_name' is assigned a value but never used @typescript-eslint/no-unused-vars - 13360:87 error 'html_encode' is not defined no-undef - 13360:163 error 'html_encode' is not defined no-undef - 13362:53 error 'html_encode' is not defined no-undef - 13364:131 error 'i18n' is not defined no-undef - 13365:136 error 'i18n' is not defined no-undef - 13393:32 error 'this_window' is defined but never used @typescript-eslint/no-unused-vars - 13407:9 error '$' is not defined no-undef - 13407:73 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 13408:13 error '$' is not defined no-undef - 13411:23 error 'res' is assigned a value but never used @typescript-eslint/no-unused-vars - 13431:9 error '$' is not defined no-undef - 13431:72 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 13432:13 error '$' is not defined no-undef - 13433:13 error '$' is not defined no-undef - 13480:24 error Promise executor functions should not be async no-async-promise-executor - 13487:35 error 'html_encode' is not defined no-undef - 13488:75 error 'i18n' is not defined no-undef - 13489:103 error 'i18n' is not defined no-undef - 13495:80 error 'i18n' is not defined no-undef - 13497:75 error 'i18n' is not defined no-undef - 13504:70 error 'i18n' is not defined no-undef - 13509:67 error 'i18n' is not defined no-undef - 13514:70 error 'i18n' is not defined no-undef - 13520:105 error 'i18n' is not defined no-undef - 13549:21 error '$' is not defined no-undef - 13551:21 error '$' is not defined no-undef - 13567:9 error '$' is not defined no-undef - 13567:63 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 13571:28 error '$' is not defined no-undef - 13574:25 error '$' is not defined no-undef - 13577:28 error '$' is not defined no-undef - 13580:13 error '$' is not defined no-undef - 13583:13 error '$' is not defined no-undef - 13584:13 error '$' is not defined no-undef - 13585:13 error '$' is not defined no-undef - 13588:13 error '$' is not defined no-undef - 13590:13 error '$' is not defined no-undef - 13619:21 error '$' is not defined no-undef - 13620:25 error '$' is not defined no-undef - 13623:21 error '$' is not defined no-undef - 13626:21 error '$' is not defined no-undef - 13626:65 error 'html_encode' is not defined no-undef - 13627:21 error '$' is not defined no-undef - 13629:21 error '$' is not defined no-undef - 13630:21 error '$' is not defined no-undef - 13635:9 error '$' is not defined no-undef - 13641:9 error '$' is not defined no-undef - 13642:13 error '$' is not defined no-undef - 13646:9 error '$' is not defined no-undef - 13650:1 error 'def' is not defined no-undef - 13693:31 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 13719:28 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 13740:5 error '$' is not defined no-undef - 13746:19 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 13777:48 error 'puter' is not defined no-undef - 13797:38 error 'html_encode' is not defined no-undef - 13798:37 error 'html_encode' is not defined no-undef - 13799:40 error 'html_encode' is not defined no-undef - 13803:22 error 'html_encode' is not defined no-undef - 13816:5 error '$' is not defined no-undef - 13816:61 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 13817:29 error '$' is not defined no-undef - 13818:34 error '$' is not defined no-undef - 13823:1 error '$' is not defined no-undef - 13823:58 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 13824:20 error '$' is not defined no-undef - 13825:19 error '$' is not defined no-undef - 13826:20 error '$' is not defined no-undef - 13826:62 error '$' is not defined no-undef - 13844:9 error '$' is not defined no-undef - 13851:32 error '$' is not defined no-undef - 13868:12 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 13891:28 error 'i18n' is not defined no-undef - 13897:28 error 'i18n' is not defined no-undef - 13923:5 error '$' is not defined no-undef - 13959:24 error Promise executor functions should not be async no-async-promise-executor - 13959:31 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 14003:39 error 'html_encode' is not defined no-undef - 14016:79 error 'i18n' is not defined no-undef - 14019:95 error 'html_encode' is not defined no-undef - 14022:60 error 'i18n' is not defined no-undef - 14023:60 error 'i18n' is not defined no-undef - 14027:142 error 'i18n' is not defined no-undef - 14035:113 error 'i18n' is not defined no-undef - 14041:20 error 'i18n' is not defined no-undef - 14056:17 error '$' is not defined no-undef - 14074:9 error 'puter' is not defined no-undef - 14078:21 error '$' is not defined no-undef - 14081:24 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 14082:21 error 'puter' is not defined no-undef - 14088:13 error 'perms' is assigned a value but never used @typescript-eslint/no-unused-vars - 14092:13 error 'puter' is not defined no-undef - 14104:103 error 'i18n' is not defined no-undef - 14115:41 error 'recipient' is defined but never used @typescript-eslint/no-unused-vars - 14125:99 error 'i18n' is not defined no-undef - 14127:99 error 'i18n' is not defined no-undef - 14142:17 error '$' is not defined no-undef - 14144:20 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 14149:9 error '$' is not defined no-undef - 14153:13 error '$' is not defined no-undef - 14156:32 error '$' is not defined no-undef - 14162:16 error 'is_email' is not defined no-undef - 14169:13 error '$' is not defined no-undef - 14170:43 error '$' is not defined no-undef - 14170:124 error '$' is not defined no-undef - 14177:17 error '$' is not defined no-undef - 14177:50 error 'i18n' is not defined no-undef - 14178:17 error '$' is not defined no-undef - 14184:17 error '$' is not defined no-undef - 14184:50 error 'i18n' is not defined no-undef - 14185:17 error '$' is not defined no-undef - 14189:17 error '$' is not defined no-undef - 14189:50 error 'i18n' is not defined no-undef - 14190:17 error '$' is not defined no-undef - 14195:13 error '$' is not defined no-undef - 14198:17 error 'share_result' is defined but never used @typescript-eslint/no-unused-vars - 14201:16 error '$' is not defined no-undef - 14204:13 error '$' is not defined no-undef - 14205:22 error 'puter' is not defined no-undef - 14209:50 error 'puter' is not defined no-undef - 14227:33 error '$' is not defined no-undef - 14228:33 error '$' is not defined no-undef - 14234:25 error '$' is not defined no-undef - 14243:87 error 'i18n' is not defined no-undef - 14253:25 error '$' is not defined no-undef - 14254:25 error '$' is not defined no-undef - 14257:25 error '$' is not defined no-undef - 14260:25 error '$' is not defined no-undef - 14265:29 error 'puter' is not defined no-undef - 14273:25 error '$' is not defined no-undef - 14274:25 error '$' is not defined no-undef - 14278:21 error '$' is not defined no-undef - 14285:17 error '$' is not defined no-undef - 14288:13 error '$' is not defined no-undef - 14293:9 error '$' is not defined no-undef - 14294:16 error '$' is not defined no-undef - 14295:17 error '$' is not defined no-undef - 14298:17 error '$' is not defined no-undef - 14305:1 error '$' is not defined no-undef - 14306:30 error '$' is not defined no-undef - 14307:22 error '$' is not defined no-undef - 14310:5 error '$' is not defined no-undef - 14312:11 error 'puter' is not defined no-undef - 14315:40 error 'puter' is not defined no-undef - 14322:14 error 'response' is defined but never used @typescript-eslint/no-unused-vars - 14372:24 error Promise executor functions should not be async no-async-promise-executor - 14385:55 error 'i18n' is not defined no-undef - 14392:70 error 'i18n' is not defined no-undef - 14393:76 error 'html_encode' is not defined no-undef - 14397:67 error 'i18n' is not defined no-undef - 14398:73 error 'html_encode' is not defined no-undef - 14402:70 error 'i18n' is not defined no-undef - 14409:53 error 'i18n' is not defined no-undef - 14411:105 error 'i18n' is not defined no-undef - 14417:61 error 'i18n' is not defined no-undef - 14444:17 error '$' is not defined no-undef - 14462:9 error '$' is not defined no-undef - 14462:78 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 14463:13 error '$' is not defined no-undef - 14476:9 error '$' is not defined no-undef - 14476:63 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 14478:28 error '$' is not defined no-undef - 14481:17 error '$' is not defined no-undef - 14481:61 error 'i18n' is not defined no-undef - 14482:17 error '$' is not defined no-undef - 14487:25 error '$' is not defined no-undef - 14491:17 error '$' is not defined no-undef - 14491:61 error 'i18n' is not defined no-undef - 14492:17 error '$' is not defined no-undef - 14497:17 error '$' is not defined no-undef - 14497:61 error 'i18n' is not defined no-undef - 14498:17 error '$' is not defined no-undef - 14503:28 error '$' is not defined no-undef - 14507:17 error '$' is not defined no-undef - 14507:61 error 'i18n' is not defined no-undef - 14508:17 error '$' is not defined no-undef - 14514:17 error '$' is not defined no-undef - 14514:61 error 'i18n' is not defined no-undef - 14515:17 error '$' is not defined no-undef - 14520:31 error '$' is not defined no-undef - 14523:13 error '$' is not defined no-undef - 14529:13 error '$' is not defined no-undef - 14552:25 error '$' is not defined no-undef - 14560:21 error '$' is not defined no-undef - 14561:21 error '$' is not defined no-undef - 14563:21 error '$' is not defined no-undef - 14568:9 error '$' is not defined no-undef - 14575:9 error '$' is not defined no-undef - 14647:7 error 'PROCESS_IPC_NA' is assigned a value but never used @typescript-eslint/no-unused-vars - 14691:24 error 'other_process' is defined but never used @typescript-eslint/no-unused-vars - 14739:13 error '$' is not defined no-undef - 14745:26 error 'context' is defined but never used @typescript-eslint/no-unused-vars - 14792:13 error '$' is not defined no-undef - 14806:19 error 'use' is not defined no-undef - 14807:19 error 'use' is not defined no-undef - 14852:24 error 'puter' is not defined no-undef - 14883:1 error '$' is not defined no-undef - 14920:1 error '$' is not defined no-undef - 15007:8 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 15017:8 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 15052:8 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 15095:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 15127:1 error '$' is not defined no-undef - 15134:5 error '$' is not defined no-undef - 15137:12 error '$' is not defined no-undef - 15139:21 error '$' is not defined no-undef - 15140:20 error '$' is not defined no-undef - 15155:45 error '$' is not defined no-undef - 15156:45 error '$' is not defined no-undef - 15168:9 error '$' is not defined no-undef - 15302:50 error 'i18n' is not defined no-undef - 15322:68 error 'html_encode' is not defined no-undef - 15368:20 error 'i18n' is not defined no-undef - 15371:17 error '$' is not defined no-undef - 15379:16 error 'i18n' is not defined no-undef - 15382:13 error '$' is not defined no-undef - 15397:13 error '$' is not defined no-undef - 15627:41 error '$' is not defined no-undef - 15638:30 error 'html_encode' is not defined no-undef - 15639:34 error 'html_encode' is not defined no-undef - 15644:53 error 'html_encode' is not defined no-undef - 15647:39 error 'html_encode' is not defined no-undef - 15648:44 error 'html_encode' is not defined no-undef - 15650:35 error 'html_encode' is not defined no-undef - 15652:32 error 'html_encode' is not defined no-undef - 15654:47 error 'html_encode' is not defined no-undef - 15655:30 error 'html_encode' is not defined no-undef - 15662:58 error 'timeago' is not defined no-undef - 15673:46 error 'html_encode' is not defined no-undef - 15679:31 error 'html_encode' is not defined no-undef - 15686:32 error 'html_encode' is not defined no-undef - 15692:32 error 'html_encode' is not defined no-undef - 15700:51 error 'html_encode' is not defined no-undef - 15706:32 error 'html_encode' is not defined no-undef - 15709:43 error 'html_encode' is not defined no-undef - 15715:32 error 'html_encode' is not defined no-undef - 15723:74 error 'html_encode' is not defined no-undef - 15723:104 error 'html_encode' is not defined no-undef - 15725:170 error 'html_encode' is not defined no-undef - 15776:21 error '$' is not defined no-undef - 15919:25 error 'i18n' is not defined no-undef - 15921:25 error 'i18n' is not defined no-undef - 15923:25 error 'i18n' is not defined no-undef - 15925:25 error 'i18n' is not defined no-undef - 15927:25 error 'i18n' is not defined no-undef - 15929:25 error 'i18n' is not defined no-undef - 16054:21 error 'jQuery' is not defined no-undef - 16057:24 error 'jQuery' is not defined no-undef - 16096:35 error 'jQuery' is not defined no-undef - 16096:56 error 'jQuery' is not defined no-undef - 16105:21 error 'jQuery' is not defined no-undef - 16120:53 error 'jQuery' is not defined no-undef - 16120:74 error 'jQuery' is not defined no-undef - 16129:27 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 16139:9 error 'taphold' is assigned a value but never used @typescript-eslint/no-unused-vars - 16147:28 error 'namespaces' is defined but never used @typescript-eslint/no-unused-vars - 16154:4 error 'jQuery' is not defined no-undef - 16159:24 error 'puter' is not defined no-undef - 16160:12 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 16179:9 error '$' is not defined no-undef - 16179:31 error 'html_encode' is not defined no-undef - 16186:5 error 'puter' is not defined no-undef - 16191:47 error 'html_encode' is not defined no-undef - 16196:17 error '$' is not defined no-undef - 16205:13 error 'puter' is not defined no-undef - 16222:5 error 'puter' is not defined no-undef - 16257:9 error '$' is not defined no-undef - 16258:9 error '$' is not defined no-undef - 16268:9 error 'puter' is not defined no-undef - 16301:5 error '$' is not defined no-undef - 16337:21 error '$' is not defined no-undef - 16345:28 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 16380:28 error '$' is not defined no-undef - 16408:5 error 'puter' is not defined no-undef - 16412:13 error 'puter' is not defined no-undef - 16423:36 error 'i18n' is not defined no-undef - 16447:25 error 'saved' is assigned a value but never used @typescript-eslint/no-unused-vars - 16452:25 error 'login_result' is assigned a value but never used @typescript-eslint/no-unused-vars - 16471:9 error '$' is not defined no-undef - 16479:5 error '$' is not defined no-undef - 16512:5 error '$' is not defined no-undef - 16536:28 error 'i18n' is not defined no-undef - 16541:15 error 'puter' is not defined no-undef - 16546:40 error '$' is not defined no-undef - 16546:85 error 'html_encode' is not defined no-undef - 16546:110 error 'html_encode' is not defined no-undef - 16574:12 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 16588:9 error 'puter' is not defined no-undef - 16591:38 error '$' is not defined no-undef - 16591:83 error 'html_encode' is not defined no-undef - 16591:108 error 'html_encode' is not defined no-undef - 16610:48 error 'i18n' is not defined no-undef - 16617:29 error 'puter' is not defined no-undef - 16625:40 error 'puter' is not defined no-undef - 16671:15 error 'puter' is not defined no-undef - 16685:5 error '$' is not defined no-undef - 16686:56 error '$' is not defined no-undef - 16709:33 error 'i18n' is not defined no-undef - 16721:38 error 'puter' is not defined no-undef - 16731:25 error '$' is not defined no-undef - 16742:49 error 'html_encode' is not defined no-undef - 16744:41 error 'i18n' is not defined no-undef - 16745:78 error 'i18n' is not defined no-undef - 16746:78 error 'i18n' is not defined no-undef - 16746:119 error 'i18n' is not defined no-undef - 16818:29 error '$' is not defined no-undef - 16821:33 error 'i18n' is not defined no-undef - 16830:38 error 'puter' is not defined no-undef - 16840:25 error '$' is not defined no-undef - 16851:49 error 'html_encode' is not defined no-undef - 16853:42 error 'i18n' is not defined no-undef - 16854:70 error 'i18n' is not defined no-undef - 16855:70 error 'i18n' is not defined no-undef - 16855:111 error 'i18n' is not defined no-undef - 16912:8 error '$' is not defined no-undef - 16916:5 error '$' is not defined no-undef - 16916:26 error '$' is not defined no-undef - 16918:9 error '$' is not defined no-undef - 16918:24 error '$' is not defined no-undef - 16921:9 error '$' is not defined no-undef - 16921:34 error '$' is not defined no-undef - 16925:15 error 'puter' is not defined no-undef - 16926:20 error '$' is not defined no-undef - 16931:9 error '$' is not defined no-undef - 16931:30 error '$' is not defined no-undef - 16933:34 error '$' is not defined no-undef - 16933:55 error '$' is not defined no-undef - 16935:13 error '$' is not defined no-undef - 16935:34 error '$' is not defined no-undef - 16937:13 error '$' is not defined no-undef - 16937:45 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 16942:13 error '$' is not defined no-undef - 16942:47 error 'html_encode' is not defined no-undef - 16942:59 error '$' is not defined no-undef - 16950:49 error '$' is not defined no-undef - 16954:27 error '$' is not defined no-undef - 16954:49 error 'html_encode' is not defined no-undef - 17009:46 error 'puter' is not defined no-undef - 17017:17 error 'saveAs' is not defined no-undef - 17039:12 error '$' is not defined no-undef - 17081:12 error '$' is not defined no-undef - 17085:40 error '$' is not defined no-undef - 17086:67 error 'html_encode' is not defined no-undef - 17086:79 error '$' is not defined no-undef - 17102:47 error '$' is not defined no-undef - 17105:32 error '$' is not defined no-undef - 17114:28 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 17134:32 error '$' is not defined no-undef - 17136:40 error '$' is not defined no-undef - 17137:40 error '$' is not defined no-undef - 17148:21 error '$' is not defined no-undef - 17149:21 error '$' is not defined no-undef - 17149:43 error 'html_encode' is not defined no-undef - 17149:111 error 'html_encode' is not defined no-undef - 17150:21 error '$' is not defined no-undef - 17150:45 error 'html_encode' is not defined no-undef - 17174:37 error 'i18n' is not defined no-undef - 17177:34 error 'puter' is not defined no-undef - 17178:29 error '$' is not defined no-undef - 17197:17 error '$' is not defined no-undef - 17197:51 error 'html_encode' is not defined no-undef - 17197:63 error '$' is not defined no-undef - 17200:17 error '$' is not defined no-undef - 17200:38 error '$' is not defined no-undef - 17202:42 error '$' is not defined no-undef - 17202:63 error '$' is not defined no-undef - 17204:21 error '$' is not defined no-undef - 17206:21 error '$' is not defined no-undef - 17214:21 error '$' is not defined no-undef - 17214:45 error 'html_encode' is not defined no-undef - 17214:57 error '$' is not defined no-undef - 17216:21 error '$' is not defined no-undef - 17216:46 error 'html_encode' is not defined no-undef - 17216:58 error '$' is not defined no-undef - 17222:21 error '$' is not defined no-undef - 17222:46 error 'html_encode' is not defined no-undef - 17222:58 error '$' is not defined no-undef - 17222:114 error 'html_encode' is not defined no-undef - 17222:126 error '$' is not defined no-undef - 17223:57 error '$' is not defined no-undef - 17223:91 error '$' is not defined no-undef - 17229:24 error '$' is not defined no-undef - 17235:25 error '$' is not defined no-undef - 17235:62 error '$' is not defined no-undef - 17237:25 error '$' is not defined no-undef - 17237:46 error '$' is not defined no-undef - 17243:21 error '$' is not defined no-undef - 17251:31 error '$' is not defined no-undef - 17251:63 error 'html_encode' is not defined no-undef - 17257:63 error '$' is not defined no-undef - 17267:34 error '$' is not defined no-undef - 17272:72 error '$' is not defined no-undef - 17278:42 error '$' is not defined no-undef - 17278:74 error 'html_encode' is not defined no-undef - 17279:53 error '$' is not defined no-undef - 17279:75 error 'html_encode' is not defined no-undef - 17301:17 error '$' is not defined no-undef - 17301:49 error 'html_encode' is not defined no-undef - 17302:45 error '$' is not defined no-undef - 17302:75 error '$' is not defined no-undef - 17312:45 error 'html_encode' is not defined no-undef - 17314:38 error 'i18n' is not defined no-undef - 17315:66 error 'i18n' is not defined no-undef - 17316:66 error 'i18n' is not defined no-undef - 17316:107 error 'i18n' is not defined no-undef - 17334:21 error '$' is not defined no-undef - 17335:73 error 'html_encode' is not defined no-undef - 17335:85 error '$' is not defined no-undef - 17345:33 error 'puter' is not defined no-undef - 17350:17 error '$' is not defined no-undef - 17351:17 error '$' is not defined no-undef - 17351:39 error 'html_encode' is not defined no-undef - 17352:17 error '$' is not defined no-undef - 17352:41 error 'html_encode' is not defined no-undef - 17429:12 error 'puter' is not defined no-undef - 17445:5 error '$' is not defined no-undef - 17446:5 error '$' is not defined no-undef - 17447:5 error '$' is not defined no-undef - 17449:42 error '$' is not defined no-undef - 17450:5 error '$' is not defined no-undef - 17451:5 error '$' is not defined no-undef - 17451:58 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 17452:12 error '$' is not defined no-undef - 17453:27 error '$' is not defined no-undef - 17461:17 error '$' is not defined no-undef - 17479:5 error 'puter' is not defined no-undef - 17491:28 error 'i18n' is not defined no-undef - 17548:51 error 'i18n' is not defined no-undef - 17553:35 error 'operation_id' is defined but never used @typescript-eslint/no-unused-vars - 17563:18 error 'i18n' is not defined no-undef - 17566:24 error 'i18n' is not defined no-undef - 17571:24 error 'i18n' is not defined no-undef - 17585:28 error 'i18n' is not defined no-undef - 17588:11 error 'puter' is not defined no-undef - 17592:34 error 'resp' is defined but never used @typescript-eslint/no-unused-vars - 17598:13 error '$' is not defined no-undef - 17599:13 error '$' is not defined no-undef - 17599:35 error 'html_encode' is not defined no-undef - 17599:103 error 'html_encode' is not defined no-undef - 17600:13 error '$' is not defined no-undef - 17603:13 error '$' is not defined no-undef - 17605:55 error '$' is not defined no-undef - 17612:32 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 17728:11 error 'totalLength' is assigned a value but never used @typescript-eslint/no-unused-vars - 17764:20 error 'i18n' is not defined no-undef - 17773:29 error 'i18n' is not defined no-undef - 17783:26 error '$' is not defined no-undef - 17786:12 error '$' is not defined no-undef - 17787:33 error 'i18n' is not defined no-undef - 17810:41 error 'i18n' is not defined no-undef - 17811:41 error 'puter' is not defined no-undef - 17827:33 error 'i18n' is not defined no-undef - 17827:78 error '$' is not defined no-undef - 17828:33 error 'puter' is not defined no-undef - 17841:48 error '$' is not defined no-undef - 17845:25 error 'i18n' is not defined no-undef - 17847:19 error 'fflate' is not defined no-undef - 17876:37 error 'i18n' is not defined no-undef - 17879:23 error 'puter' is not defined no-undef - 17896:27 error 'puter' is not defined no-undef - 17938:20 error 'i18n' is not defined no-undef - 17947:29 error 'i18n' is not defined no-undef - 17953:25 error 'i18n' is not defined no-undef - 17954:45 error 'puter' is not defined no-undef - 17957:25 error 'i18n' is not defined no-undef - 17958:19 error 'fflate' is not defined no-undef - 17962:40 error 'e' is not defined no-undef - 17969:35 error 'puter' is not defined no-undef - 17975:41 error 'i18n' is not defined no-undef - 17983:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 17983:40 error 'puter' is not defined no-undef - 17998:45 error 'items' is defined but never used @typescript-eslint/no-unused-vars - 18013:5 error 'puter' is not defined no-undef - 18038:13 error '$' is not defined no-undef - 18038:34 error '$' is not defined no-undef - 18038:83 error 'html_encode' is not defined no-undef - 18039:13 error '$' is not defined no-undef - 18042:13 error '$' is not defined no-undef - 18046:13 error '$' is not defined no-undef - 18050:13 error '$' is not defined no-undef - 18050:42 error 'html_encode' is not defined no-undef - 18051:13 error '$' is not defined no-undef - 18051:34 error '$' is not defined no-undef - 18051:85 error 'html_encode' is not defined no-undef - 18052:13 error '$' is not defined no-undef - 18052:59 error 'html_encode' is not defined no-undef - 18055:13 error '$' is not defined no-undef - 18055:34 error '$' is not defined no-undef - 18055:81 error 'html_encode' is not defined no-undef - 18056:13 error '$' is not defined no-undef - 18056:55 error 'html_encode' is not defined no-undef - 18059:13 error '$' is not defined no-undef - 18059:34 error '$' is not defined no-undef - 18059:89 error 'html_encode' is not defined no-undef - 18060:13 error '$' is not defined no-undef - 18060:34 error '$' is not defined no-undef - 18060:92 error 'html_encode' is not defined no-undef - 18065:13 error '$' is not defined no-undef - 18066:13 error '$' is not defined no-undef - 18066:34 error '$' is not defined no-undef - 18067:13 error '$' is not defined no-undef - 18070:13 error '$' is not defined no-undef - 18070:30 error 'html_encode' is not defined no-undef - 18071:17 error '$' is not defined no-undef - 18072:20 error '$' is not defined no-undef - 18073:21 error '$' is not defined no-undef - 18077:13 error '$' is not defined no-undef - 18077:31 error 'html_encode' is not defined no-undef - 18078:37 error '_' is not defined no-undef - 18078:47 error '$' is not defined no-undef - 18079:17 error '$' is not defined no-undef - 18083:16 error '$' is not defined no-undef - 18088:13 error '$' is not defined no-undef - 18091:13 error '$' is not defined no-undef - 18096:13 error '$' is not defined no-undef - 18099:13 error '$' is not defined no-undef - 18099:34 error '$' is not defined no-undef - 18100:41 error '$' is not defined no-undef - 18100:101 error '$' is not defined no-undef - 18105:13 error '$' is not defined no-undef - 18106:13 error '$' is not defined no-undef - 18109:13 error '$' is not defined no-undef - 18110:13 error '$' is not defined no-undef - 18110:40 error 'html_encode' is not defined no-undef - 18110:52 error '$' is not defined no-undef - 18128:15 error 'puter' is not defined no-undef - 18191:24 error '$' is not defined no-undef - 18191:77 error '$' is not defined no-undef - 18197:5 error 'puter' is not defined no-undef - 18202:35 error 'puter' is not defined no-undef - 18204:29 error 'puter' is not defined no-undef - 18209:5 error '$' is not defined no-undef - 18210:25 error '$' is not defined no-undef - 18211:9 error '$' is not defined no-undef - 18212:9 error '$' is not defined no-undef - 18213:9 error '$' is not defined no-undef - 18221:5 error '$' is not defined no-undef - 18222:56 error '$' is not defined no-undef - 18223:25 error '$' is not defined no-undef - 18225:13 error '$' is not defined no-undef - 18226:13 error '$' is not defined no-undef - 18227:13 error '$' is not defined no-undef - 18233:5 error 'puter' is not defined no-undef - 18238:5 error 'puter' is not defined no-undef - 18245:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 18245:53 error '$' is not defined no-undef - 18245:74 error '$' is not defined no-undef - 18247:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 18247:28 error '$' is not defined no-undef - 18248:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 18248:28 error '$' is not defined no-undef - 18259:5 error '$' is not defined no-undef - 18264:12 error '$' is not defined no-undef - 18269:12 error '$' is not defined no-undef - 18296:20 error '$' is not defined no-undef - 18306:22 error '$' is not defined no-undef - 18328:13 error 'set_menu_item_prop' is not defined no-undef - 18350:9 error 'userAgent' is assigned a value but never used @typescript-eslint/no-unused-vars - 18365:5 error 'puter' is not defined no-undef - 18376:13 error 'puter' is not defined no-undef - 18384:13 error 'puter' is not defined no-undef - 18404:26 error 'puter' is not defined no-undef - 18406:38 error 'puter' is not defined no-undef - 18407:34 error 'blob2str' is not defined no-undef - 18414:12 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 18636:19 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 18665:25 error '$' is not defined no-undef - 18665:47 error 'html_encode' is not defined no-undef - 18668:35 error 'puter' is not defined no-undef - 18860:26 error 'puter' is not defined no-undef - 18901:32 error 'puter' is not defined no-undef - 18932:21 error 'i18n' is not defined no-undef - 18947:33 error 'puter' is not defined no-undef - 19024:63 error 'privacy_aware_path' is not defined no-undef - 19036:63 error 'privacy_aware_path' is not defined no-undef - 19170:13 error '$' is not defined no-undef - 19179:41 error '_' is not defined no-undef - 19185:13 error '$' is not defined no-undef - 19208:13 error '$' is not defined no-undef - 19215:16 error '$' is not defined no-undef - 19216:17 error '$' is not defined no-undef - 19223:5 error '$' is not defined no-undef - 19277:19 error 'i18n' is not defined no-undef - 19278:32 error 'html_encode' is not defined no-undef - 19287:19 error 'i18n' is not defined no-undef - 19288:32 error 'html_encode' is not defined no-undef - 19295:19 error 'i18n' is not defined no-undef - 19296:32 error 'html_encode' is not defined no-undef - 19303:19 error 'i18n' is not defined no-undef - 19304:32 error 'html_encode' is not defined no-undef - 19326:32 error 'html_encode' is not defined no-undef - 19329:36 error 'html_encode' is not defined no-undef - 19331:43 error 'puter' is not defined no-undef - 19350:15 error 'i18n' is not defined no-undef - 19400:31 error '$' is not defined no-undef - 19401:27 error '$' is not defined no-undef - 19402:20 error '$' is not defined no-undef - 19403:17 error '$' is not defined no-undef - 19403:62 error '$' is not defined no-undef - 19403:92 error '$' is not defined no-undef - 19404:23 error '$' is not defined no-undef - 19404:73 error '$' is not defined no-undef - 19404:104 error '$' is not defined no-undef - 19405:25 error '$' is not defined no-undef - 19406:30 error '$' is not defined no-undef - 19407:33 error '$' is not defined no-undef - 19408:22 error '$' is not defined no-undef - 19432:64 error '$' is not defined no-undef - 19443:49 error '$' is not defined no-undef - 19445:19 error 'initiating_app_uuid' is assigned a value but never used @typescript-eslint/no-unused-vars - 19447:29 error 'puter' is not defined no-undef - 19467:39 error '$' is not defined no-undef - 19481:17 error '$' is not defined no-undef - 19487:17 error '$' is not defined no-undef - 19531:18 error '$' is not defined no-undef - 19560:36 error '$' is not defined no-undef - 19577:16 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 19672:27 error '$' is not defined no-undef - 19673:21 error '$' is not defined no-undef - 19674:31 error '$' is not defined no-undef - 19675:29 error '$' is not defined no-undef - 19676:27 error '$' is not defined no-undef - 19677:27 error '$' is not defined no-undef - 19680:9 error '$' is not defined no-undef - 19684:5 error '$' is not defined no-undef - 19688:5 error '$' is not defined no-undef - 19691:5 error '$' is not defined no-undef - 19700:12 error '$' is not defined no-undef - 19704:9 error '$' is not defined no-undef - 19706:13 error '$' is not defined no-undef - 19713:5 error 'puter' is not defined no-undef - 19715:13 error '$' is not defined no-undef - 19716:13 error '$' is not defined no-undef - 19717:13 error '$' is not defined no-undef - 19718:13 error '$' is not defined no-undef - 19720:13 error '$' is not defined no-undef - 19720:44 error 'html_encode' is not defined no-undef - 19722:13 error '$' is not defined no-undef - 19722:44 error 'html_encode' is not defined no-undef - 19723:13 error '$' is not defined no-undef - 19724:13 error '$' is not defined no-undef - 19726:9 error '$' is not defined no-undef - 19727:9 error '$' is not defined no-undef - 19738:30 error '$' is not defined no-undef - 19742:30 error '$' is not defined no-undef - 19745:29 error '$' is not defined no-undef - 19749:5 error '$' is not defined no-undef - 19752:5 error 'puter' is not defined no-undef - 19755:12 error '$' is not defined no-undef - 19763:13 error '$' is not defined no-undef - 19767:17 error '$' is not defined no-undef - 19773:21 error '$' is not defined no-undef - 19775:21 error '$' is not defined no-undef - 19809:27 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19814:118 error '$' is not defined no-undef - 19848:16 error '$' is not defined no-undef - 19850:41 error 'puter' is not defined no-undef - 19864:58 error '$' is not defined no-undef - 19864:101 error '$' is not defined no-undef - 19865:24 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 19872:17 error '$' is not defined no-undef - 19873:17 error '$' is not defined no-undef - 19877:17 error '$' is not defined no-undef - 19891:9 error '$' is not defined no-undef - 19892:9 error '$' is not defined no-undef - 19895:9 error '$' is not defined no-undef - 19895:60 error 'html_encode' is not defined no-undef - 19896:9 error '$' is not defined no-undef - 20229:29 error '$' is not defined no-undef - 20231:54 error '$' is not defined no-undef - 20246:56 error '$' is not defined no-undef - 20289:34 error '_' is not defined no-undef - 20295:21 error 'key' is assigned a value but never used @typescript-eslint/no-unused-vars - 20338:5 error '$' is not defined no-undef - 20339:21 error '$' is not defined no-undef - 20386:9 error '$' is not defined no-undef - 20390:5 error '$' is not defined no-undef - 20390:24 error 'i' is defined but never used @typescript-eslint/no-unused-vars - 20390:27 error 'el' is defined but never used @typescript-eslint/no-unused-vars - 22698:9 error Duplicate key 'billing.payment_method_updated' no-dupe-keys - 25951:9 error Duplicate key 'hue' no-dupe-keys - 26526:9 error Duplicate key 'plural_suffix' no-dupe-keys - 26914:5 error Duplicate key 'account_password' no-dupe-keys - 28783:9 error Duplicate key 'plural_suffix' no-dupe-keys - 30294:2 error Duplicate key 'plural_suffix' no-dupe-keys - 31033:9 error Duplicate key 'plural_suffix' no-dupe-keys - 31407:9 error Duplicate key 'plural_suffix' no-dupe-keys - 31869:37 error Unnecessary escape character: \' no-useless-escape - 32003:33 error Unnecessary escape character: \' no-useless-escape - 32004:27 error Unnecessary escape character: \' no-useless-escape - 32531:9 error Duplicate key 'plural_suffix' no-dupe-keys - 33627:9 error Duplicate key 'plural_suffix' no-dupe-keys - 34377:15 error 'html_encode' is not defined no-undef - 34389:41 error 'html_encode' is not defined no-undef - 34541:27 error 'error' is defined but never used @typescript-eslint/no-unused-vars - 34563:25 error 'error' is defined but never used @typescript-eslint/no-unused-vars - 34585:5 error 'TeePromise' is assigned a value but never used @typescript-eslint/no-unused-vars - 34601:36 error 'Collector' is assigned a value but never used @typescript-eslint/no-unused-vars - 34601:49 error 'def' is not defined no-undef - 34683:25 error 'use' is not defined no-undef - 34685:36 error 'Frame' is assigned a value but never used @typescript-eslint/no-unused-vars - 34685:45 error 'def' is not defined no-undef - 34727:36 error 'Glyph' is assigned a value but never used @typescript-eslint/no-unused-vars - 34727:45 error 'def' is not defined no-undef - 34775:27 error 'use' is not defined no-undef - 34777:36 error 'Spinner' is assigned a value but never used @typescript-eslint/no-unused-vars - 34777:47 error 'def' is not defined no-undef - 34842:30 error 'use' is not defined no-undef - 34844:36 error 'ActionCard' is assigned a value but never used @typescript-eslint/no-unused-vars - 34844:50 error 'def' is not defined no-undef - 34860:9 error '$' is not defined no-undef - 34877:17 error 'listen' is defined but never used @typescript-eslint/no-unused-vars - 34878:9 error '$' is not defined no-undef - 34903:29 error 'use' is not defined no-undef - 34905:36 error 'NotifCard' is assigned a value but never used @typescript-eslint/no-unused-vars - 34905:49 error 'def' is not defined no-undef - 34915:9 error '$' is not defined no-undef - 34946:28 error 'use' is not defined no-undef - 34951:36 error 'TestView' is assigned a value but never used @typescript-eslint/no-unused-vars - 34951:48 error 'def' is not defined no-undef - 34963:9 error '$' is not defined no-undef - 34970:26 error 'use' is not defined no-undef - 34972:36 error 'JustID' is assigned a value but never used @typescript-eslint/no-unused-vars - 34972:46 error 'def' is not defined no-undef - 34981:15 error 'size' is assigned a value but never used @typescript-eslint/no-unused-vars - 34982:9 error '$' is not defined no-undef - 34991:5 error 'UIElement' is assigned a value but never used @typescript-eslint/no-unused-vars - 34993:5 error 'UIWindowSaveAccount' is assigned a value but never used @typescript-eslint/no-unused-vars - 34995:5 error 'UIWindowEmailConfirmationRequired' is assigned a value but never used @typescript-eslint/no-unused-vars - 35018:1 error 'logger' is not defined no-undef - 35035:1 error 'def' is not defined no-undef - 35037:1 error 'logger' is not defined no-undef - 35086:2 error 'scope' is defined but never used @typescript-eslint/no-unused-vars - 35088:19 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 35092:1 error 'logger' is not defined no-undef - 35193:1 error 'logger' is not defined no-undef - 35231:38 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 35237:172 error 'i18n' is not defined no-undef - 35238:180 error 'i18n' is not defined no-undef - 35239:115 error 'i18n' is not defined no-undef - 35258:28 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 35275:5 error '$' is not defined no-undef - 35275:71 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 35277:9 error '$' is not defined no-undef - 35313:24 error Promise executor functions should not be async no-async-promise-executor - 35315:41 error '$' is not defined no-undef - 35317:13 error 'bg_color' is assigned a value but never used @typescript-eslint/no-unused-vars - 35323:28 error 'i18n' is not defined no-undef - 35325:49 error 'i18n' is not defined no-undef - 35326:49 error 'i18n' is not defined no-undef - 35327:47 error 'i18n' is not defined no-undef - 35332:32 error 'i18n' is not defined no-undef - 35333:83 error 'i18n' is not defined no-undef - 35334:58 error 'i18n' is not defined no-undef - 35336:51 error 'i18n' is not defined no-undef - 35337:52 error 'i18n' is not defined no-undef - 35338:53 error 'i18n' is not defined no-undef - 35339:52 error 'i18n' is not defined no-undef - 35345:32 error 'i18n' is not defined no-undef - 35363:90 error 'i18n' is not defined no-undef - 35364:111 error 'i18n' is not defined no-undef - 35370:20 error 'i18n' is not defined no-undef - 35385:17 error '$' is not defined no-undef - 35402:9 error '$' is not defined no-undef - 35405:13 error '$' is not defined no-undef - 35407:13 error '$' is not defined no-undef - 35408:13 error '$' is not defined no-undef - 35410:13 error '$' is not defined no-undef - 35411:13 error '$' is not defined no-undef - 35414:13 error '$' is not defined no-undef - 35417:9 error '$' is not defined no-undef - 35417:117 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 35418:51 error '$' is not defined no-undef - 35420:9 error '$' is not defined no-undef - 35420:96 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 35421:51 error '$' is not defined no-undef - 35423:9 error '$' is not defined no-undef - 35425:25 error '$' is not defined no-undef - 35432:9 error '$' is not defined no-undef - 35432:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 35433:25 error '$' is not defined no-undef - 35438:9 error '$' is not defined no-undef - 35438:69 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 35439:26 error '$' is not defined no-undef - 35440:13 error '$' is not defined no-undef - 35442:17 error '$' is not defined no-undef - 35444:17 error '$' is not defined no-undef - 35452:9 error '$' is not defined no-undef - 35452:64 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 35455:17 error '$' is not defined no-undef - 35474:17 error '$' is not defined no-undef - 35476:20 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 35481:9 error '$' is not defined no-undef - 35486:30 error '$' is not defined no-undef - 35497:9 error '$' is not defined no-undef - 35498:13 error '$' is not defined no-undef - 35499:13 error '$' is not defined no-undef - 35532:24 error Promise executor functions should not be async no-async-promise-executor - 35537:26 error 'i18n' is not defined no-undef - 35546:35 error 'html_encode' is not defined no-undef - 35547:106 error 'i18n' is not defined no-undef - 35551:104 error 'i18n' is not defined no-undef - 35553:142 error 'i18n' is not defined no-undef - 35558:20 error 'i18n' is not defined no-undef - 35579:17 error '$' is not defined no-undef - 35590:9 error '$' is not defined no-undef - 35590:70 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 35591:29 error '$' is not defined no-undef - 35593:17 error '$' is not defined no-undef - 35594:13 error '$' is not defined no-undef - 35605:42 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 35606:21 error '$' is not defined no-undef - 35607:21 error '$' is not defined no-undef - 35644:19 error 'use' is not defined no-undef - 35647:57 error 'def' is not defined no-undef - 35681:9 error '$' is not defined no-undef - 35690:24 error '$' is not defined no-undef - 35699:17 error '$' is not defined no-undef - 35700:17 error '$' is not defined no-undef - 35707:32 error 'i18n' is not defined no-undef - 35762:13 error 'i18n' is not defined no-undef - 35768:11 error 'el_window' is assigned a value but never used @typescript-eslint/no-unused-vars - 35790:28 error 'this_window' is defined but never used @typescript-eslint/no-unused-vars - 35845:30 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 35852:181 error 'i18n' is not defined no-undef - 35853:51 error 'i18n' is not defined no-undef - 35855:125 error 'i18n' is not defined no-undef - 35875:28 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 35892:5 error '$' is not defined no-undef - 35894:5 error '$' is not defined no-undef - 35894:87 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 35895:78 error 'i18n' is not defined no-undef - 35895:131 error 'i18n' is not defined no-undef - 35899:151 error 'i18n' is not defined no-undef - 35918:5 error '$' is not defined no-undef - 35918:90 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 35919:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 35922:35 error '$' is not defined no-undef - 35928:13 error '$' is not defined no-undef - 35933:9 error '$' is not defined no-undef - 35933:22 error 'i18n' is not defined no-undef - 35935:13 error '$' is not defined no-undef - 35935:30 error 'i18n' is not defined no-undef - 35976:5 error '$' is not defined no-undef - 35992:5 error '$' is not defined no-undef - 36002:15 error 'i18n' is not defined no-undef - 36008:16 error '$' is not defined no-undef - 36025:44 error '$' is not defined no-undef - 36048:95 error 'i18n' is not defined no-undef - 36054:48 error 'html_encode' is not defined no-undef - 36054:91 error 'html_encode' is not defined no-undef - 36055:78 error 'html_encode' is not defined no-undef - 36055:124 error 'html_encode' is not defined no-undef - 36055:170 error 'html_encode' is not defined no-undef - 36055:217 error 'html_encode' is not defined no-undef - 36056:77 error 'html_encode' is not defined no-undef - 36057:74 error 'html_encode' is not defined no-undef - 36068:176 error 'i18n' is not defined no-undef - 36073:48 error 'html_encode' is not defined no-undef - 36073:91 error 'html_encode' is not defined no-undef - 36074:78 error 'html_encode' is not defined no-undef - 36074:124 error 'html_encode' is not defined no-undef - 36074:170 error 'html_encode' is not defined no-undef - 36074:217 error 'html_encode' is not defined no-undef - 36075:77 error 'html_encode' is not defined no-undef - 36076:74 error 'html_encode' is not defined no-undef - 36084:13 error '$' is not defined no-undef - 36087:17 error 'isMobile' is not defined no-undef - 36088:17 error '$' is not defined no-undef - 36091:13 error '$' is not defined no-undef - 36096:34 error '$' is not defined no-undef - 36102:33 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 36102:40 error 'ui' is defined but never used @typescript-eslint/no-unused-vars - 36104:32 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 36104:39 error 'ui' is defined but never used @typescript-eslint/no-unused-vars - 36123:46 error '$' is not defined no-undef - 36145:54 error '$' is not defined no-undef - 36161:25 error 'puter' is not defined no-undef - 36169:18 error 'i18n' is not defined no-undef - 36174:32 error '$' is not defined no-undef - 36174:56 error 'html_encode' is not defined no-undef - 36194:5 error '$' is not defined no-undef - 36203:17 error '$' is not defined no-undef - 36205:20 error '$' is not defined no-undef - 36205:49 error '$' is not defined no-undef - 36206:21 error '$' is not defined no-undef - 36207:21 error '$' is not defined no-undef - 36213:17 error '$' is not defined no-undef - 36215:20 error '$' is not defined no-undef - 36215:49 error '$' is not defined no-undef - 36216:21 error '$' is not defined no-undef - 36217:21 error '$' is not defined no-undef - 36222:27 error '$' is not defined no-undef - 36223:26 error '$' is not defined no-undef - 36224:27 error '$' is not defined no-undef - 36228:58 error '$' is not defined no-undef - 36228:87 error '$' is not defined no-undef - 36231:39 error '$' is not defined no-undef - 36238:27 error '$' is not defined no-undef - 36239:17 error '$' is not defined no-undef - 36241:17 error '$' is not defined no-undef - 36242:17 error '$' is not defined no-undef - 36246:21 error '$' is not defined no-undef - 36256:8 error 'isMobile' is not defined no-undef - 36257:29 error '$' is not defined no-undef - 36262:13 error '$' is not defined no-undef - 36263:13 error '$' is not defined no-undef - 36268:17 error '$' is not defined no-undef - 36272:13 error '$' is not defined no-undef - 36273:13 error '$' is not defined no-undef - 36334:1 error 'def' is not defined no-undef - 36337:24 error Promise executor functions should not be async no-async-promise-executor - 36355:65 error 'i18n' is not defined no-undef - 36361:216 error 'i18n' is not defined no-undef - 36417:28 error '$' is not defined no-undef - 36419:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 36432:9 error '$' is not defined no-undef - 36433:27 error '$' is not defined no-undef - 36455:1 error '$' is not defined no-undef - 36457:5 error '$' is not defined no-undef - 36458:5 error '$' is not defined no-undef - 36461:9 error '$' is not defined no-undef - 36462:19 error '$' is not defined no-undef - 36467:1 error '$' is not defined no-undef - 36467:60 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 36469:5 error '$' is not defined no-undef - 36472:9 error '$' is not defined no-undef - 36480:1 error '$' is not defined no-undef - 36483:10 error '$' is not defined no-undef - 36483:62 error '$' is not defined no-undef - 36483:119 error '$' is not defined no-undef - 36483:169 error '$' is not defined no-undef - 36484:9 error '$' is not defined no-undef - 36485:9 error '$' is not defined no-undef - 36488:13 error '$' is not defined no-undef - 36522:25 error 'use' is not defined no-undef - 36527:45 error 'def' is not defined no-undef - 36573:9 error '$' is not defined no-undef - 36587:13 error '$' is not defined no-undef - 36592:13 error '$' is not defined no-undef - 36596:27 error '$' is not defined no-undef - 36597:13 error '$' is not defined no-undef - 36643:28 error 'i18n' is not defined no-undef - 36645:28 error 'i18n' is not defined no-undef - 36648:24 error 'i18n' is not defined no-undef - 36656:28 error 'i18n' is not defined no-undef - 36661:28 error 'i18n' is not defined no-undef - 36692:9 error '$' is not defined no-undef - 36700:17 error 'i18n' is not defined no-undef - 36701:17 error 'i18n' is not defined no-undef - 36702:17 error 'i18n' is not defined no-undef - 36709:19 error 'new_uuids' is assigned a value but never used @typescript-eslint/no-unused-vars - 36862:13 error '$' is not defined no-undef - 36868:13 error '$' is not defined no-undef - 36868:53 error 'i18n' is not defined no-undef - 36871:13 error '$' is not defined no-undef - 36871:55 error 'i18n' is not defined no-undef - 36874:24 error '$' is not defined no-undef - 36897:9 error '$' is not defined no-undef - 36902:31 error 'i18n' is not defined no-undef - 36908:31 error 'i18n' is not defined no-undef - 36932:11 error 'w' is assigned a value but never used @typescript-eslint/no-unused-vars - 36934:16 error 'i18n' is not defined no-undef - 37010:78 error 'html_encode' is not defined no-undef - 37011:74 error 'html_encode' is not defined no-undef - 37013:90 error 'html_encode' is not defined no-undef - 37016:53 error 'html_encode' is not defined no-undef - 37017:52 error 'html_encode' is not defined no-undef - 37021:5 error '$' is not defined no-undef - 37024:5 error 'update_tab_notif_count_badge' is not defined no-undef - 37029:5 error '$' is not defined no-undef - 37031:5 error '$' is not defined no-undef - 37031:41 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 37039:5 error '$' is not defined no-undef - 37041:12 error '$' is not defined no-undef - 37055:5 error '$' is not defined no-undef - 37070:32 error '$' is not defined no-undef - 37071:13 error '$' is not defined no-undef - 37078:9 error '$' is not defined no-undef - 37087:13 error '$' is not defined no-undef - 37088:13 error '$' is not defined no-undef - 37090:25 error '$' is not defined no-undef - 37092:17 error '$' is not defined no-undef - 37094:17 error '$' is not defined no-undef - 37097:13 error 'update_tab_notif_count_badge' is not defined no-undef - 37101:5 error '$' is not defined no-undef - 37104:17 error '$' is not defined no-undef - 37106:9 error '$' is not defined no-undef - 37108:9 error '$' is not defined no-undef - 37114:1 error '$' is not defined no-undef - 37116:5 error '$' is not defined no-undef - 37118:5 error '$' is not defined no-undef - 37122:5 error '$' is not defined no-undef - 37125:5 error 'update_tab_notif_count_badge' is not defined no-undef - 37135:17 error '$' is not defined no-undef - 37178:5 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 37225:28 error 'this_window' is defined but never used @typescript-eslint/no-unused-vars - 37230:13 error 'puter' is not defined no-undef - 37241:5 error '$' is not defined no-undef - 37242:9 error '$' is not defined no-undef - 37302:5 error 'channel' is not defined no-undef - 37302:34 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 37307:5 error 'puter' is not defined no-undef - 37318:43 error 'html_encode' is not defined no-undef - 37335:43 error 'html_encode' is not defined no-undef - 37344:13 error 'puter' is not defined no-undef - 37348:21 error 'io' is not defined no-undef - 37410:9 error '$' is not defined no-undef - 37410:31 error 'html_encode' is not defined no-undef - 37411:9 error '$' is not defined no-undef - 37411:33 error 'html_encode' is not defined no-undef - 37414:13 error '$' is not defined no-undef - 37414:37 error 'html_encode' is not defined no-undef - 37422:37 error 'get_profile_picture' is not defined no-undef - 37440:50 error 'puter' is not defined no-undef - 37446:27 error 'notif' is defined but never used @typescript-eslint/no-unused-vars - 37472:41 error 'get_profile_picture' is not defined no-undef - 37489:54 error 'puter' is not defined no-undef - 37497:31 error 'notif' is defined but never used @typescript-eslint/no-unused-vars - 37514:9 error '$' is not defined no-undef - 37515:9 error 'update_tab_notif_count_badge' is not defined no-undef - 37527:37 error '_' is not defined no-undef - 37543:9 error '$' is not defined no-undef - 37548:13 error '$' is not defined no-undef - 37559:9 error '$' is not defined no-undef - 37559:30 error 'html_encode' is not defined no-undef - 37559:73 error 'html_encode' is not defined no-undef - 37563:9 error '$' is not defined no-undef - 37564:9 error '$' is not defined no-undef - 37567:9 error '$' is not defined no-undef - 37567:62 error 'html_encode' is not defined no-undef - 37568:9 error '$' is not defined no-undef - 37568:52 error 'html_encode' is not defined no-undef - 37571:9 error '$' is not defined no-undef - 37571:58 error 'html_encode' is not defined no-undef - 37572:9 error '$' is not defined no-undef - 37572:51 error 'html_encode' is not defined no-undef - 37575:9 error '$' is not defined no-undef - 37575:66 error 'html_encode' is not defined no-undef - 37576:9 error '$' is not defined no-undef - 37576:69 error 'html_encode' is not defined no-undef - 37580:9 error '$' is not defined no-undef - 37581:9 error '$' is not defined no-undef - 37584:9 error '$' is not defined no-undef - 37584:26 error 'html_encode' is not defined no-undef - 37585:13 error '$' is not defined no-undef - 37586:16 error '$' is not defined no-undef - 37587:17 error '$' is not defined no-undef - 37591:9 error '$' is not defined no-undef - 37591:27 error 'html_encode' is not defined no-undef - 37592:33 error '_' is not defined no-undef - 37592:43 error '$' is not defined no-undef - 37593:13 error '$' is not defined no-undef - 37597:9 error '$' is not defined no-undef - 37601:9 error '$' is not defined no-undef - 37604:9 error '$' is not defined no-undef - 37605:37 error '$' is not defined no-undef - 37605:94 error '$' is not defined no-undef - 37626:9 error '$' is not defined no-undef - 37626:43 error 'html_encode' is not defined no-undef - 37626:107 error 'html_encode' is not defined no-undef - 37629:9 error '$' is not defined no-undef - 37631:34 error '$' is not defined no-undef - 37633:13 error '$' is not defined no-undef - 37635:13 error '$' is not defined no-undef - 37635:45 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 37643:13 error '$' is not defined no-undef - 37643:37 error 'html_encode' is not defined no-undef - 37645:13 error '$' is not defined no-undef - 37645:38 error 'html_encode' is not defined no-undef - 37651:13 error '$' is not defined no-undef - 37651:38 error 'html_encode' is not defined no-undef - 37651:91 error 'html_encode' is not defined no-undef - 37652:49 error '$' is not defined no-undef - 37657:13 error '$' is not defined no-undef - 37662:17 error '$' is not defined no-undef - 37664:17 error '$' is not defined no-undef - 37672:13 error '$' is not defined no-undef - 37679:23 error '$' is not defined no-undef - 37679:55 error 'html_encode' is not defined no-undef - 37704:38 error '$' is not defined no-undef - 37704:70 error 'html_encode' is not defined no-undef - 37705:49 error '$' is not defined no-undef - 37705:71 error 'html_encode' is not defined no-undef - 37722:51 error '$' is not defined no-undef - 37722:91 error '$' is not defined no-undef - 37726:9 error '$' is not defined no-undef - 37726:41 error 'html_encode' is not defined no-undef - 37727:37 error '$' is not defined no-undef - 37727:67 error '$' is not defined no-undef - 37763:9 error '$' is not defined no-undef - 37763:30 error 'html_encode' is not defined no-undef - 37763:73 error 'html_encode' is not defined no-undef - 37767:9 error '$' is not defined no-undef - 37770:9 error '$' is not defined no-undef - 37770:62 error 'html_encode' is not defined no-undef - 37771:9 error '$' is not defined no-undef - 37771:52 error 'html_encode' is not defined no-undef - 37774:9 error '$' is not defined no-undef - 37774:58 error 'html_encode' is not defined no-undef - 37775:9 error '$' is not defined no-undef - 37775:51 error 'html_encode' is not defined no-undef - 37778:9 error '$' is not defined no-undef - 37778:66 error 'html_encode' is not defined no-undef - 37779:9 error '$' is not defined no-undef - 37779:69 error 'html_encode' is not defined no-undef - 37783:9 error '$' is not defined no-undef - 37784:9 error '$' is not defined no-undef - 37787:9 error '$' is not defined no-undef - 37787:26 error 'html_encode' is not defined no-undef - 37788:13 error '$' is not defined no-undef - 37789:16 error '$' is not defined no-undef - 37790:17 error '$' is not defined no-undef - 37794:9 error '$' is not defined no-undef - 37794:27 error 'html_encode' is not defined no-undef - 37795:33 error '_' is not defined no-undef - 37795:43 error '$' is not defined no-undef - 37796:13 error '$' is not defined no-undef - 37800:9 error '$' is not defined no-undef - 37804:9 error '$' is not defined no-undef - 37807:9 error '$' is not defined no-undef - 37808:37 error '$' is not defined no-undef - 37808:94 error '$' is not defined no-undef - 37814:12 error '_' is not defined no-undef - 37833:13 error '$' is not defined no-undef - 37844:13 error '$' is not defined no-undef - 37847:13 error '$' is not defined no-undef - 37847:45 error 'html_encode' is not defined no-undef - 37848:41 error '$' is not defined no-undef - 37848:71 error '$' is not defined no-undef - 37853:27 error '$' is not defined no-undef - 37853:59 error 'html_encode' is not defined no-undef - 37871:13 error '$' is not defined no-undef - 37871:45 error 'html_encode' is not defined no-undef - 37872:41 error '$' is not defined no-undef - 37872:71 error '$' is not defined no-undef - 37893:30 error 'html_encode' is not defined no-undef - 37898:5 error 'puter' is not defined no-undef - 37907:5 error 'puter' is not defined no-undef - 37918:5 error 'puter' is not defined no-undef - 37935:13 error '$' is not defined no-undef - 37947:45 error 'puter' is not defined no-undef - 37948:25 error 'puter' is not defined no-undef - 37949:30 error 'puter' is not defined no-undef - 37953:5 error 'puter' is not defined no-undef - 37955:75 error 'puter' is not defined no-undef - 37962:5 error '$' is not defined no-undef - 37965:5 error '$' is not defined no-undef - 37980:5 error '$' is not defined no-undef - 37981:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 37981:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 37982:13 error '$' is not defined no-undef - 37984:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 37984:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 37989:16 error '$' is not defined no-undef - 37989:52 error '$' is not defined no-undef - 38005:5 error '$' is not defined no-undef - 38014:17 error '$' is not defined no-undef - 38018:45 error '$' is not defined no-undef - 38022:61 error '$' is not defined no-undef - 38026:13 error '$' is not defined no-undef - 38035:71 error '$' is not defined no-undef - 38043:48 error '$' is not defined no-undef - 38058:5 error '$' is not defined no-undef - 38060:39 error 'isMobile' is not defined no-undef - 38060:58 error 'isMobile' is not defined no-undef - 38063:25 error '$' is not defined no-undef - 38078:31 error 'i18n' is not defined no-undef - 38081:39 error 'i18n' is not defined no-undef - 38087:71 error '$' is not defined no-undef - 38087:107 error '$' is not defined no-undef - 38088:89 error '$' is not defined no-undef - 38088:125 error '$' is not defined no-undef - 38100:39 error 'i18n' is not defined no-undef - 38102:39 error '$' is not defined no-undef - 38104:75 error '$' is not defined no-undef - 38105:93 error '$' is not defined no-undef - 38109:39 error 'i18n' is not defined no-undef - 38111:39 error '$' is not defined no-undef - 38113:79 error '$' is not defined no-undef - 38114:97 error '$' is not defined no-undef - 38118:39 error 'i18n' is not defined no-undef - 38120:39 error '$' is not defined no-undef - 38122:75 error '$' is not defined no-undef - 38123:93 error '$' is not defined no-undef - 38127:39 error 'i18n' is not defined no-undef - 38129:39 error '$' is not defined no-undef - 38131:75 error '$' is not defined no-undef - 38132:93 error '$' is not defined no-undef - 38140:39 error 'i18n' is not defined no-undef - 38142:39 error '$' is not defined no-undef - 38144:53 error '$' is not defined no-undef - 38150:39 error 'i18n' is not defined no-undef - 38152:39 error '$' is not defined no-undef - 38154:53 error '$' is not defined no-undef - 38165:31 error 'i18n' is not defined no-undef - 38174:31 error 'i18n' is not defined no-undef - 38199:31 error 'i18n' is not defined no-undef - 38212:31 error 'i18n' is not defined no-undef - 38222:31 error 'i18n' is not defined no-undef - 38235:31 error 'i18n' is not defined no-undef - 38256:17 error 'isMobile' is not defined no-undef - 38256:36 error 'isMobile' is not defined no-undef - 38258:21 error 'puter' is not defined no-undef - 38272:9 error 'isMobile' is not defined no-undef - 38272:28 error 'isMobile' is not defined no-undef - 38274:31 error 'SelectionArea' is not defined no-undef - 38303:20 error '$' is not defined no-undef - 38305:27 error 'evt' is defined but never used @typescript-eslint/no-unused-vars - 38319:56 error '$' is not defined no-undef - 38333:21 error '$' is not defined no-undef - 38336:21 error 'evt' is defined but never used @typescript-eslint/no-unused-vars - 38366:13 error 'isMobile' is not defined no-undef - 38385:5 error '$' is not defined no-undef - 38388:5 error '$' is not defined no-undef - 38388:98 error 'i18n' is not defined no-undef - 38391:5 error '$' is not defined no-undef - 38408:50 error 'puter' is not defined no-undef - 38482:5 error '$' is not defined no-undef - 38484:35 error 'isMobile' is not defined no-undef - 38484:54 error 'isMobile' is not defined no-undef - 38488:9 error '$' is not defined no-undef - 38489:9 error '$' is not defined no-undef - 38490:9 error '$' is not defined no-undef - 38493:5 error '$' is not defined no-undef - 38493:40 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 38495:9 error '$' is not defined no-undef - 38497:9 error '$' is not defined no-undef - 38521:9 error '$' is not defined no-undef - 38522:9 error '$' is not defined no-undef - 38529:9 error 'puter' is not defined no-undef - 38534:17 error 'puter' is not defined no-undef - 38543:11 error 'puter' is not defined no-undef - 38546:40 error 'puter' is not defined no-undef - 38563:45 error 'get_profile_picture' is not defined no-undef - 38572:45 error 'notif' is defined but never used @typescript-eslint/no-unused-vars - 38617:1 error '$' is not defined no-undef - 38619:35 error 'isMobile' is not defined no-undef - 38619:54 error 'isMobile' is not defined no-undef - 38625:25 error '$' is not defined no-undef - 38633:21 error '$' is not defined no-undef - 38642:21 error '$' is not defined no-undef - 38650:1 error '$' is not defined no-undef - 38650:52 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 38657:1 error '$' is not defined no-undef - 38657:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 38659:8 error '$' is not defined no-undef - 38663:9 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 38670:23 error 'i18n' is not defined no-undef - 38702:45 error 'val' is defined but never used @typescript-eslint/no-unused-vars - 38722:23 error 'i18n' is not defined no-undef - 38724:41 error 'val' is defined but never used @typescript-eslint/no-unused-vars - 38746:11 error 'supportedLanguagesItems' is assigned a value but never used @typescript-eslint/no-unused-vars - 38766:23 error 'i18n' is not defined no-undef - 38776:23 error 'i18n' is not defined no-undef - 38786:23 error 'i18n' is not defined no-undef - 38796:23 error 'i18n' is not defined no-undef - 38811:23 error 'i18n' is not defined no-undef - 38814:24 error '$' is not defined no-undef - 38816:44 error 'i18n' is not defined no-undef - 38819:44 error 'i18n' is not defined no-undef - 38824:44 error 'i18n' is not defined no-undef - 38840:1 error '$' is not defined no-undef - 38840:60 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 38866:1 error '$' is not defined no-undef - 38867:5 error '$' is not defined no-undef - 38868:9 error '$' is not defined no-undef - 38872:1 error '$' is not defined no-undef - 38876:1 error '$' is not defined no-undef - 38880:1 error '$' is not defined no-undef - 38880:76 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 38887:1 error '$' is not defined no-undef - 38887:54 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 38891:1 error '$' is not defined no-undef - 38891:54 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 38893:15 error '$' is not defined no-undef - 38896:5 error '$' is not defined no-undef - 38897:9 error '$' is not defined no-undef - 38901:1 error '$' is not defined no-undef - 38901:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 38906:24 error 'i18n' is not defined no-undef - 38911:24 error 'i18n' is not defined no-undef - 38915:24 error 'i18n' is not defined no-undef - 38938:1 error '$' is not defined no-undef - 38939:5 error '$' is not defined no-undef - 38946:1 error '$' is not defined no-undef - 38946:52 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 38948:5 error '$' is not defined no-undef - 38950:5 error '$' is not defined no-undef - 38953:1 error '$' is not defined no-undef - 38953:82 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 38955:19 error '$' is not defined no-undef - 38957:9 error '$' is not defined no-undef - 38958:9 error '$' is not defined no-undef - 38959:9 error '$' is not defined no-undef - 38960:9 error '$' is not defined no-undef - 38962:9 error '$' is not defined no-undef - 38963:9 error '$' is not defined no-undef - 38964:9 error '$' is not defined no-undef - 38967:17 error '$' is not defined no-undef - 38969:17 error '$' is not defined no-undef - 38975:1 error '$' is not defined no-undef - 38975:58 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 38976:5 error '$' is not defined no-undef - 38977:5 error '$' is not defined no-undef - 38978:5 error '$' is not defined no-undef - 38981:48 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 38987:9 error '$' is not defined no-undef - 38988:9 error '$' is not defined no-undef - 38989:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 38989:61 error '$' is not defined no-undef - 38991:9 error '$' is not defined no-undef - 38992:9 error '$' is not defined no-undef - 38993:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 38993:61 error '$' is not defined no-undef - 39001:13 error '$' is not defined no-undef - 39002:13 error '$' is not defined no-undef - 39003:13 error '$' is not defined no-undef - 39006:13 error '$' is not defined no-undef - 39007:13 error '$' is not defined no-undef - 39008:13 error '$' is not defined no-undef - 39012:13 error '$' is not defined no-undef - 39013:13 error '$' is not defined no-undef - 39019:9 error '$' is not defined no-undef - 39024:9 error '$' is not defined no-undef - 39035:5 error '$' is not defined no-undef - 39035:76 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 39037:19 error '$' is not defined no-undef - 39043:5 error '$' is not defined no-undef - 39058:5 error '$' is not defined no-undef - 39060:5 error '$' is not defined no-undef - 39061:9 error '$' is not defined no-undef - 39068:5 error '$' is not defined no-undef - 39069:5 error '$' is not defined no-undef - 39070:5 error '$' is not defined no-undef - 39071:5 error '$' is not defined no-undef - 39081:5 error '$' is not defined no-undef - 39083:5 error '$' is not defined no-undef - 39084:5 error '$' is not defined no-undef - 39085:47 error '$' is not defined no-undef - 39086:5 error '$' is not defined no-undef - 39089:9 error '$' is not defined no-undef - 39093:5 error '$' is not defined no-undef - 39096:5 error '$' is not defined no-undef - 39103:5 error '$' is not defined no-undef - 39143:24 error Promise executor functions should not be async no-async-promise-executor - 39143:31 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 39153:66 error 'i18n' is not defined no-undef - 39158:74 error 'i18n' is not defined no-undef - 39163:106 error 'i18n' is not defined no-undef - 39179:30 error 'i18n' is not defined no-undef - 39186:30 error 'i18n' is not defined no-undef - 39192:26 error 'i18n' is not defined no-undef - 39224:17 error '$' is not defined no-undef - 39239:17 error '$' is not defined no-undef - 39240:17 error '$' is not defined no-undef - 39247:13 error '$' is not defined no-undef - 39255:9 error '$' is not defined no-undef - 39255:72 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 39256:34 error '$' is not defined no-undef - 39257:42 error '$' is not defined no-undef - 39260:17 error '$' is not defined no-undef - 39261:17 error '$' is not defined no-undef - 39265:17 error '$' is not defined no-undef - 39266:17 error '$' is not defined no-undef - 39273:17 error '$' is not defined no-undef - 39273:59 error 'i18n' is not defined no-undef - 39274:17 error '$' is not defined no-undef - 39278:13 error '$' is not defined no-undef - 39280:13 error '$' is not defined no-undef - 39289:42 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 39290:21 error '$' is not defined no-undef - 39298:40 error 'i18n' is not defined no-undef - 39315:21 error '$' is not defined no-undef - 39315:63 error 'html_encode' is not defined no-undef - 39316:21 error '$' is not defined no-undef - 39347:24 error Promise executor functions should not be async no-async-promise-executor - 39347:31 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 39384:32 error 'this_window' is defined but never used @typescript-eslint/no-unused-vars - 39396:13 error '$' is not defined no-undef - 39432:24 error Promise executor functions should not be async no-async-promise-executor - 39436:42 error 'i18n' is not defined no-undef - 39439:320 error 'i18n' is not defined no-undef - 39450:206 error 'i18n' is not defined no-undef - 39476:32 error 'this_window' is defined but never used @typescript-eslint/no-unused-vars - 39489:9 error '$' is not defined no-undef - 39489:81 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 39512:9 error '$' is not defined no-undef - 39512:82 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 39513:13 error '$' is not defined no-undef - 39537:9 error '$' is not defined no-undef - 39537:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 39538:13 error '$' is not defined no-undef - 39541:37 error '$' is not defined no-undef - 39605:70 error 'i18n' is not defined no-undef - 39610:102 error 'i18n' is not defined no-undef - 39614:16 error 'i18n' is not defined no-undef - 39635:13 error '$' is not defined no-undef - 39647:5 error '$' is not defined no-undef - 39647:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 39649:9 error '$' is not defined no-undef - 39651:30 error '$' is not defined no-undef - 39654:13 error '$' is not defined no-undef - 39654:55 error 'i18n' is not defined no-undef - 39655:13 error '$' is not defined no-undef - 39659:9 error '$' is not defined no-undef - 39662:9 error '$' is not defined no-undef - 39664:9 error '$' is not defined no-undef - 39666:9 error '$' is not defined no-undef - 39677:32 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 39678:17 error '$' is not defined no-undef - 39678:61 error 'i18n' is not defined no-undef - 39679:17 error '$' is not defined no-undef - 39680:17 error '$' is not defined no-undef - 39686:17 error '$' is not defined no-undef - 39688:17 error '$' is not defined no-undef - 39691:17 error '$' is not defined no-undef - 39691:59 error 'html_encode' is not defined no-undef - 39692:17 error '$' is not defined no-undef - 39694:17 error '$' is not defined no-undef - 39696:17 error '$' is not defined no-undef - 39766:28 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 39767:24 error Promise executor functions should not be async no-async-promise-executor - 39773:80 error 'i18n' is not defined no-undef - 39774:114 error 'i18n' is not defined no-undef - 39776:59 error 'i18n' is not defined no-undef - 39777:49 error 'i18n' is not defined no-undef - 39813:9 error '$' is not defined no-undef - 39813:78 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 39814:13 error '$' is not defined no-undef - 39818:9 error '$' is not defined no-undef - 39818:85 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 39819:13 error '$' is not defined no-undef - 39849:28 error '$' is not defined no-undef - 39852:28 error '$' is not defined no-undef - 39856:28 error '$' is not defined no-undef - 39859:66 error '$' is not defined no-undef - 39860:28 error '$' is not defined no-undef - 39927:26 error 'puter' is not defined no-undef - 39967:9 error 'puter' is not defined no-undef - 40017:9 error 'puter' is not defined no-undef - 40059:9 error '$' is not defined no-undef - 40074:24 error '$' is not defined no-undef - 40291:46 error 'i18n' is not defined no-undef - 40295:76 error 'i18n' is not defined no-undef - 40297:78 error 'i18n' is not defined no-undef - 40299:77 error 'i18n' is not defined no-undef - 40301:79 error 'i18n' is not defined no-undef - 40303:60 error 'i18n' is not defined no-undef - 40333:86 error 'i18n' is not defined no-undef - 40336:141 error 'i18n' is not defined no-undef - 40337:140 error 'i18n' is not defined no-undef - 40338:129 error 'i18n' is not defined no-undef - 40339:100 error 'i18n' is not defined no-undef - 40340:146 error 'i18n' is not defined no-undef - 40341:146 error 'i18n' is not defined no-undef - 40342:103 error 'i18n' is not defined no-undef - 40343:99 error 'i18n' is not defined no-undef - 40344:119 error 'i18n' is not defined no-undef - 40345:134 error 'i18n' is not defined no-undef - 40346:133 error 'i18n' is not defined no-undef - 40347:131 error 'i18n' is not defined no-undef - 40349:135 error 'i18n' is not defined no-undef - 40358:9 error 'puter' is not defined no-undef - 40361:58 error 'html_encode' is not defined no-undef - 40361:101 error 'html_encode' is not defined no-undef - 40361:147 error 'html_encode' is not defined no-undef - 40369:16 error '$' is not defined no-undef - 40370:17 error '$' is not defined no-undef - 40374:64 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 40375:13 error '$' is not defined no-undef - 40408:19 error 'i18n' is not defined no-undef - 40410:68 error 'i18n' is not defined no-undef - 40415:122 error 'i18n' is not defined no-undef - 40424:12 error '$el_window' is defined but never used @typescript-eslint/no-unused-vars - 40425:9 error '$' is not defined no-undef - 40448:80 error 'html_encode' is not defined no-undef - 40462:47 error Unexpected constant truthiness on the left-hand side of a `||` expression no-constant-binary-expression - 40472:84 error 'html_encode' is not defined no-undef - 40472:118 error 'html_encode' is not defined no-undef - 40483:84 error 'html_encode' is not defined no-undef - 40483:118 error 'html_encode' is not defined no-undef - 40484:86 error 'i18n' is not defined no-undef - 40484:122 error 'i18n' is not defined no-undef - 40492:17 error '$' is not defined no-undef - 40497:9 error '$' is not defined no-undef - 40518:21 error '$' is not defined no-undef - 40519:21 error '$' is not defined no-undef - 40525:17 error '$' is not defined no-undef - 40526:17 error '$' is not defined no-undef - 40527:17 error '$' is not defined no-undef - 40532:17 error '$' is not defined no-undef - 40533:17 error '$' is not defined no-undef - 40535:21 error '$' is not defined no-undef - 40580:66 error 'i18n' is not defined no-undef - 40585:62 error 'i18n' is not defined no-undef - 40590:70 error 'i18n' is not defined no-undef - 40595:102 error 'i18n' is not defined no-undef - 40620:13 error '$' is not defined no-undef - 40632:5 error '$' is not defined no-undef - 40632:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 40633:34 error '$' is not defined no-undef - 40634:30 error '$' is not defined no-undef - 40635:38 error '$' is not defined no-undef - 40638:9 error '$' is not defined no-undef - 40642:13 error '$' is not defined no-undef - 40643:13 error '$' is not defined no-undef - 40648:13 error '$' is not defined no-undef - 40648:55 error 'i18n' is not defined no-undef - 40649:13 error '$' is not defined no-undef - 40655:13 error '$' is not defined no-undef - 40655:55 error 'i18n' is not defined no-undef - 40656:13 error '$' is not defined no-undef - 40660:9 error '$' is not defined no-undef - 40662:9 error '$' is not defined no-undef - 40674:32 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 40675:17 error '$' is not defined no-undef - 40675:61 error 'i18n' is not defined no-undef - 40676:17 error '$' is not defined no-undef - 40677:17 error '$' is not defined no-undef - 40680:17 error '$' is not defined no-undef - 40680:59 error 'html_encode' is not defined no-undef - 40681:17 error '$' is not defined no-undef - 40709:33 error 'use' is not defined no-undef - 40711:53 error 'def' is not defined no-undef - 40788:9 error '$' is not defined no-undef - 40792:93 error 'i18n' is not defined no-undef - 40806:9 error '$' is not defined no-undef - 40811:35 error '$' is not defined no-undef - 40812:13 error '$' is not defined no-undef - 40818:17 error '$' is not defined no-undef - 40822:23 error '$' is not defined no-undef - 40829:13 error '$' is not defined no-undef - 40836:9 error '$' is not defined no-undef - 40840:13 error '$' is not defined no-undef - 40841:13 error '$' is not defined no-undef - 40887:67 error 'i18n' is not defined no-undef - 40892:28 error 'i18n' is not defined no-undef - 40897:99 error 'i18n' is not defined no-undef - 40901:16 error 'i18n' is not defined no-undef - 40922:13 error '$' is not defined no-undef - 40936:5 error '$' is not defined no-undef - 40936:65 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 40938:9 error '$' is not defined no-undef - 40940:27 error '$' is not defined no-undef - 40941:15 error 'password' is assigned a value but never used @typescript-eslint/no-unused-vars - 40941:26 error '$' is not defined no-undef - 40944:13 error '$' is not defined no-undef - 40944:55 error 'i18n' is not defined no-undef - 40945:13 error '$' is not defined no-undef - 40949:9 error '$' is not defined no-undef - 40952:9 error '$' is not defined no-undef - 40954:9 error '$' is not defined no-undef - 40956:9 error '$' is not defined no-undef - 40968:32 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 40969:17 error '$' is not defined no-undef - 40969:61 error 'i18n' is not defined no-undef - 40970:17 error '$' is not defined no-undef - 40971:17 error '$' is not defined no-undef - 40975:17 error '$' is not defined no-undef - 40977:17 error '$' is not defined no-undef - 40980:17 error '$' is not defined no-undef - 40980:59 error 'html_encode' is not defined no-undef - 40981:17 error '$' is not defined no-undef - 40983:17 error '$' is not defined no-undef - 40985:17 error '$' is not defined no-undef - 41015:24 error Promise executor functions should not be async no-async-promise-executor - 41015:31 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 41025:73 error 'i18n' is not defined no-undef - 41029:97 error 'i18n' is not defined no-undef - 41030:102 error 'i18n' is not defined no-undef - 41031:99 error 'i18n' is not defined no-undef - 41039:73 error 'i18n' is not defined no-undef - 41043:100 error 'i18n' is not defined no-undef - 41044:102 error 'i18n' is not defined no-undef - 41045:99 error 'i18n' is not defined no-undef - 41050:20 error 'i18n' is not defined no-undef - 41066:32 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 41078:9 error '$' is not defined no-undef - 41079:13 error '$' is not defined no-undef - 41082:9 error '$' is not defined no-undef - 41083:13 error '$' is not defined no-undef - 41086:9 error '$' is not defined no-undef - 41087:13 error '$' is not defined no-undef - 41090:33 error '$' is not defined no-undef - 41093:57 error 'i18n' is not defined no-undef - 41094:21 error '$' is not defined no-undef - 41094:62 error 'i18n' is not defined no-undef - 41095:21 error '$' is not defined no-undef - 41101:20 error '$' is not defined no-undef - 41102:21 error '$' is not defined no-undef - 41102:62 error 'i18n' is not defined no-undef - 41103:21 error '$' is not defined no-undef - 41109:13 error '$' is not defined no-undef - 41118:31 error '$' is not defined no-undef - 41125:25 error '$' is not defined no-undef - 41125:66 error 'i18n' is not defined no-undef - 41126:25 error '$' is not defined no-undef - 41137:25 error '$' is not defined no-undef - 41137:66 error 'html_encode' is not defined no-undef - 41138:25 error '$' is not defined no-undef - 41172:24 error Promise executor functions should not be async no-async-promise-executor - 41172:31 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 41179:69 error 'i18n' is not defined no-undef - 41180:98 error 'i18n' is not defined no-undef - 41181:95 error 'i18n' is not defined no-undef - 41185:20 error 'i18n' is not defined no-undef - 41201:32 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 41217:9 error '$' is not defined no-undef - 41218:13 error '$' is not defined no-undef - 41221:9 error '$' is not defined no-undef - 41222:13 error '$' is not defined no-undef - 41225:9 error '$' is not defined no-undef - 41227:13 error '$' is not defined no-undef - 41261:16 error 'i18n' is not defined no-undef - 41320:37 error 'i18n' is not defined no-undef - 41325:26 error 'i18n' is not defined no-undef - 41328:32 error 'i18n' is not defined no-undef - 41333:32 error 'i18n' is not defined no-undef - 41348:46 error 'puter' is not defined no-undef - 41379:42 error 'puter' is not defined no-undef - 41451:103 error 'html_encode' is not defined no-undef - 41458:33 error 'i18n' is not defined no-undef - 41460:89 error 'i18n' is not defined no-undef - 41468:56 error 'i18n' is not defined no-undef - 41469:87 error 'html_encode' is not defined no-undef - 41472:85 error 'i18n' is not defined no-undef - 41480:60 error 'i18n' is not defined no-undef - 41481:93 error 'html_encode' is not defined no-undef - 41484:86 error 'i18n' is not defined no-undef - 41491:60 error 'i18n' is not defined no-undef - 41493:98 error 'i18n' is not defined no-undef - 41500:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 41510:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 41520:64 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 41530:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 41540:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 41550:80 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 41569:39 error 'puter' is not defined no-undef - 41585:90 error 'html_encode' is not defined no-undef - 41586:21 error '$' is not defined no-undef - 41586:74 error 'html_encode' is not defined no-undef - 41587:21 error '$' is not defined no-undef - 41589:21 error 'update_profile' is not defined no-undef - 41627:37 error 'use' is not defined no-undef - 41632:57 error 'def' is not defined no-undef - 41659:9 error '$' is not defined no-undef - 41671:44 error 'i18n' is not defined no-undef - 41676:17 error 'listen' is defined but never used @typescript-eslint/no-unused-vars - 41678:9 error '$' is not defined no-undef - 41679:35 error '$' is not defined no-undef - 41681:17 error '$' is not defined no-undef - 41683:17 error '$' is not defined no-undef - 41710:37 error 'use' is not defined no-undef - 41712:57 error 'def' is not defined no-undef - 41768:9 error '$' is not defined no-undef - 41774:65 error 'i18n' is not defined no-undef - 41775:66 error 'i18n' is not defined no-undef - 41784:17 error '$' is not defined no-undef - 41785:50 error 'html_encode' is not defined no-undef - 41790:9 error '$' is not defined no-undef - 41795:9 error '$' is not defined no-undef - 41796:28 error '$' is not defined no-undef - 41797:33 error '$' is not defined no-undef - 41826:31 error 'use' is not defined no-undef - 41833:51 error 'def' is not defined no-undef - 41875:9 error '$' is not defined no-undef - 41878:23 error 'html_encode' is not defined no-undef - 41881:23 error 'html_encode' is not defined no-undef - 41911:30 error 'use' is not defined no-undef - 41917:50 error 'def' is not defined no-undef - 41937:9 error '$' is not defined no-undef - 41944:13 error '$' is not defined no-undef - 41945:53 error 'html_encode' is not defined no-undef - 42015:38 error 'puter' is not defined no-undef - 42027:42 error 'puter' is not defined no-undef - 42041:53 error 'value' is defined but never used @typescript-eslint/no-unused-vars - 42045:42 error 'puter' is not defined no-undef - 42071:35 error 'i18n' is not defined no-undef - 42074:35 error 'i18n' is not defined no-undef - 42079:35 error 'i18n' is not defined no-undef - 42086:35 error 'i18n' is not defined no-undef - 42110:35 error 'i18n' is not defined no-undef - 42113:35 error 'i18n' is not defined no-undef - 42120:35 error 'i18n' is not defined no-undef - 42124:33 error 'i18n' is not defined no-undef - 42125:33 error 'i18n' is not defined no-undef - 42131:36 error 'i18n' is not defined no-undef - 42145:9 error '$' is not defined no-undef - 42182:28 error 'this_window' is defined but never used @typescript-eslint/no-unused-vars - 42231:24 error 'i18n' is not defined no-undef - 42237:33 error 'i18n' is not defined no-undef - 42239:89 error 'i18n' is not defined no-undef - 42246:29 error 'i18n' is not defined no-undef - 42248:85 error 'i18n' is not defined no-undef - 42256:60 error 'i18n' is not defined no-undef - 42258:25 error 'i18n' is not defined no-undef - 42262:118 error 'i18n' is not defined no-undef - 42263:119 error 'i18n' is not defined no-undef - 42271:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 42279:57 error 'i18n' is not defined no-undef - 42287:69 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 42295:50 error 'puter' is not defined no-undef - 42306:30 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 42307:42 error 'i18n' is not defined no-undef - 42312:17 error '$' is not defined no-undef - 42319:33 error 'i18n' is not defined no-undef - 42322:33 error 'i18n' is not defined no-undef - 42336:40 error 'i18n' is not defined no-undef - 42342:40 error 'i18n' is not defined no-undef - 42346:37 error '$' is not defined no-undef - 42372:53 error 'i18n' is not defined no-undef - 42400:26 error 'use' is not defined no-undef - 42405:46 error 'def' is not defined no-undef - 42460:9 error '$' is not defined no-undef - 42462:47 error 'html_encode' is not defined no-undef - 42536:16 error 'i18n' is not defined no-undef - 42542:16 error 'i18n' is not defined no-undef - 42548:16 error 'i18n' is not defined no-undef - 42554:16 error 'i18n' is not defined no-undef - 42563:24 error 'i18n' is not defined no-undef - 42582:11 error 'w' is assigned a value but never used @typescript-eslint/no-unused-vars - 42583:16 error 'i18n' is not defined no-undef - 42661:19 error 'i18n' is not defined no-undef - 42663:27 error 'i18n' is not defined no-undef - 42665:85 error 'i18n' is not defined no-undef - 42669:27 error 'i18n' is not defined no-undef - 42671:84 error 'i18n' is not defined no-undef - 42675:48 error 'i18n' is not defined no-undef - 42677:44 error 'i18n' is not defined no-undef - 42678:44 error 'i18n' is not defined no-undef - 42679:44 error 'i18n' is not defined no-undef - 42683:72 error 'i18n' is not defined no-undef - 42688:35 error 'i18n' is not defined no-undef - 42695:35 error 'i18n' is not defined no-undef - 42703:35 error 'i18n' is not defined no-undef - 42711:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 42720:69 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 42730:73 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 42736:9 error 'puter' is not defined no-undef - 42747:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 42748:25 error '$' is not defined no-undef - 42751:17 error 'puter' is not defined no-undef - 42761:21 error '$' is not defined no-undef - 42762:21 error '$' is not defined no-undef - 42763:25 error '$' is not defined no-undef - 42765:25 error '$' is not defined no-undef - 42767:25 error '$' is not defined no-undef - 42770:21 error '$' is not defined no-undef - 42771:21 error '$' is not defined no-undef - 42772:38 error '$' is not defined no-undef - 42773:25 error '$' is not defined no-undef - 42775:25 error '$' is not defined no-undef - 42777:25 error '$' is not defined no-undef - 42816:24 error 'i18n' is not defined no-undef - 42820:82 error 'i18n' is not defined no-undef - 42827:142 error 'html_encode' is not defined no-undef - 42827:177 error 'html_encode' is not defined no-undef - 42834:27 error '$' is not defined no-undef - 42844:27 error '$' is not defined no-undef - 42851:31 error '$' is not defined no-undef - 42903:22 error 'use' is not defined no-undef - 43099:20 error 'puter' is not defined no-undef - 43154:13 error '$' is not defined no-undef - 43163:16 error '$' is not defined no-undef - 43164:17 error '$' is not defined no-undef - 43168:9 error '$' is not defined no-undef - 43170:17 error '$' is not defined no-undef - 43190:65 error 'msg_id' is assigned a value but never used @typescript-eslint/no-unused-vars - 43259:9 error 'puter' is not defined no-undef - 43260:9 error '$' is not defined no-undef - 43372:25 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 43414:17 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 43420:17 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 43444:4 error 'jQuery' is not defined no-undef - 43445:5 error 'jQuery' is not defined no-undef - 43450:5 error 'jQuery' is not defined no-undef - 43455:5 error 'jQuery' is not defined no-undef - 43460:5 error 'jQuery' is not defined no-undef - 43469:5 error 'url' is assigned a value but never used @typescript-eslint/no-unused-vars - 43474:29 error 'puter' is not defined no-undef - 43475:9 error 'puter' is not defined no-undef - 43477:29 error 'puter' is not defined no-undef - 43478:9 error 'puter' is not defined no-undef - 43481:5 error 'puter' is not defined no-undef - 43493:8 error 'isMobile' is not defined no-undef - 43494:9 error '$' is not defined no-undef - 43495:13 error 'isMobile' is not defined no-undef - 43496:9 error '$' is not defined no-undef - 43498:9 error '$' is not defined no-undef - 43502:5 error '$' is not defined no-undef - 43506:5 error '$' is not defined no-undef - 43520:8 error 'url_paths' is not defined no-undef - 43520:58 error 'url_paths' is not defined no-undef - 43521:18 error 'url_paths' is not defined no-undef - 43547:9 error '$' is not defined no-undef - 43556:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 43708:28 error 'puter' is not defined no-undef - 43753:16 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 43769:32 error 'puter' is not defined no-undef - 43797:17 error 'puter' is not defined no-undef - 43825:24 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 43947:33 error '$' is not defined no-undef - 43959:59 error 'puter' is not defined no-undef - 43968:68 error 'puter' is not defined no-undef - 43994:69 error 'html_encode' is not defined no-undef - 43997:64 error 'i18n' is not defined no-undef - 44002:64 error 'i18n' is not defined no-undef - 44006:62 error '$' is not defined no-undef - 44012:49 error '$' is not defined no-undef - 44021:62 error '$' is not defined no-undef - 44024:45 error '$' is not defined no-undef - 44033:37 error '$' is not defined no-undef - 44037:41 error '$' is not defined no-undef - 44059:18 error 'puter' is not defined no-undef - 44062:42 error 'puter' is not defined no-undef - 44148:35 error 'html_encode' is not defined no-undef - 44154:9 error '$' is not defined no-undef - 44170:17 error '$' is not defined no-undef - 44170:45 error 'html_encode' is not defined no-undef - 44171:17 error '$' is not defined no-undef - 44173:17 error '$' is not defined no-undef - 44181:16 error '$' is not defined no-undef - 44189:5 error '$' is not defined no-undef - 44189:36 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 44191:9 error '$' is not defined no-undef - 44198:13 error 'puter' is not defined no-undef - 44227:20 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 44352:29 error '$' is not defined no-undef - 44364:55 error 'puter' is not defined no-undef - 44373:64 error 'puter' is not defined no-undef - 44400:65 error 'html_encode' is not defined no-undef - 44403:60 error 'i18n' is not defined no-undef - 44408:60 error 'i18n' is not defined no-undef - 44412:58 error '$' is not defined no-undef - 44418:45 error '$' is not defined no-undef - 44427:58 error '$' is not defined no-undef - 44430:41 error '$' is not defined no-undef - 44439:33 error '$' is not defined no-undef - 44443:37 error '$' is not defined no-undef - 44456:5 error '$' is not defined no-undef - 44457:9 error '$' is not defined no-undef - 44461:5 error '$' is not defined no-undef - 44466:40 error 'isMobile' is not defined no-undef - 44466:59 error 'isMobile' is not defined no-undef - 44470:12 error '$' is not defined no-undef - 44471:13 error '$' is not defined no-undef - 44476:13 error '$' is not defined no-undef - 44477:31 error '$' is not defined no-undef - 44484:13 error '$' is not defined no-undef - 44485:17 error '$' is not defined no-undef - 44486:17 error '$' is not defined no-undef - 44487:16 error '$' is not defined no-undef - 44488:17 error 'isMobile' is not defined no-undef - 44488:36 error 'isMobile' is not defined no-undef - 44489:17 error '$' is not defined no-undef - 44490:16 error '$' is not defined no-undef - 44492:13 error '$' is not defined no-undef - 44493:17 error '$' is not defined no-undef - 44498:9 error '$' is not defined no-undef - 44501:13 error '$' is not defined no-undef - 44503:13 error '$' is not defined no-undef - 44507:12 error '$' is not defined no-undef - 44510:22 error '$' is not defined no-undef - 44514:26 error '$' is not defined no-undef - 44526:5 error '$' is not defined no-undef - 44533:5 error '$' is not defined no-undef - 44535:12 error '$' is not defined no-undef - 44535:47 error '$' is not defined no-undef - 44542:16 error '$' is not defined no-undef - 44542:51 error '$' is not defined no-undef - 44544:13 error '$' is not defined no-undef - 44549:5 error '$' is not defined no-undef - 44550:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 44552:13 error '$' is not defined no-undef - 44557:5 error '$' is not defined no-undef - 44562:5 error '$' is not defined no-undef - 44569:12 error '$' is not defined no-undef - 44569:43 error '$' is not defined no-undef - 44579:44 error '$' is not defined no-undef - 44588:52 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 44591:17 error '_' is not defined no-undef - 44610:5 error '$' is not defined no-undef - 44610:45 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 44617:32 error 'i18n' is not defined no-undef - 44622:32 error 'i18n' is not defined no-undef - 44627:32 error 'i18n' is not defined no-undef - 44650:19 error '$' is not defined no-undef - 44664:16 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 44686:9 error '$' is not defined no-undef - 44688:9 error '$' is not defined no-undef - 44690:9 error '$' is not defined no-undef - 44692:9 error '$' is not defined no-undef - 44731:1 error '$' is not defined no-undef - 44731:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 44732:5 error '$' is not defined no-undef - 44735:1 error '$' is not defined no-undef - 44736:9 error '$' is not defined no-undef - 44736:50 error '$' is not defined no-undef - 44736:105 error '$' is not defined no-undef - 44737:9 error '$' is not defined no-undef - 44742:1 error '$' is not defined no-undef - 44753:17 error '$' is not defined no-undef - 44754:19 error '$' is not defined no-undef - 44755:5 error '$' is not defined no-undef - 44761:18 error '$' is not defined no-undef - 44762:20 error '$' is not defined no-undef - 44763:5 error '$' is not defined no-undef - 44769:1 error '$' is not defined no-undef - 44770:8 error '$' is not defined no-undef - 44814:1 error '$' is not defined no-undef - 44820:55 error '$' is not defined no-undef - 44820:85 error '$' is not defined no-undef - 44834:12 error '$' is not defined no-undef - 44836:16 error '$' is not defined no-undef - 44837:17 error '$' is not defined no-undef - 44839:17 error '$' is not defined no-undef - 44843:21 error '$' is not defined no-undef - 44848:37 error '$' is not defined no-undef - 44849:43 error '$' is not defined no-undef - 44852:57 error '$' is not defined no-undef - 44863:25 error '$' is not defined no-undef - 44865:25 error '$' is not defined no-undef - 44867:25 error '$' is not defined no-undef - 44867:65 error '$' is not defined no-undef - 44897:37 error '$' is not defined no-undef - 44898:17 error '$' is not defined no-undef - 44899:17 error '$' is not defined no-undef - 44902:31 error '$' is not defined no-undef - 44903:38 error '$' is not defined no-undef - 44925:17 error '$' is not defined no-undef - 44927:16 error '$' is not defined no-undef - 44928:37 error '$' is not defined no-undef - 44933:21 error '$' is not defined no-undef - 44934:37 error '$' is not defined no-undef - 44934:79 error '$' is not defined no-undef - 44939:21 error '$' is not defined no-undef - 44940:37 error '$' is not defined no-undef - 44941:43 error '$' is not defined no-undef - 44943:41 error '$' is not defined no-undef - 44944:23 error '$' is not defined no-undef - 44946:41 error '$' is not defined no-undef - 44952:21 error '$' is not defined no-undef - 44953:37 error '$' is not defined no-undef - 44954:43 error '$' is not defined no-undef - 44956:41 error '$' is not defined no-undef - 44957:23 error '$' is not defined no-undef - 44959:41 error '$' is not defined no-undef - 44965:21 error '$' is not defined no-undef - 44966:39 error '$' is not defined no-undef - 44967:17 error '$' is not defined no-undef - 44969:20 error '$' is not defined no-undef - 44970:21 error '$' is not defined no-undef - 44971:21 error '$' is not defined no-undef - 44972:48 error '$' is not defined no-undef - 44977:21 error '$' is not defined no-undef - 44979:38 error '$' is not defined no-undef - 44980:35 error '$' is not defined no-undef - 44982:17 error '$' is not defined no-undef - 44984:17 error '$' is not defined no-undef - 44986:37 error '$' is not defined no-undef - 44987:17 error '$' is not defined no-undef - 44988:17 error '$' is not defined no-undef - 44989:17 error '$' is not defined no-undef - 44994:21 error '$' is not defined no-undef - 44995:37 error '$' is not defined no-undef - 44996:17 error '$' is not defined no-undef - 45003:18 error '$' is not defined no-undef - 45003:48 error '$' is not defined no-undef - 45006:16 error '$' is not defined no-undef - 45007:33 error '$' is not defined no-undef - 45009:17 error '$' is not defined no-undef - 45010:17 error '$' is not defined no-undef - 45014:21 error '$' is not defined no-undef - 45015:33 error '$' is not defined no-undef - 45018:21 error '$' is not defined no-undef - 45019:33 error '$' is not defined no-undef - 45019:101 error '$' is not defined no-undef - 45022:21 error '$' is not defined no-undef - 45023:33 error '$' is not defined no-undef - 45026:33 error '$' is not defined no-undef - 45026:101 error '$' is not defined no-undef - 45037:33 error '$' is not defined no-undef - 45037:109 error '$' is not defined no-undef - 45061:17 error 'x_scroll' is assigned a value but never used @typescript-eslint/no-unused-vars - 45067:17 error 'y_scroll' is assigned a value but never used @typescript-eslint/no-unused-vars - 45074:20 error '$' is not defined no-undef - 45074:60 error '$' is not defined no-undef - 45085:21 error '$' is not defined no-undef - 45087:17 error '$' is not defined no-undef - 45097:17 error '$' is not defined no-undef - 45098:33 error '$' is not defined no-undef - 45099:55 error '$' is not defined no-undef - 45107:47 error '$' is not defined no-undef - 45112:47 error '$' is not defined no-undef - 45115:33 error '$' is not defined no-undef - 45116:13 error '$' is not defined no-undef - 45117:13 error '$' is not defined no-undef - 45128:10 error '$' is not defined no-undef - 45128:63 error '$' is not defined no-undef - 45130:12 error '$' is not defined no-undef - 45130:42 error '$' is not defined no-undef - 45130:75 error '$' is not defined no-undef - 45133:9 error '$' is not defined no-undef - 45138:32 error '$' is not defined no-undef - 45139:9 error '$' is not defined no-undef - 45140:9 error '$' is not defined no-undef - 45140:27 error '$' is not defined no-undef - 45141:9 error '$' is not defined no-undef - 45141:41 error '$' is not defined no-undef - 45146:32 error '$' is not defined no-undef - 45147:9 error '$' is not defined no-undef - 45157:9 error '$' is not defined no-undef - 45160:9 error '$' is not defined no-undef - 45161:13 error '$' is not defined no-undef - 45166:1 error '$' is not defined no-undef - 45173:31 error '$' is not defined no-undef - 45176:26 error 'i18n' is not defined no-undef - 45179:32 error 'i18n' is not defined no-undef - 45183:32 error 'i18n' is not defined no-undef - 45202:31 error '$' is not defined no-undef - 45205:26 error 'i18n' is not defined no-undef - 45208:32 error 'i18n' is not defined no-undef - 45212:32 error 'i18n' is not defined no-undef - 45221:37 error 'puter' is not defined no-undef - 45227:21 error '$' is not defined no-undef - 45228:21 error '$' is not defined no-undef - 45228:43 error 'html_encode' is not defined no-undef - 45229:21 error '$' is not defined no-undef - 45229:45 error 'html_encode' is not defined no-undef - 45235:31 error '$' is not defined no-undef - 45249:37 error '$' is not defined no-undef - 45249:67 error '$' is not defined no-undef - 45249:99 error '$' is not defined no-undef - 45260:32 error '$' is not defined no-undef - 45263:43 error '$' is not defined no-undef - 45268:24 error '$' is not defined no-undef - 45270:16 error '$' is not defined no-undef - 45280:24 error '$' is not defined no-undef - 45288:13 error '$' is not defined no-undef - 45290:13 error '$' is not defined no-undef - 45292:64 error '$' is not defined no-undef - 45300:42 error '$' is not defined no-undef - 45300:72 error '$' is not defined no-undef - 45300:104 error '$' is not defined no-undef - 45311:32 error '$' is not defined no-undef - 45314:43 error '$' is not defined no-undef - 45319:24 error '$' is not defined no-undef - 45321:16 error '$' is not defined no-undef - 45331:24 error '$' is not defined no-undef - 45339:13 error '$' is not defined no-undef - 45341:13 error '$' is not defined no-undef - 45350:1 error '$' is not defined no-undef - 45363:55 error '$' is not defined no-undef - 45363:85 error '$' is not defined no-undef - 45364:33 error '$' is not defined no-undef - 45366:33 error '$' is not defined no-undef - 45372:13 error '$' is not defined no-undef - 45383:30 error '$' is not defined no-undef - 45385:30 error '$' is not defined no-undef - 45389:13 error '$' is not defined no-undef - 45398:9 error '$' is not defined no-undef - 45399:9 error '$' is not defined no-undef - 45400:10 error '$' is not defined no-undef - 45401:10 error '$' is not defined no-undef - 45404:32 error '$' is not defined no-undef - 45406:32 error '$' is not defined no-undef - 45409:31 error '$' is not defined no-undef - 45415:24 error '$' is not defined no-undef - 45419:50 error '$' is not defined no-undef - 45419:82 error '$' is not defined no-undef - 45419:118 error '$' is not defined no-undef - 45429:55 error '$' is not defined no-undef - 45429:85 error '$' is not defined no-undef - 45431:32 error '$' is not defined no-undef - 45433:32 error '$' is not defined no-undef - 45436:31 error '$' is not defined no-undef - 45441:43 error '$' is not defined no-undef - 45450:26 error '$' is not defined no-undef - 45453:9 error '$' is not defined no-undef - 45461:27 error '$' is not defined no-undef - 45461:57 error '$' is not defined no-undef - 45472:12 error '$' is not defined no-undef - 45474:13 error '$' is not defined no-undef - 45476:27 error '$' is not defined no-undef - 45478:17 error '$' is not defined no-undef - 45486:17 error '$' is not defined no-undef - 45487:33 error '$' is not defined no-undef - 45488:13 error '$' is not defined no-undef - 45489:13 error '$' is not defined no-undef - 45490:13 error '$' is not defined no-undef - 45491:13 error '$' is not defined no-undef - 45492:16 error '$' is not defined no-undef - 45493:37 error '$' is not defined no-undef - 45503:31 error '$' is not defined no-undef - 45521:55 error '$' is not defined no-undef - 45521:85 error '$' is not defined no-undef - 45528:32 error 'determine_active_container_parent' is not defined no-undef - 45532:27 error '$' is not defined no-undef - 45612:7 error '_extensions' is assigned a value but never used @typescript-eslint/no-unused-vars - 45613:7 error '_types' is assigned a value but never used @typescript-eslint/no-unused-vars - 45615:7 error 'define' is assigned a value but never used @typescript-eslint/no-unused-vars - 45616:7 error 'getExtension' is assigned a value but never used @typescript-eslint/no-unused-vars - 45617:7 error 'getType' is assigned a value but never used @typescript-eslint/no-unused-vars - 45656:3 error 'CHAR_UPPERCASE_A' is assigned a value but never used @typescript-eslint/no-unused-vars - 45657:3 error 'CHAR_LOWERCASE_A' is assigned a value but never used @typescript-eslint/no-unused-vars - 45658:3 error 'CHAR_UPPERCASE_Z' is assigned a value but never used @typescript-eslint/no-unused-vars - 45659:3 error 'CHAR_LOWERCASE_Z' is assigned a value but never used @typescript-eslint/no-unused-vars - 45663:3 error 'CHAR_COLON' is assigned a value but never used @typescript-eslint/no-unused-vars - 45664:3 error 'CHAR_QUESTION_MARK' is assigned a value but never used @typescript-eslint/no-unused-vars - 45666:10 error 'isPathSeparator' is defined but never used @typescript-eslint/no-unused-vars - 46128:5 error 'validateObject' is not defined no-undef - 46171:19 error 'def' is not defined no-undef - 46243:49 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 46252:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 46278:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 46291:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 46426:21 error 'def' is not defined no-undef - 46473:66 error 'def' is not defined no-undef - 46668:15 error '__webpack_exports__' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/IPC.js - 90:31 error '$' is not defined no-undef - 95:22 error '$' is not defined no-undef - 100:30 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 137:9 error 'puter' is not defined no-undef - 184:22 error 'html_encode' is not defined no-undef - 185:26 error 'html_encode' is not defined no-undef - 234:124 error 'html_encode' is not defined no-undef - 238:134 error 'i18n' is not defined no-undef - 259:9 error '$' is not defined no-undef - 262:25 error '$' is not defined no-undef - 265:13 error '$' is not defined no-undef - 268:17 error '$' is not defined no-undef - 304:21 error '$' is not defined no-undef - 318:9 error 'puter' is not defined no-undef - 333:9 error 'puter' is not defined no-undef - 349:9 error 'puter' is not defined no-undef - 371:9 error '$' is not defined no-undef - 405:9 error '$' is not defined no-undef - 419:9 error '$' is not defined no-undef - 424:13 error 'allowed_file_types' is assigned a value but never used @typescript-eslint/no-unused-vars - 454:25 error '$' is not defined no-undef - 454:57 error 'html_encode' is not defined no-undef - 464:9 error '$' is not defined no-undef - 464:54 error 'html_encode' is not defined no-undef - 486:33 error '$' is not defined no-undef - 489:26 error '$' is not defined no-undef - 495:23 error '$' is not defined no-undef - 511:26 error 'puter' is not defined no-undef - 535:27 error 'html_encode' is not defined no-undef - 536:128 error 'html_encode' is not defined no-undef - 537:142 error 'html_encode' is not defined no-undef - 544:25 error '$' is not defined no-undef - 558:9 error '$' is not defined no-undef - 564:9 error 'set_menu_item_prop' is not defined no-undef - 570:9 error 'set_menu_item_prop' is not defined no-undef - 576:9 error 'set_menu_item_prop' is not defined no-undef - 582:9 error 'set_menu_item_prop' is not defined no-undef - 588:9 error 'set_menu_item_prop' is not defined no-undef - 596:26 error 'puter' is not defined no-undef - 604:24 error '$' is not defined no-undef - 606:24 error '$' is not defined no-undef - 606:68 error '$' is not defined no-undef - 608:13 error '$' is not defined no-undef - 637:27 error 'html_encode' is not defined no-undef - 640:128 error 'html_encode' is not defined no-undef - 641:142 error 'html_encode' is not defined no-undef - 662:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 666:13 error '$' is not defined no-undef - 698:23 error 'I' is assigned a value but never used @typescript-eslint/no-unused-vars - 700:31 error 'html_encode' is not defined no-undef - 701:33 error '$' is not defined no-undef - 711:25 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 723:25 error '$' is not defined no-undef - 762:25 error '$' is not defined no-undef - 762:57 error 'html_encode' is not defined no-undef - 776:9 error '$' is not defined no-undef - 789:25 error '$' is not defined no-undef - 789:57 error 'html_encode' is not defined no-undef - 804:9 error '$' is not defined no-undef - 818:25 error '$' is not defined no-undef - 818:57 error 'html_encode' is not defined no-undef - 833:13 error '$' is not defined no-undef - 841:13 error '$' is not defined no-undef - 856:25 error '$' is not defined no-undef - 856:57 error 'html_encode' is not defined no-undef - 875:13 error '$' is not defined no-undef - 887:13 error '$' is not defined no-undef - 902:25 error '$' is not defined no-undef - 902:57 error 'html_encode' is not defined no-undef - 921:13 error '$' is not defined no-undef - 936:25 error '$' is not defined no-undef - 936:57 error 'html_encode' is not defined no-undef - 955:13 error '$' is not defined no-undef - 982:9 error 'puter' is not defined no-undef - 990:52 error 'privacy_aware_path' is not defined no-undef - 1020:9 error 'puter' is not defined no-undef - 1025:17 error 'puter' is not defined no-undef - 1042:21 error 'puter' is not defined no-undef - 1093:9 error '$' is not defined no-undef - 1121:9 error '$' is not defined no-undef - 1149:9 error '$' is not defined no-undef - 1165:19 error '$' is not defined no-undef - 1197:13 error '$' is not defined no-undef - 1215:9 error '$' is not defined no-undef - 1232:17 error '$' is not defined no-undef - 1261:47 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 1283:47 error 'puter' is not defined no-undef - 1292:56 error 'puter' is not defined no-undef - 1307:43 error 'privacy_aware_path' is not defined no-undef - 1311:29 error '$' is not defined no-undef - 1315:29 error '$' is not defined no-undef - 1318:43 error '$' is not defined no-undef - 1318:75 error 'html_encode' is not defined no-undef - 1333:29 error '$' is not defined no-undef - 1333:61 error 'html_encode' is not defined no-undef - 1334:57 error '$' is not defined no-undef - 1334:87 error '$' is not defined no-undef - 1336:29 error '$' is not defined no-undef - 1343:57 error 'html_encode' is not defined no-undef - 1346:52 error 'i18n' is not defined no-undef - 1351:52 error 'i18n' is not defined no-undef - 1355:50 error '$' is not defined no-undef - 1361:37 error '$' is not defined no-undef - 1369:50 error '$' is not defined no-undef - 1372:33 error '$' is not defined no-undef - 1382:21 error '$' is not defined no-undef - 1386:25 error '$' is not defined no-undef - 1429:17 error 'overwrite' is assigned a value but never used @typescript-eslint/no-unused-vars - 1442:23 error 'res' is assigned a value but never used @typescript-eslint/no-unused-vars - 1452:39 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 1471:39 error 'puter' is not defined no-undef - 1477:48 error 'puter' is not defined no-undef - 1490:35 error 'privacy_aware_path' is not defined no-undef - 1493:21 error '$' is not defined no-undef - 1498:49 error 'html_encode' is not defined no-undef - 1501:44 error 'i18n' is not defined no-undef - 1505:44 error 'i18n' is not defined no-undef - 1592:13 error '$' is not defined no-undef - 1608:9 error '$' is not defined no-undef - 1617:11 error 'puter' is not defined no-undef - 1618:28 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/ActionCard.js - 21:19 error 'use' is not defined no-undef - 23:16 error 'def' is not defined no-undef - 39:9 error '$' is not defined no-undef - 56:17 error 'listen' is defined but never used @typescript-eslint/no-unused-vars - 57:9 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/Button.js - 21:19 error 'use' is not defined no-undef - 23:16 error 'def' is not defined no-undef - 57:13 error '$' is not defined no-undef - 59:21 error 'html_encode' is not defined no-undef - 65:9 error '$' is not defined no-undef - 67:17 error 'html_encode' is not defined no-undef - 75:29 error '$' is not defined no-undef - 85:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/CodeEntryView.js - 21:19 error 'use' is not defined no-undef - 23:16 error 'def' is not defined no-undef - 76:32 error 'i18n' is not defined no-undef - 78:9 error '$' is not defined no-undef - 100:9 error '$' is not defined no-undef - 105:35 error '$' is not defined no-undef - 106:13 error '$' is not defined no-undef - 112:17 error '$' is not defined no-undef - 121:29 error '$' is not defined no-undef - 130:36 error 'i18n' is not defined no-undef - 135:15 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 136:9 error '$' is not defined no-undef - 140:29 error '$' is not defined no-undef - 188:36 error 'i18n' is not defined no-undef - 189:13 error '$' is not defined no-undef - 193:17 error '$' is not defined no-undef - 197:17 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/ConfirmationsView.js - 21:19 error 'use' is not defined no-undef - 26:16 error 'def' is not defined no-undef - 53:9 error '$' is not defined no-undef - 65:44 error 'i18n' is not defined no-undef - 70:17 error 'listen' is defined but never used @typescript-eslint/no-unused-vars - 72:9 error '$' is not defined no-undef - 73:35 error '$' is not defined no-undef - 75:17 error '$' is not defined no-undef - 77:17 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/Flexer.js - 21:19 error 'use' is not defined no-undef - 27:16 error 'def' is not defined no-undef - 47:9 error '$' is not defined no-undef - 59:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/Frame.js - 21:19 error 'use' is not defined no-undef - 23:16 error 'def' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/Glyph.js - 23:16 error 'def' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/JustHTML.js - 21:19 error 'use' is not defined no-undef - 26:16 error 'def' is not defined no-undef - 31:9 error '$' is not defined no-undef - 35:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/JustID.js - 1:19 error 'use' is not defined no-undef - 3:16 error 'def' is not defined no-undef - 12:15 error 'size' is assigned a value but never used @typescript-eslint/no-unused-vars - 13:9 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/NotifCard.js - 21:19 error 'use' is not defined no-undef - 23:16 error 'def' is not defined no-undef - 33:9 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/PasswordEntry.js - 21:19 error 'use' is not defined no-undef - 23:16 error 'def' is not defined no-undef - 100:9 error '$' is not defined no-undef - 104:93 error 'i18n' is not defined no-undef - 118:9 error '$' is not defined no-undef - 123:35 error '$' is not defined no-undef - 124:13 error '$' is not defined no-undef - 130:17 error '$' is not defined no-undef - 134:23 error '$' is not defined no-undef - 141:13 error '$' is not defined no-undef - 148:9 error '$' is not defined no-undef - 152:13 error '$' is not defined no-undef - 153:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/QRCode.js - 21:19 error 'use' is not defined no-undef - 24:16 error 'def' is not defined no-undef - 58:9 error '$' is not defined no-undef - 67:17 error 'QRCode' is not defined no-undef - 67:24 error '$' is not defined no-undef - 72:31 error 'QRCode' is not defined no-undef - 76:17 error '$' is not defined no-undef - 77:17 error '$' is not defined no-undef - 84:32 error 'i18n' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/RecoveryCodeEntryView.js - 21:19 error 'use' is not defined no-undef - 23:16 error 'def' is not defined no-undef - 70:9 error '$' is not defined no-undef - 75:87 error 'i18n' is not defined no-undef - 83:9 error '$' is not defined no-undef - 88:35 error '$' is not defined no-undef - 89:13 error '$' is not defined no-undef - 95:17 error '$' is not defined no-undef - 99:23 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/RecoveryCodesView.js - 21:19 error 'use' is not defined no-undef - 23:16 error 'def' is not defined no-undef - 79:9 error '$' is not defined no-undef - 85:65 error 'i18n' is not defined no-undef - 86:66 error 'i18n' is not defined no-undef - 95:17 error '$' is not defined no-undef - 96:50 error 'html_encode' is not defined no-undef - 101:9 error '$' is not defined no-undef - 106:9 error '$' is not defined no-undef - 107:28 error '$' is not defined no-undef - 108:33 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/Slider.js - 21:19 error 'use' is not defined no-undef - 26:16 error 'def' is not defined no-undef - 81:9 error '$' is not defined no-undef - 83:47 error 'html_encode' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/Spinner.js - 21:19 error 'use' is not defined no-undef - 23:16 error 'def' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/StepHeading.js - 21:19 error 'use' is not defined no-undef - 28:16 error 'def' is not defined no-undef - 70:9 error '$' is not defined no-undef - 73:23 error 'html_encode' is not defined no-undef - 76:23 error 'html_encode' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/StepView.js - 21:19 error 'use' is not defined no-undef - 23:16 error 'def' is not defined no-undef - 41:9 error '$' is not defined no-undef - 56:13 error '$' is not defined no-undef - 60:9 error '$' is not defined no-undef - 66:17 error '$' is not defined no-undef - 70:13 error '$' is not defined no-undef - 75:9 error '$' is not defined no-undef - 82:9 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/StringView.js - 21:19 error 'use' is not defined no-undef - 27:16 error 'def' is not defined no-undef - 47:9 error '$' is not defined no-undef - 54:13 error '$' is not defined no-undef - 55:53 error 'html_encode' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/Table.js - 21:19 error 'use' is not defined no-undef - 26:16 error 'def' is not defined no-undef - 72:9 error '$' is not defined no-undef - 86:13 error '$' is not defined no-undef - 91:13 error '$' is not defined no-undef - 95:27 error '$' is not defined no-undef - 96:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Components/TestView.js - 21:19 error 'use' is not defined no-undef - 26:16 error 'def' is not defined no-undef - 38:9 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/PuterDialog.js - 22:28 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 23:24 error Promise executor functions should not be async no-async-promise-executor - 29:80 error 'i18n' is not defined no-undef - 30:114 error 'i18n' is not defined no-undef - 32:59 error 'i18n' is not defined no-undef - 33:49 error 'i18n' is not defined no-undef - 69:9 error '$' is not defined no-undef - 69:78 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 70:13 error '$' is not defined no-undef - 74:9 error '$' is not defined no-undef - 74:85 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 75:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Settings/UITabAbout.js - 30:46 error 'i18n' is not defined no-undef - 34:76 error 'i18n' is not defined no-undef - 36:78 error 'i18n' is not defined no-undef - 38:77 error 'i18n' is not defined no-undef - 40:79 error 'i18n' is not defined no-undef - 42:60 error 'i18n' is not defined no-undef - 72:86 error 'i18n' is not defined no-undef - 75:141 error 'i18n' is not defined no-undef - 76:140 error 'i18n' is not defined no-undef - 77:129 error 'i18n' is not defined no-undef - 78:100 error 'i18n' is not defined no-undef - 79:146 error 'i18n' is not defined no-undef - 80:146 error 'i18n' is not defined no-undef - 81:103 error 'i18n' is not defined no-undef - 82:99 error 'i18n' is not defined no-undef - 83:119 error 'i18n' is not defined no-undef - 84:134 error 'i18n' is not defined no-undef - 85:133 error 'i18n' is not defined no-undef - 86:131 error 'i18n' is not defined no-undef - 88:135 error 'i18n' is not defined no-undef - 97:9 error 'puter' is not defined no-undef - 100:58 error 'html_encode' is not defined no-undef - 100:101 error 'html_encode' is not defined no-undef - 100:147 error 'html_encode' is not defined no-undef - 108:16 error '$' is not defined no-undef - 109:17 error '$' is not defined no-undef - 113:64 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 114:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Settings/UITabAccount.js - 38:103 error 'html_encode' is not defined no-undef - 45:33 error 'i18n' is not defined no-undef - 47:89 error 'i18n' is not defined no-undef - 55:56 error 'i18n' is not defined no-undef - 56:87 error 'html_encode' is not defined no-undef - 59:85 error 'i18n' is not defined no-undef - 67:60 error 'i18n' is not defined no-undef - 68:93 error 'html_encode' is not defined no-undef - 71:86 error 'i18n' is not defined no-undef - 78:60 error 'i18n' is not defined no-undef - 80:98 error 'i18n' is not defined no-undef - 87:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 97:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 107:64 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 117:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 127:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 137:80 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 156:39 error 'puter' is not defined no-undef - 172:90 error 'html_encode' is not defined no-undef - 173:21 error '$' is not defined no-undef - 173:74 error 'html_encode' is not defined no-undef - 174:21 error '$' is not defined no-undef - 176:21 error 'update_profile' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Settings/UITabLanguage.js - 28:24 error 'i18n' is not defined no-undef - 32:82 error 'i18n' is not defined no-undef - 39:142 error 'html_encode' is not defined no-undef - 39:177 error 'html_encode' is not defined no-undef - 46:27 error '$' is not defined no-undef - 56:27 error '$' is not defined no-undef - 63:31 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Settings/UITabPersonalization.js - 30:19 error 'i18n' is not defined no-undef - 32:27 error 'i18n' is not defined no-undef - 34:85 error 'i18n' is not defined no-undef - 38:27 error 'i18n' is not defined no-undef - 40:84 error 'i18n' is not defined no-undef - 44:48 error 'i18n' is not defined no-undef - 46:44 error 'i18n' is not defined no-undef - 47:44 error 'i18n' is not defined no-undef - 48:44 error 'i18n' is not defined no-undef - 52:72 error 'i18n' is not defined no-undef - 57:35 error 'i18n' is not defined no-undef - 64:35 error 'i18n' is not defined no-undef - 72:35 error 'i18n' is not defined no-undef - 80:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 89:69 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 99:73 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 105:9 error 'puter' is not defined no-undef - 116:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 117:25 error '$' is not defined no-undef - 120:17 error 'puter' is not defined no-undef - 130:21 error '$' is not defined no-undef - 131:21 error '$' is not defined no-undef - 132:25 error '$' is not defined no-undef - 134:25 error '$' is not defined no-undef - 136:25 error '$' is not defined no-undef - 139:21 error '$' is not defined no-undef - 140:21 error '$' is not defined no-undef - 141:38 error '$' is not defined no-undef - 142:25 error '$' is not defined no-undef - 144:25 error '$' is not defined no-undef - 146:25 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Settings/UITabSecurity.js - 32:24 error 'i18n' is not defined no-undef - 38:33 error 'i18n' is not defined no-undef - 40:89 error 'i18n' is not defined no-undef - 47:29 error 'i18n' is not defined no-undef - 49:85 error 'i18n' is not defined no-undef - 57:60 error 'i18n' is not defined no-undef - 59:25 error 'i18n' is not defined no-undef - 63:118 error 'i18n' is not defined no-undef - 64:119 error 'i18n' is not defined no-undef - 72:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 80:57 error 'i18n' is not defined no-undef - 88:69 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 96:50 error 'puter' is not defined no-undef - 107:30 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 108:42 error 'i18n' is not defined no-undef - 113:17 error '$' is not defined no-undef - 120:33 error 'i18n' is not defined no-undef - 123:33 error 'i18n' is not defined no-undef - 137:40 error 'i18n' is not defined no-undef - 143:40 error 'i18n' is not defined no-undef - 147:37 error '$' is not defined no-undef - 173:53 error 'i18n' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Settings/UITabUsage.js - 27:19 error 'i18n' is not defined no-undef - 29:68 error 'i18n' is not defined no-undef - 34:122 error 'i18n' is not defined no-undef - 43:12 error '$el_window' is defined but never used @typescript-eslint/no-unused-vars - 44:9 error '$' is not defined no-undef - 67:80 error 'html_encode' is not defined no-undef - 81:46 error Unexpected constant truthiness on the left-hand side of a `||` expression no-constant-binary-expression - 91:84 error 'html_encode' is not defined no-undef - 91:118 error 'html_encode' is not defined no-undef - 102:84 error 'html_encode' is not defined no-undef - 102:118 error 'html_encode' is not defined no-undef - 103:86 error 'i18n' is not defined no-undef - 103:122 error 'i18n' is not defined no-undef - 111:17 error '$' is not defined no-undef - 116:9 error '$' is not defined no-undef - 137:21 error '$' is not defined no-undef - 138:21 error '$' is not defined no-undef - 144:17 error '$' is not defined no-undef - 145:17 error '$' is not defined no-undef - 146:17 error '$' is not defined no-undef - 151:17 error '$' is not defined no-undef - 152:17 error '$' is not defined no-undef - 154:21 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Settings/UIWindowChangeEmail.js - 41:67 error 'i18n' is not defined no-undef - 46:28 error 'i18n' is not defined no-undef - 51:99 error 'i18n' is not defined no-undef - 55:16 error 'i18n' is not defined no-undef - 76:13 error '$' is not defined no-undef - 90:5 error '$' is not defined no-undef - 90:65 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 92:9 error '$' is not defined no-undef - 94:27 error '$' is not defined no-undef - 95:15 error 'password' is assigned a value but never used @typescript-eslint/no-unused-vars - 95:26 error '$' is not defined no-undef - 98:13 error '$' is not defined no-undef - 98:55 error 'i18n' is not defined no-undef - 99:13 error '$' is not defined no-undef - 103:9 error '$' is not defined no-undef - 106:9 error '$' is not defined no-undef - 108:9 error '$' is not defined no-undef - 110:9 error '$' is not defined no-undef - 122:32 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 123:17 error '$' is not defined no-undef - 123:61 error 'i18n' is not defined no-undef - 124:17 error '$' is not defined no-undef - 125:17 error '$' is not defined no-undef - 129:17 error '$' is not defined no-undef - 131:17 error '$' is not defined no-undef - 134:17 error '$' is not defined no-undef - 134:59 error 'html_encode' is not defined no-undef - 135:17 error '$' is not defined no-undef - 137:17 error '$' is not defined no-undef - 139:17 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Settings/UIWindowConfirmUserDeletion.js - 24:24 error Promise executor functions should not be async no-async-promise-executor - 24:31 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 31:69 error 'i18n' is not defined no-undef - 32:98 error 'i18n' is not defined no-undef - 33:95 error 'i18n' is not defined no-undef - 37:20 error 'i18n' is not defined no-undef - 53:32 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 69:9 error '$' is not defined no-undef - 70:13 error '$' is not defined no-undef - 73:9 error '$' is not defined no-undef - 74:13 error '$' is not defined no-undef - 77:9 error '$' is not defined no-undef - 79:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Settings/UIWindowFinalizeUserDeletion.js - 23:24 error Promise executor functions should not be async no-async-promise-executor - 23:31 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 33:73 error 'i18n' is not defined no-undef - 37:97 error 'i18n' is not defined no-undef - 38:102 error 'i18n' is not defined no-undef - 39:99 error 'i18n' is not defined no-undef - 47:73 error 'i18n' is not defined no-undef - 51:100 error 'i18n' is not defined no-undef - 52:102 error 'i18n' is not defined no-undef - 53:99 error 'i18n' is not defined no-undef - 58:20 error 'i18n' is not defined no-undef - 74:32 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 86:9 error '$' is not defined no-undef - 87:13 error '$' is not defined no-undef - 90:9 error '$' is not defined no-undef - 91:13 error '$' is not defined no-undef - 94:9 error '$' is not defined no-undef - 95:13 error '$' is not defined no-undef - 98:33 error '$' is not defined no-undef - 101:57 error 'i18n' is not defined no-undef - 102:21 error '$' is not defined no-undef - 102:62 error 'i18n' is not defined no-undef - 103:21 error '$' is not defined no-undef - 109:20 error '$' is not defined no-undef - 110:21 error '$' is not defined no-undef - 110:62 error 'i18n' is not defined no-undef - 111:21 error '$' is not defined no-undef - 117:13 error '$' is not defined no-undef - 126:31 error '$' is not defined no-undef - 133:25 error '$' is not defined no-undef - 133:66 error 'i18n' is not defined no-undef - 134:25 error '$' is not defined no-undef - 145:25 error '$' is not defined no-undef - 145:66 error 'html_encode' is not defined no-undef - 146:25 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/Settings/UIWindowSettings.js - 23:1 error 'def' is not defined no-undef - 26:24 error Promise executor functions should not be async no-async-promise-executor - 44:65 error 'i18n' is not defined no-undef - 50:216 error 'i18n' is not defined no-undef - 106:28 error '$' is not defined no-undef - 108:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 121:9 error '$' is not defined no-undef - 122:27 error '$' is not defined no-undef - 144:1 error '$' is not defined no-undef - 146:5 error '$' is not defined no-undef - 147:5 error '$' is not defined no-undef - 150:9 error '$' is not defined no-undef - 151:19 error '$' is not defined no-undef - 156:1 error '$' is not defined no-undef - 156:60 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 158:5 error '$' is not defined no-undef - 161:9 error '$' is not defined no-undef - 169:1 error '$' is not defined no-undef - 172:10 error '$' is not defined no-undef - 172:62 error '$' is not defined no-undef - 172:119 error '$' is not defined no-undef - 172:169 error '$' is not defined no-undef - 173:9 error '$' is not defined no-undef - 174:9 error '$' is not defined no-undef - 177:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIAlert.js - 36:24 error Promise executor functions should not be async no-async-promise-executor - 40:25 error 'i18n' is not defined no-undef - 49:32 error 'html_encode' is not defined no-undef - 61:53 error 'html_encode' is not defined no-undef - 68:67 error 'html_encode' is not defined no-undef - 69:47 error 'html_encode' is not defined no-undef - 70:47 error 'html_encode' is not defined no-undef - 72:36 error 'html_encode' is not defined no-undef - 110:9 error '$' is not defined no-undef - 115:9 error '$' is not defined no-undef - 118:21 error '$' is not defined no-undef - 119:13 error '$' is not defined no-undef - 125:1 error 'def' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIContextMenu.js - 344:41 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 344:44 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 361:4 error 'jQuery' is not defined no-undef - 443:5 error '$' is not defined no-undef - 457:85 error '$' is not defined no-undef - 495:65 error 'html_encode' is not defined no-undef - 496:72 error 'html_encode' is not defined no-undef - 498:65 error 'html_encode' is not defined no-undef - 498:169 error 'html_encode' is not defined no-undef - 507:5 error '$' is not defined no-undef - 511:24 error '$' is not defined no-undef - 512:25 error '$' is not defined no-undef - 519:12 error 'isMobile' is not defined no-undef - 519:30 error 'isMobile' is not defined no-undef - 542:22 error '$' is not defined no-undef - 556:5 error '$' is not defined no-undef - 566:9 error '$' is not defined no-undef - 571:9 error '$' is not defined no-undef - 573:9 error '$' is not defined no-undef - 575:9 error '$' is not defined no-undef - 579:5 error '$' is not defined no-undef - 583:9 error '$' is not defined no-undef - 583:71 error '$' is not defined no-undef - 584:13 error '$' is not defined no-undef - 588:9 error '$' is not defined no-undef - 592:5 error '$' is not defined no-undef - 595:26 error '$' is not defined no-undef - 595:87 error '$' is not defined no-undef - 597:41 error '$' is not defined no-undef - 598:27 error '$' is not defined no-undef - 601:31 error '$' is not defined no-undef - 601:91 error '$' is not defined no-undef - 602:27 error '$' is not defined no-undef - 605:13 error '$' is not defined no-undef - 617:5 error '$' is not defined no-undef - 624:20 error '$' is not defined no-undef - 624:55 error '$' is not defined no-undef - 631:26 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 643:24 error '$' is not defined no-undef - 645:13 error '$' is not defined no-undef - 647:13 error '$' is not defined no-undef - 649:13 error '$' is not defined no-undef - 651:13 error '$' is not defined no-undef - 656:20 error '$' is not defined no-undef - 659:24 error '$' is not defined no-undef - 659:63 error '$' is not defined no-undef - 661:25 error '$' is not defined no-undef - 663:25 error '$' is not defined no-undef - 667:29 error 'isMobile' is not defined no-undef - 667:47 error 'isMobile' is not defined no-undef - 677:59 error '$' is not defined no-undef - 680:49 error '$' is not defined no-undef - 695:16 error '$' is not defined no-undef - 696:17 error '$' is not defined no-undef - 696:56 error '$' is not defined no-undef - 698:17 error '$' is not defined no-undef - 703:13 error '$' is not defined no-undef - 708:5 error '$' is not defined no-undef - 716:5 error '$' is not defined no-undef - 724:9 error '$' is not defined no-undef - 725:9 error '$' is not defined no-undef - 726:9 error '$' is not defined no-undef - 729:5 error '$' is not defined no-undef - 734:13 error '$' is not defined no-undef - 737:13 error '$' is not defined no-undef - 739:13 error '$' is not defined no-undef - 740:16 error '$' is not defined no-undef - 746:5 error '$' is not defined no-undef - 752:5 error '$' is not defined no-undef - 752:47 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 753:9 error '$' is not defined no-undef - 757:5 error '$' is not defined no-undef - 757:47 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 777:5 error '$' is not defined no-undef - 779:5 error '$' is not defined no-undef - 781:5 error '$' is not defined no-undef - 784:1 error '$' is not defined no-undef - 786:5 error '$' is not defined no-undef - 789:1 error '$' is not defined no-undef - 789:56 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 791:5 error '$' is not defined no-undef - 792:9 error '$' is not defined no-undef - 796:1 error '$' is not defined no-undef - 796:61 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 796:64 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 799:1 error '$' is not defined no-undef - 799:64 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 801:5 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIDesktop.js - 51:5 error 'channel' is not defined no-undef - 51:34 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 56:5 error 'puter' is not defined no-undef - 67:43 error 'html_encode' is not defined no-undef - 84:43 error 'html_encode' is not defined no-undef - 93:13 error 'puter' is not defined no-undef - 97:21 error 'io' is not defined no-undef - 159:9 error '$' is not defined no-undef - 159:31 error 'html_encode' is not defined no-undef - 160:9 error '$' is not defined no-undef - 160:33 error 'html_encode' is not defined no-undef - 163:13 error '$' is not defined no-undef - 163:37 error 'html_encode' is not defined no-undef - 171:37 error 'get_profile_picture' is not defined no-undef - 189:50 error 'puter' is not defined no-undef - 195:27 error 'notif' is defined but never used @typescript-eslint/no-unused-vars - 221:41 error 'get_profile_picture' is not defined no-undef - 238:54 error 'puter' is not defined no-undef - 246:31 error 'notif' is defined but never used @typescript-eslint/no-unused-vars - 263:9 error '$' is not defined no-undef - 264:9 error 'update_tab_notif_count_badge' is not defined no-undef - 276:37 error '_' is not defined no-undef - 292:9 error '$' is not defined no-undef - 297:13 error '$' is not defined no-undef - 308:9 error '$' is not defined no-undef - 308:30 error 'html_encode' is not defined no-undef - 308:73 error 'html_encode' is not defined no-undef - 312:9 error '$' is not defined no-undef - 313:9 error '$' is not defined no-undef - 316:9 error '$' is not defined no-undef - 316:62 error 'html_encode' is not defined no-undef - 317:9 error '$' is not defined no-undef - 317:52 error 'html_encode' is not defined no-undef - 320:9 error '$' is not defined no-undef - 320:58 error 'html_encode' is not defined no-undef - 321:9 error '$' is not defined no-undef - 321:51 error 'html_encode' is not defined no-undef - 324:9 error '$' is not defined no-undef - 324:66 error 'html_encode' is not defined no-undef - 325:9 error '$' is not defined no-undef - 325:69 error 'html_encode' is not defined no-undef - 329:9 error '$' is not defined no-undef - 330:9 error '$' is not defined no-undef - 333:9 error '$' is not defined no-undef - 333:26 error 'html_encode' is not defined no-undef - 334:13 error '$' is not defined no-undef - 335:16 error '$' is not defined no-undef - 336:17 error '$' is not defined no-undef - 340:9 error '$' is not defined no-undef - 340:27 error 'html_encode' is not defined no-undef - 341:33 error '_' is not defined no-undef - 341:43 error '$' is not defined no-undef - 342:13 error '$' is not defined no-undef - 346:9 error '$' is not defined no-undef - 350:9 error '$' is not defined no-undef - 353:9 error '$' is not defined no-undef - 354:37 error '$' is not defined no-undef - 354:94 error '$' is not defined no-undef - 375:9 error '$' is not defined no-undef - 375:43 error 'html_encode' is not defined no-undef - 375:107 error 'html_encode' is not defined no-undef - 378:9 error '$' is not defined no-undef - 380:34 error '$' is not defined no-undef - 382:13 error '$' is not defined no-undef - 384:13 error '$' is not defined no-undef - 384:45 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 392:13 error '$' is not defined no-undef - 392:37 error 'html_encode' is not defined no-undef - 394:13 error '$' is not defined no-undef - 394:38 error 'html_encode' is not defined no-undef - 400:13 error '$' is not defined no-undef - 400:38 error 'html_encode' is not defined no-undef - 400:91 error 'html_encode' is not defined no-undef - 401:49 error '$' is not defined no-undef - 406:13 error '$' is not defined no-undef - 411:17 error '$' is not defined no-undef - 413:17 error '$' is not defined no-undef - 421:13 error '$' is not defined no-undef - 428:23 error '$' is not defined no-undef - 428:55 error 'html_encode' is not defined no-undef - 453:38 error '$' is not defined no-undef - 453:70 error 'html_encode' is not defined no-undef - 454:49 error '$' is not defined no-undef - 454:71 error 'html_encode' is not defined no-undef - 471:51 error '$' is not defined no-undef - 471:91 error '$' is not defined no-undef - 475:9 error '$' is not defined no-undef - 475:41 error 'html_encode' is not defined no-undef - 476:37 error '$' is not defined no-undef - 476:67 error '$' is not defined no-undef - 512:9 error '$' is not defined no-undef - 512:30 error 'html_encode' is not defined no-undef - 512:73 error 'html_encode' is not defined no-undef - 516:9 error '$' is not defined no-undef - 519:9 error '$' is not defined no-undef - 519:62 error 'html_encode' is not defined no-undef - 520:9 error '$' is not defined no-undef - 520:52 error 'html_encode' is not defined no-undef - 523:9 error '$' is not defined no-undef - 523:58 error 'html_encode' is not defined no-undef - 524:9 error '$' is not defined no-undef - 524:51 error 'html_encode' is not defined no-undef - 527:9 error '$' is not defined no-undef - 527:66 error 'html_encode' is not defined no-undef - 528:9 error '$' is not defined no-undef - 528:69 error 'html_encode' is not defined no-undef - 532:9 error '$' is not defined no-undef - 533:9 error '$' is not defined no-undef - 536:9 error '$' is not defined no-undef - 536:26 error 'html_encode' is not defined no-undef - 537:13 error '$' is not defined no-undef - 538:16 error '$' is not defined no-undef - 539:17 error '$' is not defined no-undef - 543:9 error '$' is not defined no-undef - 543:27 error 'html_encode' is not defined no-undef - 544:33 error '_' is not defined no-undef - 544:43 error '$' is not defined no-undef - 545:13 error '$' is not defined no-undef - 549:9 error '$' is not defined no-undef - 553:9 error '$' is not defined no-undef - 556:9 error '$' is not defined no-undef - 557:37 error '$' is not defined no-undef - 557:94 error '$' is not defined no-undef - 563:12 error '_' is not defined no-undef - 582:13 error '$' is not defined no-undef - 593:13 error '$' is not defined no-undef - 596:13 error '$' is not defined no-undef - 596:45 error 'html_encode' is not defined no-undef - 597:41 error '$' is not defined no-undef - 597:71 error '$' is not defined no-undef - 602:27 error '$' is not defined no-undef - 602:59 error 'html_encode' is not defined no-undef - 620:13 error '$' is not defined no-undef - 620:45 error 'html_encode' is not defined no-undef - 621:41 error '$' is not defined no-undef - 621:71 error '$' is not defined no-undef - 642:30 error 'html_encode' is not defined no-undef - 647:5 error 'puter' is not defined no-undef - 656:5 error 'puter' is not defined no-undef - 667:5 error 'puter' is not defined no-undef - 684:13 error '$' is not defined no-undef - 696:45 error 'puter' is not defined no-undef - 697:25 error 'puter' is not defined no-undef - 698:30 error 'puter' is not defined no-undef - 702:5 error 'puter' is not defined no-undef - 704:75 error 'puter' is not defined no-undef - 711:5 error '$' is not defined no-undef - 714:5 error '$' is not defined no-undef - 729:5 error '$' is not defined no-undef - 730:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 730:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 731:13 error '$' is not defined no-undef - 733:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 733:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 738:16 error '$' is not defined no-undef - 738:52 error '$' is not defined no-undef - 754:5 error '$' is not defined no-undef - 763:17 error '$' is not defined no-undef - 767:30 error '$' is not defined no-undef - 771:46 error '$' is not defined no-undef - 775:13 error '$' is not defined no-undef - 784:71 error '$' is not defined no-undef - 792:33 error '$' is not defined no-undef - 807:5 error '$' is not defined no-undef - 809:39 error 'isMobile' is not defined no-undef - 809:58 error 'isMobile' is not defined no-undef - 812:25 error '$' is not defined no-undef - 827:31 error 'i18n' is not defined no-undef - 830:39 error 'i18n' is not defined no-undef - 836:71 error '$' is not defined no-undef - 836:107 error '$' is not defined no-undef - 837:89 error '$' is not defined no-undef - 837:125 error '$' is not defined no-undef - 849:39 error 'i18n' is not defined no-undef - 851:39 error '$' is not defined no-undef - 853:75 error '$' is not defined no-undef - 854:93 error '$' is not defined no-undef - 858:39 error 'i18n' is not defined no-undef - 860:39 error '$' is not defined no-undef - 862:79 error '$' is not defined no-undef - 863:97 error '$' is not defined no-undef - 867:39 error 'i18n' is not defined no-undef - 869:39 error '$' is not defined no-undef - 871:75 error '$' is not defined no-undef - 872:93 error '$' is not defined no-undef - 876:39 error 'i18n' is not defined no-undef - 878:39 error '$' is not defined no-undef - 880:75 error '$' is not defined no-undef - 881:93 error '$' is not defined no-undef - 889:39 error 'i18n' is not defined no-undef - 891:39 error '$' is not defined no-undef - 893:53 error '$' is not defined no-undef - 899:39 error 'i18n' is not defined no-undef - 901:39 error '$' is not defined no-undef - 903:53 error '$' is not defined no-undef - 914:31 error 'i18n' is not defined no-undef - 923:31 error 'i18n' is not defined no-undef - 948:31 error 'i18n' is not defined no-undef - 961:31 error 'i18n' is not defined no-undef - 971:31 error 'i18n' is not defined no-undef - 984:31 error 'i18n' is not defined no-undef - 1005:17 error 'isMobile' is not defined no-undef - 1005:36 error 'isMobile' is not defined no-undef - 1007:21 error 'puter' is not defined no-undef - 1021:9 error 'isMobile' is not defined no-undef - 1021:28 error 'isMobile' is not defined no-undef - 1023:31 error 'SelectionArea' is not defined no-undef - 1052:20 error '$' is not defined no-undef - 1054:27 error 'evt' is defined but never used @typescript-eslint/no-unused-vars - 1068:56 error '$' is not defined no-undef - 1082:21 error '$' is not defined no-undef - 1085:21 error 'evt' is defined but never used @typescript-eslint/no-unused-vars - 1115:13 error 'isMobile' is not defined no-undef - 1134:5 error '$' is not defined no-undef - 1137:5 error '$' is not defined no-undef - 1137:98 error 'i18n' is not defined no-undef - 1140:5 error '$' is not defined no-undef - 1157:50 error 'puter' is not defined no-undef - 1231:5 error '$' is not defined no-undef - 1233:35 error 'isMobile' is not defined no-undef - 1233:54 error 'isMobile' is not defined no-undef - 1237:9 error '$' is not defined no-undef - 1238:9 error '$' is not defined no-undef - 1239:9 error '$' is not defined no-undef - 1242:5 error '$' is not defined no-undef - 1242:40 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1244:9 error '$' is not defined no-undef - 1246:9 error '$' is not defined no-undef - 1270:9 error '$' is not defined no-undef - 1271:9 error '$' is not defined no-undef - 1278:9 error 'puter' is not defined no-undef - 1283:17 error 'puter' is not defined no-undef - 1292:11 error 'puter' is not defined no-undef - 1295:40 error 'puter' is not defined no-undef - 1312:45 error 'get_profile_picture' is not defined no-undef - 1321:45 error 'notif' is defined but never used @typescript-eslint/no-unused-vars - 1366:1 error '$' is not defined no-undef - 1368:35 error 'isMobile' is not defined no-undef - 1368:54 error 'isMobile' is not defined no-undef - 1374:25 error '$' is not defined no-undef - 1382:21 error '$' is not defined no-undef - 1391:21 error '$' is not defined no-undef - 1399:1 error '$' is not defined no-undef - 1399:52 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1406:1 error '$' is not defined no-undef - 1406:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1408:8 error '$' is not defined no-undef - 1412:9 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1419:23 error 'i18n' is not defined no-undef - 1451:45 error 'val' is defined but never used @typescript-eslint/no-unused-vars - 1471:23 error 'i18n' is not defined no-undef - 1473:41 error 'val' is defined but never used @typescript-eslint/no-unused-vars - 1495:11 error 'supportedLanguagesItems' is assigned a value but never used @typescript-eslint/no-unused-vars - 1515:23 error 'i18n' is not defined no-undef - 1525:23 error 'i18n' is not defined no-undef - 1535:23 error 'i18n' is not defined no-undef - 1545:23 error 'i18n' is not defined no-undef - 1560:23 error 'i18n' is not defined no-undef - 1563:24 error '$' is not defined no-undef - 1565:44 error 'i18n' is not defined no-undef - 1568:44 error 'i18n' is not defined no-undef - 1573:44 error 'i18n' is not defined no-undef - 1589:1 error '$' is not defined no-undef - 1589:60 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1615:1 error '$' is not defined no-undef - 1616:5 error '$' is not defined no-undef - 1617:9 error '$' is not defined no-undef - 1621:1 error '$' is not defined no-undef - 1625:1 error '$' is not defined no-undef - 1629:1 error '$' is not defined no-undef - 1629:76 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1636:1 error '$' is not defined no-undef - 1636:54 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1640:1 error '$' is not defined no-undef - 1640:54 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1642:15 error '$' is not defined no-undef - 1645:5 error '$' is not defined no-undef - 1646:9 error '$' is not defined no-undef - 1650:1 error '$' is not defined no-undef - 1650:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1655:24 error 'i18n' is not defined no-undef - 1660:24 error 'i18n' is not defined no-undef - 1664:24 error 'i18n' is not defined no-undef - 1687:1 error '$' is not defined no-undef - 1688:5 error '$' is not defined no-undef - 1695:1 error '$' is not defined no-undef - 1695:52 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1697:5 error '$' is not defined no-undef - 1699:5 error '$' is not defined no-undef - 1702:1 error '$' is not defined no-undef - 1702:82 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1704:19 error '$' is not defined no-undef - 1706:9 error '$' is not defined no-undef - 1707:9 error '$' is not defined no-undef - 1708:9 error '$' is not defined no-undef - 1709:9 error '$' is not defined no-undef - 1711:9 error '$' is not defined no-undef - 1712:9 error '$' is not defined no-undef - 1713:9 error '$' is not defined no-undef - 1716:17 error '$' is not defined no-undef - 1718:17 error '$' is not defined no-undef - 1724:1 error '$' is not defined no-undef - 1724:58 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1725:5 error '$' is not defined no-undef - 1726:5 error '$' is not defined no-undef - 1727:5 error '$' is not defined no-undef - 1730:48 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 1736:9 error '$' is not defined no-undef - 1737:9 error '$' is not defined no-undef - 1738:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1738:61 error '$' is not defined no-undef - 1740:9 error '$' is not defined no-undef - 1741:9 error '$' is not defined no-undef - 1742:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1742:61 error '$' is not defined no-undef - 1750:13 error '$' is not defined no-undef - 1751:13 error '$' is not defined no-undef - 1752:13 error '$' is not defined no-undef - 1755:13 error '$' is not defined no-undef - 1756:13 error '$' is not defined no-undef - 1757:13 error '$' is not defined no-undef - 1761:13 error '$' is not defined no-undef - 1762:13 error '$' is not defined no-undef - 1768:9 error '$' is not defined no-undef - 1773:9 error '$' is not defined no-undef - 1784:5 error '$' is not defined no-undef - 1784:76 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 1786:19 error '$' is not defined no-undef - 1792:5 error '$' is not defined no-undef - 1807:5 error '$' is not defined no-undef - 1809:5 error '$' is not defined no-undef - 1810:9 error '$' is not defined no-undef - 1817:5 error '$' is not defined no-undef - 1818:5 error '$' is not defined no-undef - 1819:5 error '$' is not defined no-undef - 1820:5 error '$' is not defined no-undef - 1830:5 error '$' is not defined no-undef - 1832:5 error '$' is not defined no-undef - 1833:5 error '$' is not defined no-undef - 1834:28 error '$' is not defined no-undef - 1835:5 error '$' is not defined no-undef - 1838:9 error '$' is not defined no-undef - 1842:5 error '$' is not defined no-undef - 1845:5 error '$' is not defined no-undef - 1852:5 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIElement.js - 5:16 error 'def' is not defined no-undef - 47:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 75:26 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 122:28 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIItem.js - 34:37 error '$' is not defined no-undef - 36:9 error '$' is not defined no-undef - 69:41 error '$' is not defined no-undef - 80:30 error 'html_encode' is not defined no-undef - 81:34 error 'html_encode' is not defined no-undef - 86:53 error 'html_encode' is not defined no-undef - 89:39 error 'html_encode' is not defined no-undef - 90:44 error 'html_encode' is not defined no-undef - 92:35 error 'html_encode' is not defined no-undef - 94:32 error 'html_encode' is not defined no-undef - 96:47 error 'html_encode' is not defined no-undef - 97:30 error 'html_encode' is not defined no-undef - 104:58 error 'timeago' is not defined no-undef - 113:31 error 'i18n' is not defined no-undef - 115:46 error 'html_encode' is not defined no-undef - 121:31 error 'html_encode' is not defined no-undef - 128:32 error 'html_encode' is not defined no-undef - 134:32 error 'html_encode' is not defined no-undef - 142:51 error 'html_encode' is not defined no-undef - 148:32 error 'html_encode' is not defined no-undef - 151:43 error 'html_encode' is not defined no-undef - 157:32 error 'html_encode' is not defined no-undef - 165:73 error 'html_encode' is not defined no-undef - 165:122 error 'i18n' is not defined no-undef - 165:138 error 'html_encode' is not defined no-undef - 167:170 error 'html_encode' is not defined no-undef - 171:5 error '$' is not defined no-undef - 174:28 error '$' is not defined no-undef - 182:24 error '$' is not defined no-undef - 187:13 error '$' is not defined no-undef - 188:25 error '$' is not defined no-undef - 197:9 error '$' is not defined no-undef - 209:9 error '$' is not defined no-undef - 211:17 error '$' is not defined no-undef - 214:17 error '$' is not defined no-undef - 218:17 error '$' is not defined no-undef - 221:64 error '$' is not defined no-undef - 237:5 error '$' is not defined no-undef - 246:25 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 246:32 error 'ui' is defined but never used @typescript-eslint/no-unused-vars - 248:13 error '$' is not defined no-undef - 249:13 error '$' is not defined no-undef - 251:13 error '$' is not defined no-undef - 260:13 error '$' is not defined no-undef - 263:32 error '$' is not defined no-undef - 265:17 error '$' is not defined no-undef - 271:13 error '$' is not defined no-undef - 276:13 error '$' is not defined no-undef - 287:17 error '$' is not defined no-undef - 288:17 error '$' is not defined no-undef - 289:17 error '$' is not defined no-undef - 292:42 error '$' is not defined no-undef - 296:13 error '$' is not defined no-undef - 303:17 error '$' is not defined no-undef - 312:13 error '$' is not defined no-undef - 324:21 error '$' is not defined no-undef - 329:16 error '$' is not defined no-undef - 331:17 error '$' is not defined no-undef - 331:50 error '$' is not defined no-undef - 333:17 error '$' is not defined no-undef - 333:50 error '$' is not defined no-undef - 336:17 error '$' is not defined no-undef - 341:37 error '$' is not defined no-undef - 342:21 error '$' is not defined no-undef - 353:16 error '$' is not defined no-undef - 354:52 error '$' is not defined no-undef - 361:17 error '$' is not defined no-undef - 362:47 error '$' is not defined no-undef - 366:13 error '$' is not defined no-undef - 367:13 error '$' is not defined no-undef - 369:13 error '$' is not defined no-undef - 371:13 error '$' is not defined no-undef - 381:5 error '$' is not defined no-undef - 387:16 error '$' is not defined no-undef - 387:71 error '$' is not defined no-undef - 391:46 error '$' is not defined no-undef - 405:71 error '$' is not defined no-undef - 421:31 error '$' is not defined no-undef - 422:30 error '$' is not defined no-undef - 424:31 error '$' is not defined no-undef - 443:21 error '$' is not defined no-undef - 451:42 error '$' is not defined no-undef - 452:58 error '$' is not defined no-undef - 454:71 error '$' is not defined no-undef - 460:43 error '$' is not defined no-undef - 461:29 error '$' is not defined no-undef - 462:46 error '$' is not defined no-undef - 462:90 error '$' is not defined no-undef - 464:29 error '$' is not defined no-undef - 464:79 error '$' is not defined no-undef - 464:114 error '$' is not defined no-undef - 465:29 error '$' is not defined no-undef - 465:84 error '$' is not defined no-undef - 465:120 error '$' is not defined no-undef - 471:24 error '$' is not defined no-undef - 472:62 error '$' is not defined no-undef - 475:54 error '$' is not defined no-undef - 475:104 error '$' is not defined no-undef - 475:147 error '$' is not defined no-undef - 480:13 error '$' is not defined no-undef - 486:39 error '$' is not defined no-undef - 487:87 error '$' is not defined no-undef - 490:17 error '$' is not defined no-undef - 494:17 error '$' is not defined no-undef - 495:17 error '$' is not defined no-undef - 497:17 error '$' is not defined no-undef - 500:13 error '$' is not defined no-undef - 504:17 error '$' is not defined no-undef - 509:17 error '$' is not defined no-undef - 510:17 error '$' is not defined no-undef - 511:17 error '$' is not defined no-undef - 513:13 error '$' is not defined no-undef - 520:8 error 'isMobile' is not defined no-undef - 520:26 error 'isMobile' is not defined no-undef - 521:9 error '$' is not defined no-undef - 523:16 error '$' is not defined no-undef - 526:16 error '$' is not defined no-undef - 536:9 error '$' is not defined no-undef - 538:16 error '$' is not defined no-undef - 541:16 error '$' is not defined no-undef - 554:5 error '$' is not defined no-undef - 556:12 error '$' is not defined no-undef - 560:12 error '$' is not defined no-undef - 564:35 error '$' is not defined no-undef - 567:29 error '$' is not defined no-undef - 567:69 error '$' is not defined no-undef - 568:13 error '$' is not defined no-undef - 575:42 error '$' is not defined no-undef - 576:13 error '$' is not defined no-undef - 578:40 error '$' is not defined no-undef - 579:13 error '$' is not defined no-undef - 582:13 error '$' is not defined no-undef - 589:5 error '$' is not defined no-undef - 591:12 error '$' is not defined no-undef - 595:35 error '$' is not defined no-undef - 600:13 error '$' is not defined no-undef - 616:68 error '$' is not defined no-undef - 621:5 error '$' is not defined no-undef - 622:13 error '$' is not defined no-undef - 622:46 error '$' is not defined no-undef - 622:84 error '$' is not defined no-undef - 626:12 error '$' is not defined no-undef - 640:26 error '$' is not defined no-undef - 641:26 error '$' is not defined no-undef - 642:26 error '$' is not defined no-undef - 648:92 error '$' is not defined no-undef - 656:13 error '$' is not defined no-undef - 656:34 error 'html_encode' is not defined no-undef - 657:13 error '$' is not defined no-undef - 658:13 error '$' is not defined no-undef - 658:40 error '$' is not defined no-undef - 659:13 error '$' is not defined no-undef - 663:9 error '$' is not defined no-undef - 672:5 error '$' is not defined no-undef - 674:13 error '$' is not defined no-undef - 681:13 error '$' is not defined no-undef - 682:13 error '$' is not defined no-undef - 684:64 error '$' is not defined no-undef - 692:5 error '$' is not defined no-undef - 693:13 error '$' is not defined no-undef - 701:13 error '$' is not defined no-undef - 702:13 error '$' is not defined no-undef - 703:13 error '$' is not defined no-undef - 707:5 error '$' is not defined no-undef - 717:5 error '$' is not defined no-undef - 718:54 error '$' is not defined no-undef - 733:5 error '$' is not defined no-undef - 733:45 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 740:5 error '$' is not defined no-undef - 742:12 error '$' is not defined no-undef - 746:12 error '$' is not defined no-undef - 750:39 error 'isMobile' is not defined no-undef - 750:58 error 'isMobile' is not defined no-undef - 759:33 error '$' is not defined no-undef - 771:27 error 'i18n' is not defined no-undef - 774:35 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 775:44 error '$' is not defined no-undef - 775:98 error '$' is not defined no-undef - 804:35 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 805:46 error '$' is not defined no-undef - 805:77 error '$' is not defined no-undef - 805:109 error '$' is not defined no-undef - 805:158 error '$' is not defined no-undef - 819:27 error 'i18n' is not defined no-undef - 826:61 error '$' is not defined no-undef - 833:27 error 'i18n' is not defined no-undef - 840:61 error '$' is not defined no-undef - 852:23 error 'i18n' is not defined no-undef - 857:31 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 858:47 error '$' is not defined no-undef - 867:27 error 'i18n' is not defined no-undef - 872:35 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 873:58 error '$' is not defined no-undef - 887:27 error 'i18n' is not defined no-undef - 890:38 error 'i18n' is not defined no-undef - 893:44 error 'i18n' is not defined no-undef - 897:44 error 'i18n' is not defined no-undef - 906:49 error 'puter' is not defined no-undef - 914:33 error '$' is not defined no-undef - 914:55 error 'html_encode' is not defined no-undef - 915:33 error '$' is not defined no-undef - 915:57 error 'html_encode' is not defined no-undef - 926:27 error 'i18n' is not defined no-undef - 929:57 error '$' is not defined no-undef - 931:32 error '$' is not defined no-undef - 931:61 error '$' is not defined no-undef - 936:47 error '$' is not defined no-undef - 937:33 error '$' is not defined no-undef - 939:33 error '$' is not defined no-undef - 940:33 error '$' is not defined no-undef - 940:75 error '$' is not defined no-undef - 940:102 error '$' is not defined no-undef - 941:33 error '$' is not defined no-undef - 941:80 error '$' is not defined no-undef - 941:108 error '$' is not defined no-undef - 952:27 error 'i18n' is not defined no-undef - 965:30 error '$' is not defined no-undef - 965:84 error '$' is not defined no-undef - 972:27 error 'i18n' is not defined no-undef - 1009:48 error 'html_encode' is not defined no-undef - 1011:62 error '$' is not defined no-undef - 1022:53 error 'i18n' is not defined no-undef - 1022:90 error 'html_encode' is not defined no-undef - 1026:56 error 'i18n' is not defined no-undef - 1031:56 error 'i18n' is not defined no-undef - 1042:48 error '$' is not defined no-undef - 1043:51 error '$' is not defined no-undef - 1044:47 error '$' is not defined no-undef - 1057:27 error 'i18n' is not defined no-undef - 1071:16 error '$' is not defined no-undef - 1073:27 error 'i18n' is not defined no-undef - 1106:46 error '$' is not defined no-undef - 1106:81 error '$' is not defined no-undef - 1106:117 error '$' is not defined no-undef - 1106:153 error '$' is not defined no-undef - 1116:27 error 'i18n' is not defined no-undef - 1133:61 error '$' is not defined no-undef - 1133:91 error '$' is not defined no-undef - 1143:27 error 'i18n' is not defined no-undef - 1148:40 error '$' is not defined no-undef - 1149:39 error '$' is not defined no-undef - 1165:27 error 'i18n' is not defined no-undef - 1176:27 error 'i18n' is not defined no-undef - 1180:67 error '$' is not defined no-undef - 1189:45 error '$' is not defined no-undef - 1191:27 error 'i18n' is not defined no-undef - 1193:63 error '$' is not defined no-undef - 1200:44 error '$' is not defined no-undef - 1202:27 error 'i18n' is not defined no-undef - 1204:40 error '$' is not defined no-undef - 1214:27 error 'i18n' is not defined no-undef - 1216:40 error '$' is not defined no-undef - 1216:98 error '$' is not defined no-undef - 1229:16 error '$' is not defined no-undef - 1231:27 error 'i18n' is not defined no-undef - 1243:27 error 'i18n' is not defined no-undef - 1253:16 error '$' is not defined no-undef - 1255:27 error 'i18n' is not defined no-undef - 1259:57 error '$' is not defined no-undef - 1261:63 error '$' is not defined no-undef - 1268:16 error '$' is not defined no-undef - 1276:27 error 'i18n' is not defined no-undef - 1278:53 error '$' is not defined no-undef - 1280:28 error '$' is not defined no-undef - 1280:60 error '$' is not defined no-undef - 1285:43 error '$' is not defined no-undef - 1298:16 error '$' is not defined no-undef - 1300:27 error 'i18n' is not defined no-undef - 1311:27 error 'i18n' is not defined no-undef - 1314:38 error 'i18n' is not defined no-undef - 1317:44 error 'i18n' is not defined no-undef - 1321:44 error 'i18n' is not defined no-undef - 1329:49 error 'puter' is not defined no-undef - 1336:33 error '$' is not defined no-undef - 1336:55 error 'html_encode' is not defined no-undef - 1336:123 error 'html_encode' is not defined no-undef - 1337:33 error '$' is not defined no-undef - 1346:16 error '$' is not defined no-undef - 1348:27 error 'i18n' is not defined no-undef - 1362:23 error 'i18n' is not defined no-undef - 1367:32 error '$' is not defined no-undef - 1367:61 error '$' is not defined no-undef - 1370:31 error '$' is not defined no-undef - 1370:59 error '$' is not defined no-undef - 1374:25 error '$' is not defined no-undef - 1375:25 error '$' is not defined no-undef - 1376:25 error '$' is not defined no-undef - 1388:30 error '$' is not defined no-undef - 1398:5 error '$' is not defined no-undef - 1399:21 error '$' is not defined no-undef - 1400:9 error '$' is not defined no-undef - 1400:37 error 'html_encode' is not defined no-undef - 1402:23 error '$' is not defined no-undef - 1403:23 error '$' is not defined no-undef - 1404:13 error '$' is not defined no-undef - 1405:13 error '$' is not defined no-undef - 1410:45 error '$' is not defined no-undef - 1410:105 error '$' is not defined no-undef - 1421:1 error '$' is not defined no-undef - 1423:1 error '$' is not defined no-undef - 1426:25 error '$' is not defined no-undef - 1433:1 error '$' is not defined no-undef - 1440:1 error '$' is not defined no-undef - 1445:23 error '$' is not defined no-undef - 1455:26 error 'i18n' is not defined no-undef - 1456:33 error 'i18n' is not defined no-undef - 1458:41 error '$' is not defined no-undef - 1466:23 error 'i18n' is not defined no-undef - 1468:41 error '$' is not defined no-undef - 1480:1 error '$' is not defined no-undef - 1480:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1481:5 error 'puter' is not defined no-undef - 1482:14 error '$' is not defined no-undef - 1493:1 error '$' is not defined no-undef - 1494:5 error 'puter' is not defined no-undef - 1495:14 error '$' is not defined no-undef - 1527:17 error '$' is not defined no-undef - 1543:1 error '$' is not defined no-undef - 1545:5 error '$' is not defined no-undef - 1549:1 error '$' is not defined no-undef - 1550:5 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 1551:5 error '$' is not defined no-undef - 1552:34 error '$' is not defined no-undef - 1553:9 error '$' is not defined no-undef - 1562:8 error '$' is not defined no-undef - 1566:26 error '$' is not defined no-undef - 1567:17 error 'i18n' is not defined no-undef - 1571:26 error '$' is not defined no-undef - 1572:33 error '$' is not defined no-undef - 1574:5 error '$' is not defined no-undef - 1575:5 error '$' is not defined no-undef - 1576:5 error '$' is not defined no-undef - 1577:5 error '$' is not defined no-undef - 1582:5 error '$' is not defined no-undef - 1582:32 error 'html_decode' is not defined no-undef - 1582:44 error '$' is not defined no-undef - 1585:23 error '$' is not defined no-undef - 1586:29 error '$' is not defined no-undef - 1591:9 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UINotification.js - 25:78 error 'html_encode' is not defined no-undef - 26:74 error 'html_encode' is not defined no-undef - 28:90 error 'html_encode' is not defined no-undef - 31:53 error 'html_encode' is not defined no-undef - 32:52 error 'html_encode' is not defined no-undef - 36:5 error '$' is not defined no-undef - 39:5 error 'update_tab_notif_count_badge' is not defined no-undef - 44:5 error '$' is not defined no-undef - 46:5 error '$' is not defined no-undef - 46:41 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 54:5 error '$' is not defined no-undef - 56:12 error '$' is not defined no-undef - 70:5 error '$' is not defined no-undef - 85:32 error '$' is not defined no-undef - 86:13 error '$' is not defined no-undef - 93:9 error '$' is not defined no-undef - 102:13 error '$' is not defined no-undef - 103:13 error '$' is not defined no-undef - 105:25 error '$' is not defined no-undef - 107:17 error '$' is not defined no-undef - 109:17 error '$' is not defined no-undef - 112:13 error 'update_tab_notif_count_badge' is not defined no-undef - 116:5 error '$' is not defined no-undef - 119:17 error '$' is not defined no-undef - 121:9 error '$' is not defined no-undef - 123:9 error '$' is not defined no-undef - 129:1 error '$' is not defined no-undef - 131:5 error '$' is not defined no-undef - 133:5 error '$' is not defined no-undef - 137:5 error '$' is not defined no-undef - 140:5 error 'update_tab_notif_count_badge' is not defined no-undef - 150:17 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIPopover.js - 23:34 error '$' is not defined no-undef - 26:5 error '$' is not defined no-undef - 33:115 error 'html_encode' is not defined no-undef - 37:5 error '$' is not defined no-undef - 42:5 error '$' is not defined no-undef - 42:36 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 53:9 error '$' is not defined no-undef - 55:5 error '$' is not defined no-undef - 57:13 error '$' is not defined no-undef - 63:48 error '$' is not defined no-undef - 68:42 error '$' is not defined no-undef - 70:42 error '$' is not defined no-undef - 74:50 error '$' is not defined no-undef - 78:37 error '$' is not defined no-undef - 78:77 error '$' is not defined no-undef - 81:9 error '$' is not defined no-undef - 89:5 error '$' is not defined no-undef - 94:5 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIPrompt.js - 36:24 error Promise executor functions should not be async no-async-promise-executor - 40:25 error 'i18n' is not defined no-undef - 41:25 error 'i18n' is not defined no-undef - 55:117 error 'i18n' is not defined no-undef - 55:161 error 'i18n' is not defined no-undef - 56:113 error 'i18n' is not defined no-undef - 56:156 error 'i18n' is not defined no-undef - 82:21 error '$' is not defined no-undef - 97:9 error '$' is not defined no-undef - 102:9 error '$' is not defined no-undef - 105:16 error '$' is not defined no-undef - 106:25 error '$' is not defined no-undef - 110:13 error '$' is not defined no-undef - 114:9 error '$' is not defined no-undef - 116:17 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UITaskbar.js - 31:5 error '$' is not defined no-undef - 47:5 error '$' is not defined no-undef - 57:15 error 'i18n' is not defined no-undef - 63:16 error '$' is not defined no-undef - 80:44 error '$' is not defined no-undef - 103:95 error 'i18n' is not defined no-undef - 109:48 error 'html_encode' is not defined no-undef - 109:91 error 'html_encode' is not defined no-undef - 110:78 error 'html_encode' is not defined no-undef - 110:124 error 'html_encode' is not defined no-undef - 110:170 error 'html_encode' is not defined no-undef - 110:217 error 'html_encode' is not defined no-undef - 111:77 error 'html_encode' is not defined no-undef - 112:74 error 'html_encode' is not defined no-undef - 123:176 error 'i18n' is not defined no-undef - 128:48 error 'html_encode' is not defined no-undef - 128:91 error 'html_encode' is not defined no-undef - 129:78 error 'html_encode' is not defined no-undef - 129:124 error 'html_encode' is not defined no-undef - 129:170 error 'html_encode' is not defined no-undef - 129:217 error 'html_encode' is not defined no-undef - 130:77 error 'html_encode' is not defined no-undef - 131:74 error 'html_encode' is not defined no-undef - 139:13 error '$' is not defined no-undef - 142:17 error 'isMobile' is not defined no-undef - 143:17 error '$' is not defined no-undef - 146:13 error '$' is not defined no-undef - 151:34 error '$' is not defined no-undef - 157:33 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 157:40 error 'ui' is defined but never used @typescript-eslint/no-unused-vars - 159:32 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 159:39 error 'ui' is defined but never used @typescript-eslint/no-unused-vars - 178:46 error '$' is not defined no-undef - 200:54 error '$' is not defined no-undef - 216:25 error 'puter' is not defined no-undef - 224:18 error 'i18n' is not defined no-undef - 229:32 error '$' is not defined no-undef - 229:56 error 'html_encode' is not defined no-undef - 249:5 error '$' is not defined no-undef - 258:17 error '$' is not defined no-undef - 260:20 error '$' is not defined no-undef - 260:49 error '$' is not defined no-undef - 261:21 error '$' is not defined no-undef - 262:21 error '$' is not defined no-undef - 268:17 error '$' is not defined no-undef - 270:20 error '$' is not defined no-undef - 270:49 error '$' is not defined no-undef - 271:21 error '$' is not defined no-undef - 272:21 error '$' is not defined no-undef - 277:27 error '$' is not defined no-undef - 278:26 error '$' is not defined no-undef - 279:27 error '$' is not defined no-undef - 283:58 error '$' is not defined no-undef - 283:87 error '$' is not defined no-undef - 286:39 error '$' is not defined no-undef - 293:27 error '$' is not defined no-undef - 294:17 error '$' is not defined no-undef - 296:17 error '$' is not defined no-undef - 297:17 error '$' is not defined no-undef - 301:21 error '$' is not defined no-undef - 311:8 error 'isMobile' is not defined no-undef - 312:29 error '$' is not defined no-undef - 317:13 error '$' is not defined no-undef - 318:13 error '$' is not defined no-undef - 323:17 error '$' is not defined no-undef - 327:13 error '$' is not defined no-undef - 328:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UITaskbarItem.js - 38:38 error 'html_encode' is not defined no-undef - 39:32 error 'html_encode' is not defined no-undef - 40:31 error 'html_encode' is not defined no-undef - 41:43 error 'html_encode' is not defined no-undef - 43:28 error 'html_encode' is not defined no-undef - 44:43 error 'html_encode' is not defined no-undef - 52:31 error 'html_encode' is not defined no-undef - 61:9 error '$' is not defined no-undef - 63:9 error '$' is not defined no-undef - 68:5 error '$' is not defined no-undef - 70:5 error '$' is not defined no-undef - 72:12 error '$' is not defined no-undef - 77:13 error '$' is not defined no-undef - 81:5 error '$' is not defined no-undef - 84:13 error '$' is not defined no-undef - 95:12 error '$' is not defined no-undef - 99:39 error '$' is not defined no-undef - 103:9 error '$' is not defined no-undef - 105:23 error '$' is not defined no-undef - 106:22 error '$' is not defined no-undef - 108:21 error '$' is not defined no-undef - 123:22 error '$' is not defined no-undef - 128:37 error 'isMobile' is not defined no-undef - 128:55 error 'isMobile' is not defined no-undef - 139:22 error '$' is not defined no-undef - 144:37 error 'isMobile' is not defined no-undef - 144:55 error 'isMobile' is not defined no-undef - 158:23 error 'i18n' is not defined no-undef - 159:22 error '$' is not defined no-undef - 170:23 error 'i18n' is not defined no-undef - 171:22 error '$' is not defined no-undef - 173:21 error '$' is not defined no-undef - 174:24 error '$' is not defined no-undef - 187:23 error 'i18n' is not defined no-undef - 188:22 error '$' is not defined no-undef - 190:21 error '$' is not defined no-undef - 206:23 error 'i18n' is not defined no-undef - 209:25 error '$' is not defined no-undef - 216:23 error 'i18n' is not defined no-undef - 219:25 error '$' is not defined no-undef - 226:23 error 'i18n' is not defined no-undef - 228:21 error '$' is not defined no-undef - 242:5 error '$' is not defined no-undef - 248:15 error '$' is not defined no-undef - 249:15 error '$' is not defined no-undef - 261:5 error '$' is not defined no-undef - 267:16 error '$' is not defined no-undef - 267:71 error '$' is not defined no-undef - 271:46 error '$' is not defined no-undef - 282:71 error '$' is not defined no-undef - 304:31 error '$' is not defined no-undef - 305:30 error '$' is not defined no-undef - 307:31 error '$' is not defined no-undef - 326:21 error '$' is not defined no-undef - 331:17 error '$' is not defined no-undef - 332:17 error '$' is not defined no-undef - 333:17 error '$' is not defined no-undef - 334:17 error '$' is not defined no-undef - 338:13 error '$' is not defined no-undef - 344:39 error '$' is not defined no-undef - 345:87 error '$' is not defined no-undef - 348:17 error '$' is not defined no-undef - 352:17 error '$' is not defined no-undef - 354:17 error '$' is not defined no-undef - 356:17 error '$' is not defined no-undef - 358:17 error '$' is not defined no-undef - 361:13 error '$' is not defined no-undef - 365:17 error '$' is not defined no-undef - 370:17 error '$' is not defined no-undef - 371:17 error '$' is not defined no-undef - 372:17 error '$' is not defined no-undef - 373:17 error '$' is not defined no-undef - 375:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindow.js - 123:37 error '$' is not defined no-undef - 123:60 error 'html_encode' is not defined no-undef - 125:13 error '$' is not defined no-undef - 125:36 error 'html_encode' is not defined no-undef - 151:13 error 'isMobile' is not defined no-undef - 154:8 error 'isMobile' is not defined no-undef - 195:46 error 'html_encode' is not defined no-undef - 196:29 error 'html_encode' is not defined no-undef - 197:39 error 'html_encode' is not defined no-undef - 198:34 error 'html_encode' is not defined no-undef - 199:49 error 'html_encode' is not defined no-undef - 200:30 error 'html_encode' is not defined no-undef - 201:31 error 'html_encode' is not defined no-undef - 202:30 error 'html_encode' is not defined no-undef - 203:38 error 'html_encode' is not defined no-undef - 204:37 error 'html_encode' is not defined no-undef - 207:41 error 'html_encode' is not defined no-undef - 210:47 error 'html_encode' is not defined no-undef - 223:47 error 'html_encode' is not defined no-undef - 226:69 error 'html_encode' is not defined no-undef - 227:71 error 'html_encode' is not defined no-undef - 228:85 error 'html_encode' is not defined no-undef - 247:68 error 'html_encode' is not defined no-undef - 251:114 error 'html_encode' is not defined no-undef - 254:88 error 'html_encode' is not defined no-undef - 256:84 error 'html_encode' is not defined no-undef - 261:31 error 'isMobile' is not defined no-undef - 263:72 error 'html_encode' is not defined no-undef - 267:78 error 'i18n' is not defined no-undef - 270:59 error 'i18n' is not defined no-undef - 270:208 error 'html_encode' is not defined no-undef - 270:303 error 'html_encode' is not defined no-undef - 270:360 error 'i18n' is not defined no-undef - 271:59 error 'i18n' is not defined no-undef - 271:213 error 'html_encode' is not defined no-undef - 271:308 error 'html_encode' is not defined no-undef - 271:370 error 'i18n' is not defined no-undef - 272:59 error 'i18n' is not defined no-undef - 272:212 error 'html_encode' is not defined no-undef - 272:309 error 'html_encode' is not defined no-undef - 272:368 error 'i18n' is not defined no-undef - 273:59 error 'i18n' is not defined no-undef - 273:216 error 'html_encode' is not defined no-undef - 273:315 error 'html_encode' is not defined no-undef - 273:376 error 'i18n' is not defined no-undef - 274:59 error 'i18n' is not defined no-undef - 274:214 error 'html_encode' is not defined no-undef - 274:312 error 'html_encode' is not defined no-undef - 274:372 error 'i18n' is not defined no-undef - 275:59 error 'i18n' is not defined no-undef - 275:212 error 'html_encode' is not defined no-undef - 275:309 error 'html_encode' is not defined no-undef - 275:368 error 'i18n' is not defined no-undef - 294:45 error 'html_encode' is not defined no-undef - 294:198 error 'html_encode' is not defined no-undef - 294:286 error 'html_encode' is not defined no-undef - 294:308 error 'html_encode' is not defined no-undef - 304:13 error '$' is not defined no-undef - 312:133 error 'html_encode' is not defined no-undef - 314:136 error 'html_encode' is not defined no-undef - 316:164 error 'html_encode' is not defined no-undef - 321:76 error 'html_encode' is not defined no-undef - 321:113 error 'html_encode' is not defined no-undef - 323:73 error 'html_encode' is not defined no-undef - 330:44 error 'html_encode' is not defined no-undef - 331:30 error 'html_encode' is not defined no-undef - 347:37 error 'html_encode' is not defined no-undef - 350:57 error 'html_encode' is not defined no-undef - 351:63 error 'html_encode' is not defined no-undef - 377:61 error 'i18n' is not defined no-undef - 382:69 error 'i18n' is not defined no-undef - 401:145 error 'html_encode' is not defined no-undef - 402:87 error 'i18n' is not defined no-undef - 406:82 error 'i18n' is not defined no-undef - 418:10 error 'i18n' is not defined no-undef - 421:87 error 'i18n' is not defined no-undef - 422:113 error 'i18n' is not defined no-undef - 431:87 error 'i18n' is not defined no-undef - 432:133 error 'i18n' is not defined no-undef - 442:30 error '$' is not defined no-undef - 458:5 error '$' is not defined no-undef - 463:35 error '$' is not defined no-undef - 475:12 error '$' is not defined no-undef - 482:54 error '$' is not defined no-undef - 493:17 error '$' is not defined no-undef - 496:17 error '$' is not defined no-undef - 496:98 error '$' is not defined no-undef - 497:17 error '$' is not defined no-undef - 529:61 error '$' is not defined no-undef - 536:5 error '$' is not defined no-undef - 540:9 error '$' is not defined no-undef - 549:9 error '$' is not defined no-undef - 552:9 error '$' is not defined no-undef - 566:5 error '$' is not defined no-undef - 566:34 error 'html_encode' is not defined no-undef - 570:9 error '$' is not defined no-undef - 574:9 error '$' is not defined no-undef - 578:9 error '$' is not defined no-undef - 583:9 error '$' is not defined no-undef - 591:13 error '$' is not defined no-undef - 598:17 error '$' is not defined no-undef - 609:32 error '$' is not defined no-undef - 614:31 error '$' is not defined no-undef - 615:30 error '$' is not defined no-undef - 618:9 error '$' is not defined no-undef - 630:13 error '$' is not defined no-undef - 632:13 error '$' is not defined no-undef - 635:21 error '$' is not defined no-undef - 635:51 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 643:33 error '$' is not defined no-undef - 645:29 error '$' is not defined no-undef - 648:25 error '$' is not defined no-undef - 657:13 error '$' is not defined no-undef - 657:43 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 665:25 error '$' is not defined no-undef - 667:21 error '$' is not defined no-undef - 670:17 error '$' is not defined no-undef - 683:9 error '$' is not defined no-undef - 683:60 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 684:30 error '$' is not defined no-undef - 691:43 error '$' is not defined no-undef - 699:9 error '$' is not defined no-undef - 701:17 error '$' is not defined no-undef - 708:9 error '$' is not defined no-undef - 709:16 error '$' is not defined no-undef - 710:17 error '$' is not defined no-undef - 712:17 error '$' is not defined no-undef - 714:9 error '$' is not defined no-undef - 721:9 error '$' is not defined no-undef - 721:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 722:34 error '$' is not defined no-undef - 738:46 error '$' is not defined no-undef - 738:106 error '$' is not defined no-undef - 741:40 error 'puter' is not defined no-undef - 747:46 error 'privacy_aware_path' is not defined no-undef - 750:35 error '$' is not defined no-undef - 766:39 error '$' is not defined no-undef - 778:17 error '$' is not defined no-undef - 784:17 error '$' is not defined no-undef - 786:17 error '$' is not defined no-undef - 794:9 error '$' is not defined no-undef - 794:69 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 795:34 error '$' is not defined no-undef - 801:39 error 'puter' is not defined no-undef - 801:88 error '$' is not defined no-undef - 815:46 error '$' is not defined no-undef - 815:106 error '$' is not defined no-undef - 818:39 error 'puter' is not defined no-undef - 824:45 error 'privacy_aware_path' is not defined no-undef - 827:35 error '$' is not defined no-undef - 844:39 error '$' is not defined no-undef - 852:17 error '$' is not defined no-undef - 853:17 error '$' is not defined no-undef - 862:9 error '$' is not defined no-undef - 862:58 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 867:13 error '$' is not defined no-undef - 869:17 error '$' is not defined no-undef - 870:17 error '$' is not defined no-undef - 871:17 error '$' is not defined no-undef - 882:9 error '$' is not defined no-undef - 884:16 error '$' is not defined no-undef - 899:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 908:9 error '$' is not defined no-undef - 917:72 error 'i18n' is not defined no-undef - 950:9 error '$' is not defined no-undef - 952:16 error '$' is not defined no-undef - 979:9 error '$' is not defined no-undef - 1022:9 error '$' is not defined no-undef - 1023:56 error '$' is not defined no-undef - 1047:9 error '$' is not defined no-undef - 1048:30 error '$' is not defined no-undef - 1054:45 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1056:43 error '$' is not defined no-undef - 1065:9 error '$' is not defined no-undef - 1066:30 error '$' is not defined no-undef - 1071:43 error '$' is not defined no-undef - 1074:43 error '$' is not defined no-undef - 1090:31 error 'isMobile' is not defined no-undef - 1091:13 error 'puter' is not defined no-undef - 1102:62 error 'html_encode' is not defined no-undef - 1103:46 error 'html_encode' is not defined no-undef - 1105:86 error 'html_encode' is not defined no-undef - 1109:17 error '$' is not defined no-undef - 1111:17 error '$' is not defined no-undef - 1116:28 error '$' is not defined no-undef - 1116:75 error '$' is not defined no-undef - 1123:34 error '$' is not defined no-undef - 1124:35 error '$' is not defined no-undef - 1125:35 error '$' is not defined no-undef - 1126:35 error '$' is not defined no-undef - 1132:83 error '$' is not defined no-undef - 1135:38 error '$' is not defined no-undef - 1136:39 error '$' is not defined no-undef - 1137:39 error '$' is not defined no-undef - 1138:39 error '$' is not defined no-undef - 1146:51 error '$' is not defined no-undef - 1147:37 error '$' is not defined no-undef - 1148:37 error '$' is not defined no-undef - 1150:37 error '$' is not defined no-undef - 1150:87 error '$' is not defined no-undef - 1150:122 error '$' is not defined no-undef - 1151:37 error '$' is not defined no-undef - 1151:92 error '$' is not defined no-undef - 1151:128 error '$' is not defined no-undef - 1157:59 error '$' is not defined no-undef - 1160:25 error '$' is not defined no-undef - 1161:25 error '$' is not defined no-undef - 1167:28 error '$' is not defined no-undef - 1167:75 error '$' is not defined no-undef - 1171:29 error '$' is not defined no-undef - 1175:25 error '$' is not defined no-undef - 1176:25 error '$' is not defined no-undef - 1177:25 error '$' is not defined no-undef - 1180:25 error '$' is not defined no-undef - 1184:29 error '$' is not defined no-undef - 1188:25 error '$' is not defined no-undef - 1189:25 error '$' is not defined no-undef - 1190:25 error '$' is not defined no-undef - 1192:25 error '$' is not defined no-undef - 1206:9 error '$' is not defined no-undef - 1212:9 error '$' is not defined no-undef - 1213:9 error '$' is not defined no-undef - 1216:9 error '$' is not defined no-undef - 1220:5 error '$' is not defined no-undef - 1221:12 error '$' is not defined no-undef - 1222:13 error '$' is not defined no-undef - 1226:17 error '$' is not defined no-undef - 1231:5 error '$' is not defined no-undef - 1231:40 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1240:9 error '$' is not defined no-undef - 1241:16 error '$' is not defined no-undef - 1242:17 error '$' is not defined no-undef - 1250:54 error 'isMobile' is not defined no-undef - 1250:73 error 'isMobile' is not defined no-undef - 1253:31 error 'SelectionArea' is not defined no-undef - 1279:39 error 'store' is defined but never used @typescript-eslint/no-unused-vars - 1281:20 error '$' is not defined no-undef - 1283:27 error 'evt' is defined but never used @typescript-eslint/no-unused-vars - 1298:56 error '$' is not defined no-undef - 1314:21 error '$' is not defined no-undef - 1320:45 error '$' is not defined no-undef - 1321:17 error '$' is not defined no-undef - 1323:17 error '$' is not defined no-undef - 1325:23 error 'store' is defined but never used @typescript-eslint/no-unused-vars - 1325:30 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 1327:45 error '$' is not defined no-undef - 1328:17 error '$' is not defined no-undef - 1330:17 error '$' is not defined no-undef - 1337:5 error '$' is not defined no-undef - 1343:16 error '$' is not defined no-undef - 1343:63 error '$' is not defined no-undef - 1347:17 error '$' is not defined no-undef - 1362:75 error '$' is not defined no-undef - 1372:46 error '$' is not defined no-undef - 1372:107 error '$' is not defined no-undef - 1375:40 error 'puter' is not defined no-undef - 1389:31 error 'privacy_aware_path' is not defined no-undef - 1397:38 error '$' is not defined no-undef - 1408:17 error '$' is not defined no-undef - 1419:16 error '$' is not defined no-undef - 1419:81 error '$' is not defined no-undef - 1423:42 error '$' is not defined no-undef - 1427:13 error '$' is not defined no-undef - 1437:71 error '$' is not defined no-undef - 1446:28 error '$' is not defined no-undef - 1454:26 error '$' is not defined no-undef - 1455:27 error '$' is not defined no-undef - 1456:27 error '$' is not defined no-undef - 1457:27 error '$' is not defined no-undef - 1463:75 error '$' is not defined no-undef - 1466:30 error '$' is not defined no-undef - 1467:31 error '$' is not defined no-undef - 1468:31 error '$' is not defined no-undef - 1469:31 error '$' is not defined no-undef - 1478:29 error '$' is not defined no-undef - 1480:50 error '$' is not defined no-undef - 1487:39 error '$' is not defined no-undef - 1488:25 error '$' is not defined no-undef - 1489:25 error '$' is not defined no-undef - 1491:25 error '$' is not defined no-undef - 1491:75 error '$' is not defined no-undef - 1491:110 error '$' is not defined no-undef - 1492:25 error '$' is not defined no-undef - 1492:80 error '$' is not defined no-undef - 1492:116 error '$' is not defined no-undef - 1498:50 error '$' is not defined no-undef - 1503:17 error '$' is not defined no-undef - 1508:17 error '$' is not defined no-undef - 1519:9 error '$' is not defined no-undef - 1524:5 error '$' is not defined no-undef - 1526:13 error '$' is not defined no-undef - 1535:9 error '$' is not defined no-undef - 1545:5 error '$' is not defined no-undef - 1546:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 1546:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 1552:17 error '$' is not defined no-undef - 1555:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 1555:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 1559:25 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 1559:40 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 1563:25 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 1563:40 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 1573:5 error '$' is not defined no-undef - 1574:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 1574:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 1577:17 error '$' is not defined no-undef - 1580:17 error '$' is not defined no-undef - 1583:26 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 1583:41 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 1585:17 error '$' is not defined no-undef - 1593:63 error '$' is not defined no-undef - 1596:17 error '$' is not defined no-undef - 1607:5 error '$' is not defined no-undef - 1608:9 error '$' is not defined no-undef - 1616:5 error '$' is not defined no-undef - 1617:9 error '$' is not defined no-undef - 1630:39 error '$' is not defined no-undef - 1636:9 error '$' is not defined no-undef - 1637:29 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1637:32 error 'ui' is defined but never used @typescript-eslint/no-unused-vars - 1641:21 error '$' is not defined no-undef - 1647:24 error '$' is not defined no-undef - 1649:29 error '$' is not defined no-undef - 1654:29 error '$' is not defined no-undef - 1656:29 error '$' is not defined no-undef - 1662:17 error '$' is not defined no-undef - 1665:49 error '$' is not defined no-undef - 1669:54 error '$' is not defined no-undef - 1672:17 error '$' is not defined no-undef - 1674:30 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1674:33 error 'ui' is defined but never used @typescript-eslint/no-unused-vars - 1675:17 error '$' is not defined no-undef - 1676:17 error '$' is not defined no-undef - 1679:17 error '$' is not defined no-undef - 1681:20 error '$' is not defined no-undef - 1682:21 error '$' is not defined no-undef - 1684:21 error '$' is not defined no-undef - 1698:29 error '$' is not defined no-undef - 1784:29 error '$' is not defined no-undef - 1788:45 error '$' is not defined no-undef - 1789:46 error '$' is not defined no-undef - 1801:17 error '$' is not defined no-undef - 1803:17 error '$' is not defined no-undef - 1804:17 error '$' is not defined no-undef - 1805:38 error '$' is not defined no-undef - 1806:39 error '$' is not defined no-undef - 1809:17 error '$' is not defined no-undef - 1810:17 error '$' is not defined no-undef - 1814:17 error '$' is not defined no-undef - 1815:21 error '$' is not defined no-undef - 1815:44 error '$' is not defined no-undef - 1820:21 error '$' is not defined no-undef - 1825:29 error '$' is not defined no-undef - 1834:29 error '$' is not defined no-undef - 1843:29 error '$' is not defined no-undef - 1852:29 error '$' is not defined no-undef - 1861:29 error '$' is not defined no-undef - 1870:29 error '$' is not defined no-undef - 1890:28 error '$' is not defined no-undef - 1892:33 error '$' is not defined no-undef - 1897:33 error '$' is not defined no-undef - 1899:33 error '$' is not defined no-undef - 1908:20 error '$' is not defined no-undef - 1909:21 error '$' is not defined no-undef - 1914:20 error '$' is not defined no-undef - 1915:21 error '$' is not defined no-undef - 1920:21 error '$' is not defined no-undef - 1920:52 error '$' is not defined no-undef - 1921:21 error '$' is not defined no-undef - 1922:37 error '$' is not defined no-undef - 1937:12 error '$' is not defined no-undef - 1938:13 error '$' is not defined no-undef - 1942:9 error '$' is not defined no-undef - 1948:17 error '$' is not defined no-undef - 1949:17 error '$' is not defined no-undef - 1955:25 error '$' is not defined no-undef - 1962:25 error '$' is not defined no-undef - 1968:20 error '$' is not defined no-undef - 1969:62 error '$' is not defined no-undef - 1970:21 error '$' is not defined no-undef - 1980:17 error '$' is not defined no-undef - 1981:17 error '$' is not defined no-undef - 1982:17 error '$' is not defined no-undef - 1983:17 error '$' is not defined no-undef - 1984:40 error '$' is not defined no-undef - 1985:41 error '$' is not defined no-undef - 1988:17 error '$' is not defined no-undef - 1989:17 error '$' is not defined no-undef - 1998:16 error '$' is not defined no-undef - 2004:13 error '$' is not defined no-undef - 2005:13 error '$' is not defined no-undef - 2008:13 error '$' is not defined no-undef - 2009:13 error '$' is not defined no-undef - 2010:31 error '$' is not defined no-undef - 2012:13 error 'puter' is not defined no-undef - 2021:5 error '$' is not defined no-undef - 2025:17 error '$' is not defined no-undef - 2032:5 error '$' is not defined no-undef - 2034:39 error 'isMobile' is not defined no-undef - 2034:58 error 'isMobile' is not defined no-undef - 2037:25 error '$' is not defined no-undef - 2056:23 error '$' is not defined no-undef - 2065:21 error '$' is not defined no-undef - 2078:21 error '$' is not defined no-undef - 2078:57 error '$' is not defined no-undef - 2090:17 error '$' is not defined no-undef - 2104:5 error '$' is not defined no-undef - 2106:39 error 'isMobile' is not defined no-undef - 2106:58 error 'isMobile' is not defined no-undef - 2109:25 error '$' is not defined no-undef - 2119:16 error '$' is not defined no-undef - 2127:35 error 'i18n' is not defined no-undef - 2130:43 error 'i18n' is not defined no-undef - 2131:43 error '$' is not defined no-undef - 2133:83 error '$' is not defined no-undef - 2134:60 error '$' is not defined no-undef - 2134:99 error '$' is not defined no-undef - 2138:43 error 'i18n' is not defined no-undef - 2139:43 error '$' is not defined no-undef - 2141:87 error '$' is not defined no-undef - 2142:60 error '$' is not defined no-undef - 2142:103 error '$' is not defined no-undef - 2146:43 error 'i18n' is not defined no-undef - 2147:43 error '$' is not defined no-undef - 2149:83 error '$' is not defined no-undef - 2150:60 error '$' is not defined no-undef - 2150:99 error '$' is not defined no-undef - 2154:43 error 'i18n' is not defined no-undef - 2155:43 error '$' is not defined no-undef - 2157:83 error '$' is not defined no-undef - 2158:60 error '$' is not defined no-undef - 2158:99 error '$' is not defined no-undef - 2166:43 error 'i18n' is not defined no-undef - 2167:43 error '$' is not defined no-undef - 2169:57 error '$' is not defined no-undef - 2171:60 error '$' is not defined no-undef - 2175:43 error 'i18n' is not defined no-undef - 2176:43 error '$' is not defined no-undef - 2178:57 error '$' is not defined no-undef - 2180:60 error '$' is not defined no-undef - 2190:35 error 'i18n' is not defined no-undef - 2199:35 error 'i18n' is not defined no-undef - 2215:47 error '$' is not defined no-undef - 2224:35 error 'i18n' is not defined no-undef - 2225:73 error '$' is not defined no-undef - 2228:65 error '$' is not defined no-undef - 2237:35 error 'i18n' is not defined no-undef - 2247:35 error 'i18n' is not defined no-undef - 2248:39 error '$' is not defined no-undef - 2250:81 error '$' is not defined no-undef - 2261:35 error 'i18n' is not defined no-undef - 2268:54 error 'i18n' is not defined no-undef - 2278:56 error '$' is not defined no-undef - 2278:87 error '$' is not defined no-undef - 2278:119 error '$' is not defined no-undef - 2285:35 error 'i18n' is not defined no-undef - 2290:48 error '$' is not defined no-undef - 2291:47 error '$' is not defined no-undef - 2293:54 error '$' is not defined no-undef - 2306:35 error 'i18n' is not defined no-undef - 2333:35 error 'i18n' is not defined no-undef - 2338:46 error 'i18n' is not defined no-undef - 2341:52 error 'i18n' is not defined no-undef - 2346:52 error 'i18n' is not defined no-undef - 2355:33 error '$' is not defined no-undef - 2355:56 error 'html_encode' is not defined no-undef - 2363:33 error '$' is not defined no-undef - 2363:55 error 'html_encode' is not defined no-undef - 2363:123 error 'html_encode' is not defined no-undef - 2375:9 error '$' is not defined no-undef - 2384:5 error '$' is not defined no-undef - 2384:62 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 2386:15 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2387:9 error '$' is not defined no-undef - 2388:30 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 2388:45 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 2389:17 error '$' is not defined no-undef - 2391:30 error 'dragsterEvent' is defined but never used @typescript-eslint/no-unused-vars - 2391:45 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 2392:17 error '$' is not defined no-undef - 2396:17 error '$' is not defined no-undef - 2399:63 error '$' is not defined no-undef - 2412:27 error 'isMobile' is not defined no-undef - 2413:26 error '$' is not defined no-undef - 2450:31 error '$' is not defined no-undef - 2451:31 error '$' is not defined no-undef - 2461:67 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2462:18 error '$' is not defined no-undef - 2463:17 error '$' is not defined no-undef - 2468:13 error '$' is not defined no-undef - 2473:5 error '$' is not defined no-undef - 2477:9 error '$' is not defined no-undef - 2480:13 error '$' is not defined no-undef - 2493:5 error '$' is not defined no-undef - 2496:8 error '$' is not defined no-undef - 2500:1 error '$' is not defined no-undef - 2501:23 error '$' is not defined no-undef - 2502:27 error '$' is not defined no-undef - 2503:24 error '$' is not defined no-undef - 2524:27 error '$' is not defined no-undef - 2533:1 error '$' is not defined no-undef - 2539:1 error '$' is not defined no-undef - 2541:35 error 'isMobile' is not defined no-undef - 2541:54 error 'isMobile' is not defined no-undef - 2548:11 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2550:25 error '$' is not defined no-undef - 2558:21 error '$' is not defined no-undef - 2567:37 error '$' is not defined no-undef - 2591:1 error '$' is not defined no-undef - 2591:69 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2592:21 error '$' is not defined no-undef - 2594:8 error '$' is not defined no-undef - 2595:43 error '$' is not defined no-undef - 2596:9 error '$' is not defined no-undef - 2600:13 error '$' is not defined no-undef - 2601:22 error '$' is not defined no-undef - 2601:47 error '$' is not defined no-undef - 2602:9 error '$' is not defined no-undef - 2608:13 error '$' is not defined no-undef - 2609:41 error '$' is not defined no-undef - 2610:9 error '$' is not defined no-undef - 2615:13 error '$' is not defined no-undef - 2616:21 error '$' is not defined no-undef - 2616:45 error '$' is not defined no-undef - 2617:9 error '$' is not defined no-undef - 2623:13 error '$' is not defined no-undef - 2624:21 error '$' is not defined no-undef - 2624:45 error '$' is not defined no-undef - 2625:43 error '$' is not defined no-undef - 2626:9 error '$' is not defined no-undef - 2633:13 error '$' is not defined no-undef - 2634:41 error '$' is not defined no-undef - 2635:43 error '$' is not defined no-undef - 2636:9 error '$' is not defined no-undef - 2642:13 error '$' is not defined no-undef - 2643:41 error '$' is not defined no-undef - 2644:22 error '$' is not defined no-undef - 2644:47 error '$' is not defined no-undef - 2645:9 error '$' is not defined no-undef - 2652:13 error '$' is not defined no-undef - 2653:21 error '$' is not defined no-undef - 2653:45 error '$' is not defined no-undef - 2654:22 error '$' is not defined no-undef - 2654:47 error '$' is not defined no-undef - 2655:9 error '$' is not defined no-undef - 2665:1 error '$' is not defined no-undef - 2666:9 error '$' is not defined no-undef - 2669:5 error '$' is not defined no-undef - 2670:5 error '$' is not defined no-undef - 2672:1 error '$' is not defined no-undef - 2673:5 error '$' is not defined no-undef - 2674:5 error '$' is not defined no-undef - 2677:1 error '$' is not defined no-undef - 2679:35 error '$' is not defined no-undef - 2679:67 error '$' is not defined no-undef - 2680:9 error '$' is not defined no-undef - 2681:9 error '$' is not defined no-undef - 2686:1 error '$' is not defined no-undef - 2687:31 error '$' is not defined no-undef - 2688:27 error '$' is not defined no-undef - 2692:25 error '$' is not defined no-undef - 2703:53 error '$' is not defined no-undef - 2705:55 error '$' is not defined no-undef - 2707:54 error '$' is not defined no-undef - 2711:1 error '$' is not defined no-undef - 2713:8 error '$' is not defined no-undef - 2717:35 error 'isMobile' is not defined no-undef - 2717:54 error 'isMobile' is not defined no-undef - 2725:1 error '$' is not defined no-undef - 2727:35 error 'isMobile' is not defined no-undef - 2727:54 error 'isMobile' is not defined no-undef - 2732:11 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2739:13 error '$' is not defined no-undef - 2750:23 error '$' is not defined no-undef - 2751:25 error '$' is not defined no-undef - 2751:95 error '$' is not defined no-undef - 2753:22 error '$' is not defined no-undef - 2762:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2771:45 error '$' is not defined no-undef - 2773:51 error '$' is not defined no-undef - 2778:25 error '$' is not defined no-undef - 2784:1 error '$' is not defined no-undef - 2794:5 error '$' is not defined no-undef - 2799:16 error '$' is not defined no-undef - 2799:63 error '$' is not defined no-undef - 2810:71 error '$' is not defined no-undef - 2819:39 error '$' is not defined no-undef - 2820:25 error '$' is not defined no-undef - 2821:25 error '$' is not defined no-undef - 2823:25 error '$' is not defined no-undef - 2823:75 error '$' is not defined no-undef - 2823:110 error '$' is not defined no-undef - 2824:25 error '$' is not defined no-undef - 2824:80 error '$' is not defined no-undef - 2824:116 error '$' is not defined no-undef - 2830:50 error '$' is not defined no-undef - 2833:13 error '$' is not defined no-undef - 2834:13 error '$' is not defined no-undef - 2840:16 error '$' is not defined no-undef - 2840:63 error '$' is not defined no-undef - 2844:17 error '$' is not defined no-undef - 2848:13 error '$' is not defined no-undef - 2849:13 error '$' is not defined no-undef - 2850:13 error '$' is not defined no-undef - 2853:13 error '$' is not defined no-undef - 2857:17 error '$' is not defined no-undef - 2861:13 error '$' is not defined no-undef - 2862:13 error '$' is not defined no-undef - 2863:13 error '$' is not defined no-undef - 2865:13 error '$' is not defined no-undef - 2888:87 error 'html_encode' is not defined no-undef - 2897:92 error 'html_encode' is not defined no-undef - 2897:113 error 'html_encode' is not defined no-undef - 2899:93 error 'html_encode' is not defined no-undef - 2899:144 error 'i18n' is not defined no-undef - 2899:160 error 'html_encode' is not defined no-undef - 2905:20 error '$' is not defined no-undef - 2906:42 error '$' is not defined no-undef - 2907:39 error '$' is not defined no-undef - 2908:37 error '$' is not defined no-undef - 2909:28 error '$' is not defined no-undef - 2910:38 error '$' is not defined no-undef - 2911:41 error '$' is not defined no-undef - 2912:21 error '$' is not defined no-undef - 2912:65 error '$' is not defined no-undef - 2913:22 error '$' is not defined no-undef - 2916:5 error '$' is not defined no-undef - 2917:5 error '$' is not defined no-undef - 2917:58 error 'html_encode' is not defined no-undef - 2920:5 error '$' is not defined no-undef - 2925:13 error '$' is not defined no-undef - 2928:13 error '$' is not defined no-undef - 2932:13 error '$' is not defined no-undef - 2935:13 error '$' is not defined no-undef - 2939:13 error '$' is not defined no-undef - 2942:13 error '$' is not defined no-undef - 2944:9 error '$' is not defined no-undef - 2945:9 error '$' is not defined no-undef - 2948:9 error '$' is not defined no-undef - 2951:12 error '$' is not defined no-undef - 2952:13 error '$' is not defined no-undef - 2955:9 error '$' is not defined no-undef - 2959:13 error '$' is not defined no-undef - 2960:13 error '$' is not defined no-undef - 2962:13 error '$' is not defined no-undef - 2963:13 error '$' is not defined no-undef - 2963:58 error 'i18n' is not defined no-undef - 2965:13 error '$' is not defined no-undef - 2966:13 error '$' is not defined no-undef - 2966:58 error 'i18n' is not defined no-undef - 2968:13 error '$' is not defined no-undef - 2969:13 error '$' is not defined no-undef - 2971:13 error '$' is not defined no-undef - 2972:13 error '$' is not defined no-undef - 2974:13 error '$' is not defined no-undef - 2975:13 error '$' is not defined no-undef - 2978:13 error '$' is not defined no-undef - 2980:13 error '$' is not defined no-undef - 2983:5 error '$' is not defined no-undef - 2983:36 error 'html_encode' is not defined no-undef - 2984:5 error '$' is not defined no-undef - 2984:36 error 'html_encode' is not defined no-undef - 2989:13 error 'puter' is not defined no-undef - 2990:17 error '$' is not defined no-undef - 2990:54 error '$' is not defined no-undef - 2991:17 error '$' is not defined no-undef - 2992:17 error '$' is not defined no-undef - 2993:17 error '$' is not defined no-undef - 2994:17 error '$' is not defined no-undef - 2995:17 error '$' is not defined no-undef - 2996:17 error '$' is not defined no-undef - 2999:21 error '$' is not defined no-undef - 2999:66 error 'i18n' is not defined no-undef - 3001:21 error '$' is not defined no-undef - 3003:17 error '$' is not defined no-undef - 3003:48 error 'html_encode' is not defined no-undef - 3005:17 error '$' is not defined no-undef - 3005:48 error 'html_encode' is not defined no-undef - 3006:17 error '$' is not defined no-undef - 3007:17 error '$' is not defined no-undef - 3025:9 error '$' is not defined no-undef - 3025:46 error '$' is not defined no-undef - 3026:9 error '$' is not defined no-undef - 3027:9 error '$' is not defined no-undef - 3028:9 error '$' is not defined no-undef - 3029:9 error '$' is not defined no-undef - 3044:5 error '$' is not defined no-undef - 3049:16 error '$' is not defined no-undef - 3049:63 error '$' is not defined no-undef - 3060:71 error '$' is not defined no-undef - 3069:39 error '$' is not defined no-undef - 3070:25 error '$' is not defined no-undef - 3071:25 error '$' is not defined no-undef - 3073:25 error '$' is not defined no-undef - 3073:75 error '$' is not defined no-undef - 3073:110 error '$' is not defined no-undef - 3074:25 error '$' is not defined no-undef - 3074:80 error '$' is not defined no-undef - 3074:116 error '$' is not defined no-undef - 3080:50 error '$' is not defined no-undef - 3083:13 error '$' is not defined no-undef - 3084:13 error '$' is not defined no-undef - 3090:16 error '$' is not defined no-undef - 3090:63 error '$' is not defined no-undef - 3094:17 error '$' is not defined no-undef - 3098:13 error '$' is not defined no-undef - 3099:13 error '$' is not defined no-undef - 3100:13 error '$' is not defined no-undef - 3103:13 error '$' is not defined no-undef - 3107:17 error '$' is not defined no-undef - 3111:13 error '$' is not defined no-undef - 3112:13 error '$' is not defined no-undef - 3113:13 error '$' is not defined no-undef - 3115:13 error '$' is not defined no-undef - 3121:1 error '$' is not defined no-undef - 3123:5 error '$' is not defined no-undef - 3124:27 error '$' is not defined no-undef - 3149:12 error '$' is not defined no-undef - 3150:37 error '$' is not defined no-undef - 3151:31 error '$' is not defined no-undef - 3153:13 error '_' is not defined no-undef - 3155:46 error '$' is not defined no-undef - 3155:75 error '$' is not defined no-undef - 3158:17 error '$' is not defined no-undef - 3158:46 error '$' is not defined no-undef - 3162:17 error '$' is not defined no-undef - 3162:46 error '$' is not defined no-undef - 3163:44 error '$' is not defined no-undef - 3163:73 error '$' is not defined no-undef - 3167:17 error '$' is not defined no-undef - 3167:46 error '$' is not defined no-undef - 3169:16 error '$' is not defined no-undef - 3174:16 error '$' is not defined no-undef - 3174:57 error '$' is not defined no-undef - 3176:17 error '$' is not defined no-undef - 3176:49 error '$' is not defined no-undef - 3177:17 error '$' is not defined no-undef - 3177:49 error '$' is not defined no-undef - 3178:17 error '$' is not defined no-undef - 3178:49 error '$' is not defined no-undef - 3180:17 error '$' is not defined no-undef - 3180:49 error '$' is not defined no-undef - 3185:17 error '$' is not defined no-undef - 3187:21 error '_' is not defined no-undef - 3188:51 error '$' is not defined no-undef - 3191:25 error '$' is not defined no-undef - 3211:13 error '$' is not defined no-undef - 3217:13 error '$' is not defined no-undef - 3220:13 error '$' is not defined no-undef - 3225:36 error '$' is not defined no-undef - 3226:37 error '$' is not defined no-undef - 3229:17 error '$' is not defined no-undef - 3241:17 error '$' is not defined no-undef - 3246:17 error '$' is not defined no-undef - 3254:12 error '_' is not defined no-undef - 3256:16 error 'isMobile' is not defined no-undef - 3256:34 error 'isMobile' is not defined no-undef - 3258:17 error '$' is not defined no-undef - 3261:13 error '$' is not defined no-undef - 3262:44 error '$' is not defined no-undef - 3271:9 error '$' is not defined no-undef - 3274:9 error '$' is not defined no-undef - 3277:40 error '$' is not defined no-undef - 3278:41 error '$' is not defined no-undef - 3283:9 error '$' is not defined no-undef - 3286:9 error '$' is not defined no-undef - 3297:9 error '$' is not defined no-undef - 3298:20 error '$' is not defined no-undef - 3299:21 error '$' is not defined no-undef - 3300:22 error '$' is not defined no-undef - 3301:23 error '$' is not defined no-undef - 3306:9 error '$' is not defined no-undef - 3308:9 error '$' is not defined no-undef - 3314:5 error '$' is not defined no-undef - 3315:28 error '$' is not defined no-undef - 3316:29 error '$' is not defined no-undef - 3317:26 error '$' is not defined no-undef - 3318:27 error '$' is not defined no-undef - 3325:22 error '$' is not defined no-undef - 3326:5 error '$' is not defined no-undef - 3326:93 error 'i18n' is not defined no-undef - 3326:150 error 'i18n' is not defined no-undef - 3331:22 error '$' is not defined no-undef - 3333:9 error '$' is not defined no-undef - 3334:9 error '$' is not defined no-undef - 3334:107 error 'i18n' is not defined no-undef - 3334:164 error 'i18n' is not defined no-undef - 3334:200 error 'i18n' is not defined no-undef - 3336:9 error '$' is not defined no-undef - 3344:5 error '$' is not defined no-undef - 3366:5 error '$' is not defined no-undef - 3375:86 error 'i18n' is not defined no-undef - 3376:90 error 'i18n' is not defined no-undef - 3377:86 error 'i18n' is not defined no-undef - 3378:86 error 'i18n' is not defined no-undef - 3387:9 error '$' is not defined no-undef - 3388:9 error '$' is not defined no-undef - 3389:9 error '$' is not defined no-undef - 3390:9 error '$' is not defined no-undef - 3391:9 error '$' is not defined no-undef - 3394:9 error '$' is not defined no-undef - 3395:9 error '$' is not defined no-undef - 3396:9 error '$' is not defined no-undef - 3397:9 error '$' is not defined no-undef - 3398:9 error '$' is not defined no-undef - 3401:9 error '$' is not defined no-undef - 3402:9 error '$' is not defined no-undef - 3403:9 error '$' is not defined no-undef - 3404:9 error '$' is not defined no-undef - 3405:9 error '$' is not defined no-undef - 3409:1 error '$' is not defined no-undef - 3409:34 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 3410:5 error '$' is not defined no-undef - 3411:12 error '$' is not defined no-undef - 3413:19 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 3414:13 error '$' is not defined no-undef - 3416:22 error '$' is not defined no-undef - 3417:23 error '$' is not defined no-undef - 3418:24 error '$' is not defined no-undef - 3419:25 error '$' is not defined no-undef - 3421:13 error '$' is not defined no-undef - 3424:17 error '$' is not defined no-undef - 3430:17 error '$' is not defined no-undef - 3439:8 error '$' is not defined no-undef - 3443:8 error '$' is not defined no-undef - 3444:9 error '$' is not defined no-undef - 3448:9 error '$' is not defined no-undef - 3452:1 error '$' is not defined no-undef - 3454:29 error '$' is not defined no-undef - 3455:24 error '$' is not defined no-undef - 3458:9 error '$' is not defined no-undef - 3460:9 error '$' is not defined no-undef - 3462:9 error '$' is not defined no-undef - 3464:12 error '$' is not defined no-undef - 3465:13 error '$' is not defined no-undef - 3468:12 error '$' is not defined no-undef - 3469:13 error '$' is not defined no-undef - 3469:45 error '$' is not defined no-undef - 3472:12 error '$' is not defined no-undef - 3473:13 error '$' is not defined no-undef - 3473:44 error '$' is not defined no-undef - 3477:9 error '$' is not defined no-undef - 3479:9 error '$' is not defined no-undef - 3483:12 error '$' is not defined no-undef - 3483:59 error '$' is not defined no-undef - 3484:13 error '$' is not defined no-undef - 3489:18 error '$' is not defined no-undef - 3490:13 error '$' is not defined no-undef - 3505:40 error '$' is not defined no-undef - 3507:9 error '$' is not defined no-undef - 3509:43 error '$' is not defined no-undef - 3511:9 error '$' is not defined no-undef - 3513:35 error '$' is not defined no-undef - 3514:30 error '$' is not defined no-undef - 3514:68 error '$' is not defined no-undef - 3516:53 error '$' is not defined no-undef - 3516:104 error '$' is not defined no-undef - 3517:30 error '$' is not defined no-undef - 3519:9 error '$' is not defined no-undef - 3519:47 error '$' is not defined no-undef - 3521:9 error '$' is not defined no-undef - 3522:9 error '$' is not defined no-undef - 3529:1 error '$' is not defined no-undef - 3529:34 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 3530:5 error '$' is not defined no-undef - 3531:12 error '$' is not defined no-undef - 3533:38 error '$' is not defined no-undef - 3533:76 error '$' is not defined no-undef - 3535:13 error '$' is not defined no-undef - 3536:36 error '$' is not defined no-undef - 3537:37 error '$' is not defined no-undef - 3538:34 error '$' is not defined no-undef - 3539:35 error '$' is not defined no-undef - 3543:13 error '$' is not defined no-undef - 3554:17 error '$' is not defined no-undef - 3568:1 error '$' is not defined no-undef - 3573:22 error '$' is not defined no-undef - 3585:5 error '$' is not defined no-undef - 3587:5 error '$' is not defined no-undef - 3590:5 error '$' is not defined no-undef - 3593:5 error '$' is not defined no-undef - 3596:8 error '$' is not defined no-undef - 3598:14 error '$' is not defined no-undef - 3600:14 error '$' is not defined no-undef - 3602:14 error '$' is not defined no-undef - 3607:23 error '$' is not defined no-undef - 3608:24 error '$' is not defined no-undef - 3612:5 error '$' is not defined no-undef - 3631:33 error '$' is not defined no-undef - 3644:5 error '$' is not defined no-undef - 3652:9 error '$' is not defined no-undef - 3653:9 error '$' is not defined no-undef - 3654:9 error '$' is not defined no-undef - 3656:9 error '$' is not defined no-undef - 3657:9 error '$' is not defined no-undef - 3658:9 error '$' is not defined no-undef - 3660:9 error '$' is not defined no-undef - 3661:9 error '$' is not defined no-undef - 3662:9 error '$' is not defined no-undef - 3664:9 error '$' is not defined no-undef - 3665:9 error '$' is not defined no-undef - 3666:9 error '$' is not defined no-undef - 3675:8 error '$' is not defined no-undef - 3675:50 error '$' is not defined no-undef - 3675:99 error '$' is not defined no-undef - 3678:13 error '$' is not defined no-undef - 3680:13 error '$' is not defined no-undef - 3688:15 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindow2FASetup.js - 58:38 error 'puter' is not defined no-undef - 70:42 error 'puter' is not defined no-undef - 84:53 error 'value' is defined but never used @typescript-eslint/no-unused-vars - 88:42 error 'puter' is not defined no-undef - 114:35 error 'i18n' is not defined no-undef - 117:35 error 'i18n' is not defined no-undef - 122:35 error 'i18n' is not defined no-undef - 129:35 error 'i18n' is not defined no-undef - 153:35 error 'i18n' is not defined no-undef - 156:35 error 'i18n' is not defined no-undef - 163:35 error 'i18n' is not defined no-undef - 167:33 error 'i18n' is not defined no-undef - 168:33 error 'i18n' is not defined no-undef - 174:36 error 'i18n' is not defined no-undef - 188:9 error '$' is not defined no-undef - 225:28 error 'this_window' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowChangePassword.js - 35:66 error 'i18n' is not defined no-undef - 40:62 error 'i18n' is not defined no-undef - 45:70 error 'i18n' is not defined no-undef - 50:102 error 'i18n' is not defined no-undef - 75:13 error '$' is not defined no-undef - 87:5 error '$' is not defined no-undef - 87:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 88:34 error '$' is not defined no-undef - 89:30 error '$' is not defined no-undef - 90:38 error '$' is not defined no-undef - 93:9 error '$' is not defined no-undef - 97:13 error '$' is not defined no-undef - 98:13 error '$' is not defined no-undef - 103:13 error '$' is not defined no-undef - 103:55 error 'i18n' is not defined no-undef - 104:13 error '$' is not defined no-undef - 110:13 error '$' is not defined no-undef - 110:55 error 'i18n' is not defined no-undef - 111:13 error '$' is not defined no-undef - 115:9 error '$' is not defined no-undef - 117:9 error '$' is not defined no-undef - 129:32 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 130:17 error '$' is not defined no-undef - 130:61 error 'i18n' is not defined no-undef - 131:17 error '$' is not defined no-undef - 132:17 error '$' is not defined no-undef - 135:17 error '$' is not defined no-undef - 135:59 error 'html_encode' is not defined no-undef - 136:17 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowChangeUsername.js - 35:70 error 'i18n' is not defined no-undef - 40:102 error 'i18n' is not defined no-undef - 44:16 error 'i18n' is not defined no-undef - 65:13 error '$' is not defined no-undef - 77:5 error '$' is not defined no-undef - 77:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 79:9 error '$' is not defined no-undef - 81:30 error '$' is not defined no-undef - 84:13 error '$' is not defined no-undef - 84:55 error 'i18n' is not defined no-undef - 85:13 error '$' is not defined no-undef - 89:9 error '$' is not defined no-undef - 92:9 error '$' is not defined no-undef - 94:9 error '$' is not defined no-undef - 96:9 error '$' is not defined no-undef - 107:32 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 108:17 error '$' is not defined no-undef - 108:61 error 'i18n' is not defined no-undef - 109:17 error '$' is not defined no-undef - 110:17 error '$' is not defined no-undef - 116:17 error '$' is not defined no-undef - 118:17 error '$' is not defined no-undef - 121:17 error '$' is not defined no-undef - 121:59 error 'html_encode' is not defined no-undef - 122:17 error '$' is not defined no-undef - 124:17 error '$' is not defined no-undef - 126:17 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowClaimReferral.js - 23:38 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 29:172 error 'i18n' is not defined no-undef - 30:180 error 'i18n' is not defined no-undef - 31:115 error 'i18n' is not defined no-undef - 50:28 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 67:5 error '$' is not defined no-undef - 67:71 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 69:9 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowColorPicker.js - 33:24 error Promise executor functions should not be async no-async-promise-executor - 45:105 error 'i18n' is not defined no-undef - 51:20 error 'i18n' is not defined no-undef - 75:35 error 'iro' is not defined no-undef - 75:51 error '$' is not defined no-undef - 78:40 error 'iro' is not defined no-undef - 86:40 error 'iro' is not defined no-undef - 95:40 error 'iro' is not defined no-undef - 117:9 error '$' is not defined no-undef - 117:63 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 119:13 error '$' is not defined no-undef - 121:9 error '$' is not defined no-undef - 121:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 122:13 error '$' is not defined no-undef - 123:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowDesktopBGSettings.js - 25:24 error Promise executor functions should not be async no-async-promise-executor - 27:41 error '$' is not defined no-undef - 29:13 error 'bg_color' is assigned a value but never used @typescript-eslint/no-unused-vars - 35:28 error 'i18n' is not defined no-undef - 37:49 error 'i18n' is not defined no-undef - 38:49 error 'i18n' is not defined no-undef - 39:47 error 'i18n' is not defined no-undef - 44:32 error 'i18n' is not defined no-undef - 45:83 error 'i18n' is not defined no-undef - 46:58 error 'i18n' is not defined no-undef - 48:51 error 'i18n' is not defined no-undef - 49:52 error 'i18n' is not defined no-undef - 50:53 error 'i18n' is not defined no-undef - 51:52 error 'i18n' is not defined no-undef - 57:32 error 'i18n' is not defined no-undef - 75:90 error 'i18n' is not defined no-undef - 76:111 error 'i18n' is not defined no-undef - 82:20 error 'i18n' is not defined no-undef - 97:17 error '$' is not defined no-undef - 114:9 error '$' is not defined no-undef - 117:13 error '$' is not defined no-undef - 119:13 error '$' is not defined no-undef - 120:13 error '$' is not defined no-undef - 122:13 error '$' is not defined no-undef - 123:13 error '$' is not defined no-undef - 126:13 error '$' is not defined no-undef - 129:9 error '$' is not defined no-undef - 129:117 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 130:51 error '$' is not defined no-undef - 132:9 error '$' is not defined no-undef - 132:96 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 133:51 error '$' is not defined no-undef - 135:9 error '$' is not defined no-undef - 137:25 error '$' is not defined no-undef - 144:9 error '$' is not defined no-undef - 144:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 145:25 error '$' is not defined no-undef - 150:9 error '$' is not defined no-undef - 150:69 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 151:26 error '$' is not defined no-undef - 152:13 error '$' is not defined no-undef - 154:17 error '$' is not defined no-undef - 156:17 error '$' is not defined no-undef - 164:9 error '$' is not defined no-undef - 164:64 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 167:17 error '$' is not defined no-undef - 186:17 error '$' is not defined no-undef - 188:20 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 193:9 error '$' is not defined no-undef - 198:30 error '$' is not defined no-undef - 209:9 error '$' is not defined no-undef - 210:13 error '$' is not defined no-undef - 211:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowEmailConfirmationRequired.js - 24:24 error Promise executor functions should not be async no-async-promise-executor - 34:31 error 'html_encode' is not defined no-undef - 35:87 error 'i18n' is not defined no-undef - 51:55 error 'i18n' is not defined no-undef - 54:62 error 'i18n' is not defined no-undef - 79:17 error '$' is not defined no-undef - 94:9 error '$' is not defined no-undef - 96:9 error '$' is not defined no-undef - 100:13 error '$' is not defined no-undef - 101:13 error '$' is not defined no-undef - 110:13 error '$' is not defined no-undef - 113:17 error '$' is not defined no-undef - 131:29 error '$' is not defined no-undef - 135:29 error '$' is not defined no-undef - 136:29 error '$' is not defined no-undef - 137:29 error '$' is not defined no-undef - 138:29 error '$' is not defined no-undef - 139:29 error '$' is not defined no-undef - 140:29 error '$' is not defined no-undef - 144:25 error '$' is not defined no-undef - 144:58 error 'html_encode' is not defined no-undef - 145:25 error '$' is not defined no-undef - 146:25 error '$' is not defined no-undef - 147:25 error '$' is not defined no-undef - 148:25 error '$' is not defined no-undef - 149:25 error '$' is not defined no-undef - 159:9 error '$' is not defined no-undef - 159:68 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 160:13 error '$' is not defined no-undef - 173:42 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 180:21 error '$' is not defined no-undef - 188:9 error '$' is not defined no-undef - 188:71 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 190:13 error '$' is not defined no-undef - 232:17 error '$' is not defined no-undef - 233:17 error '$' is not defined no-undef - 276:1 error 'def' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowFeedback.js - 24:24 error Promise executor functions should not be async no-async-promise-executor - 29:26 error 'i18n' is not defined no-undef - 38:35 error 'html_encode' is not defined no-undef - 39:106 error 'i18n' is not defined no-undef - 43:104 error 'i18n' is not defined no-undef - 45:142 error 'i18n' is not defined no-undef - 50:20 error 'i18n' is not defined no-undef - 71:17 error '$' is not defined no-undef - 82:9 error '$' is not defined no-undef - 82:70 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 83:29 error '$' is not defined no-undef - 85:17 error '$' is not defined no-undef - 86:13 error '$' is not defined no-undef - 97:42 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 98:21 error '$' is not defined no-undef - 99:21 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowFontPicker.js - 52:24 error Promise executor functions should not be async no-async-promise-executor - 58:164 error 'html_encode' is not defined no-undef - 58:209 error 'html_encode' is not defined no-undef - 58:234 error 'html_encode' is not defined no-undef - 63:105 error 'i18n' is not defined no-undef - 93:35 error '$' is not defined no-undef - 95:48 error '$' is not defined no-undef - 110:9 error '$' is not defined no-undef - 110:63 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 111:34 error '$' is not defined no-undef - 112:13 error '$' is not defined no-undef - 114:9 error '$' is not defined no-undef - 114:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 115:13 error '$' is not defined no-undef - 116:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowItemProperties.js - 28:128 error 'i18n' is not defined no-undef - 29:133 error 'i18n' is not defined no-undef - 34:57 error 'i18n' is not defined no-undef - 35:57 error 'i18n' is not defined no-undef - 36:89 error 'i18n' is not defined no-undef - 37:89 error 'i18n' is not defined no-undef - 38:57 error 'i18n' is not defined no-undef - 40:57 error 'i18n' is not defined no-undef - 41:57 error 'i18n' is not defined no-undef - 42:57 error 'i18n' is not defined no-undef - 43:57 error 'i18n' is not defined no-undef - 44:57 error 'i18n' is not defined no-undef - 45:57 error 'i18n' is not defined no-undef - 47:57 error 'i18n' is not defined no-undef - 77:28 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 95:5 error '$' is not defined no-undef - 95:61 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 97:9 error '$' is not defined no-undef - 99:9 error '$' is not defined no-undef - 101:9 error '$' is not defined no-undef - 103:9 error '$' is not defined no-undef - 103:64 error '$' is not defined no-undef - 108:5 error 'puter' is not defined no-undef - 117:17 error '$' is not defined no-undef - 120:13 error '$' is not defined no-undef - 122:13 error '$' is not defined no-undef - 128:25 error '$' is not defined no-undef - 129:25 error '$' is not defined no-undef - 132:25 error '$' is not defined no-undef - 133:25 error '$' is not defined no-undef - 135:24 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 142:17 error '$' is not defined no-undef - 145:13 error '$' is not defined no-undef - 147:13 error '$' is not defined no-undef - 149:13 error '$' is not defined no-undef - 151:13 error '$' is not defined no-undef - 151:94 error 'timeago' is not defined no-undef - 153:13 error '$' is not defined no-undef - 153:92 error 'timeago' is not defined no-undef - 157:21 error '$' is not defined no-undef - 157:122 error 'html_encode' is not defined no-undef - 157:222 error 'html_encode' is not defined no-undef - 157:257 error 'html_encode' is not defined no-undef - 157:347 error 'html_encode' is not defined no-undef - 161:17 error '$' is not defined no-undef - 166:21 error '$' is not defined no-undef - 167:124 error 'timeago' is not defined no-undef - 171:17 error '$' is not defined no-undef - 174:13 error '$' is not defined no-undef - 175:17 error 'puter' is not defined no-undef - 176:21 error '$' is not defined no-undef - 178:25 error '$' is not defined no-undef - 178:82 error '$' is not defined no-undef - 179:28 error '$' is not defined no-undef - 180:29 error '$' is not defined no-undef - 182:29 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowLogin.js - 39:24 error Promise executor functions should not be async no-async-promise-executor - 47:54 error 'i18n' is not defined no-undef - 54:79 error 'i18n' is not defined no-undef - 59:66 error 'i18n' is not defined no-undef - 67:104 error 'i18n' is not defined no-undef - 69:112 error 'i18n' is not defined no-undef - 77:66 error 'i18n' is not defined no-undef - 83:9 error 'puter' is not defined no-undef - 86:13 error '$' is not defined no-undef - 86:56 error 'html_encode' is not defined no-undef - 86:99 error 'html_encode' is not defined no-undef - 86:145 error 'html_encode' is not defined no-undef - 89:13 error '$' is not defined no-undef - 117:17 error '$' is not defined no-undef - 135:9 error '$' is not defined no-undef - 135:73 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 144:9 error '$' is not defined no-undef - 144:62 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 145:36 error '$' is not defined no-undef - 146:30 error '$' is not defined no-undef - 161:13 error '$' is not defined no-undef - 167:13 error '$' is not defined no-undef - 187:45 error 'i18n' is not defined no-undef - 190:45 error 'i18n' is not defined no-undef - 227:45 error '$' is not defined no-undef - 232:68 error 'i18n' is not defined no-undef - 238:44 error 'i18n' is not defined no-undef - 256:45 error 'i18n' is not defined no-undef - 259:45 error 'i18n' is not defined no-undef - 294:45 error '$' is not defined no-undef - 299:68 error 'i18n' is not defined no-undef - 304:44 error 'i18n' is not defined no-undef - 343:21 error '$' is not defined no-undef - 346:43 error '$' is not defined no-undef - 351:44 error 'html_encode' is not defined no-undef - 367:75 error 'html_encode' is not defined no-undef - 370:21 error '$' is not defined no-undef - 375:9 error '$' is not defined no-undef - 381:9 error '$' is not defined no-undef - 381:79 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 383:13 error '$' is not defined no-undef - 396:9 error '$' is not defined no-undef - 396:89 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 399:13 error '$' is not defined no-undef - 400:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowLoginInProgress.js - 23:24 error Promise executor functions should not be async no-async-promise-executor - 23:31 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 60:32 error 'this_window' is defined but never used @typescript-eslint/no-unused-vars - 72:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowManageSessions.js - 28:16 error 'i18n' is not defined no-undef - 87:37 error 'i18n' is not defined no-undef - 92:26 error 'i18n' is not defined no-undef - 95:32 error 'i18n' is not defined no-undef - 100:32 error 'i18n' is not defined no-undef - 115:46 error 'puter' is not defined no-undef - 146:42 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowMyWebsites.js - 24:35 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 48:28 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 66:9 error '$' is not defined no-undef - 71:28 error 'i18n' is not defined no-undef - 74:5 error 'puter' is not defined no-undef - 84:108 error 'html_encode' is not defined no-undef - 87:79 error 'html_encode' is not defined no-undef - 87:130 error 'html_encode' is not defined no-undef - 88:50 error 'html_encode' is not defined no-undef - 89:40 error 'html_encode' is not defined no-undef - 92:89 error 'html_encode' is not defined no-undef - 92:148 error 'html_encode' is not defined no-undef - 92:200 error 'html_encode' is not defined no-undef - 93:112 error 'html_encode' is not defined no-undef - 93:154 error 'i18n' is not defined no-undef - 96:85 error 'html_encode' is not defined no-undef - 96:181 error 'i18n' is not defined no-undef - 99:17 error '$' is not defined no-undef - 103:17 error '$' is not defined no-undef - 108:36 error 'i18n' is not defined no-undef - 114:1 error '$' is not defined no-undef - 117:15 error '$' is not defined no-undef - 118:16 error '$' is not defined no-undef - 120:14 error '$' is not defined no-undef - 126:1 error '$' is not defined no-undef - 139:34 error 'i18n' is not defined no-undef - 142:40 error 'i18n' is not defined no-undef - 147:40 error 'i18n' is not defined no-undef - 155:21 error '$' is not defined no-undef - 159:40 error '$' is not defined no-undef - 172:29 error '$' is not defined no-undef - 172:62 error '$' is not defined no-undef - 181:1 error '$' is not defined no-undef - 182:5 error 'puter' is not defined no-undef - 184:9 error '$' is not defined no-undef - 186:9 error '$' is not defined no-undef - 189:13 error '$' is not defined no-undef - 189:60 error '$' is not defined no-undef - 190:13 error '$' is not defined no-undef - 190:50 error '$' is not defined no-undef - 192:13 error '$' is not defined no-undef - 192:34 error '$' is not defined no-undef - 193:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowNewPassword.js - 26:24 error Promise executor functions should not be async no-async-promise-executor - 26:31 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 36:66 error 'i18n' is not defined no-undef - 41:74 error 'i18n' is not defined no-undef - 46:106 error 'i18n' is not defined no-undef - 62:30 error 'i18n' is not defined no-undef - 69:30 error 'i18n' is not defined no-undef - 75:26 error 'i18n' is not defined no-undef - 107:17 error '$' is not defined no-undef - 122:17 error '$' is not defined no-undef - 123:17 error '$' is not defined no-undef - 130:13 error '$' is not defined no-undef - 138:9 error '$' is not defined no-undef - 138:72 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 139:34 error '$' is not defined no-undef - 140:42 error '$' is not defined no-undef - 143:17 error '$' is not defined no-undef - 144:17 error '$' is not defined no-undef - 148:17 error '$' is not defined no-undef - 149:17 error '$' is not defined no-undef - 156:17 error '$' is not defined no-undef - 156:59 error 'i18n' is not defined no-undef - 157:17 error '$' is not defined no-undef - 161:13 error '$' is not defined no-undef - 163:13 error '$' is not defined no-undef - 172:42 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 173:21 error '$' is not defined no-undef - 181:40 error 'i18n' is not defined no-undef - 198:21 error '$' is not defined no-undef - 198:63 error 'html_encode' is not defined no-undef - 199:21 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowProgress.js - 49:50 error 'i18n' is not defined no-undef - 69:68 error 'html_encode' is not defined no-undef - 115:20 error 'i18n' is not defined no-undef - 118:17 error '$' is not defined no-undef - 126:16 error 'i18n' is not defined no-undef - 129:13 error '$' is not defined no-undef - 144:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowPublishWebsite.js - 28:31 error 'html_encode' is not defined no-undef - 29:51 error 'i18n' is not defined no-undef - 29:95 error 'html_encode' is not defined no-undef - 30:165 error 'html_encode' is not defined no-undef - 31:133 error 'i18n' is not defined no-undef - 39:61 error 'i18n' is not defined no-undef - 40:255 error 'html_encode' is not defined no-undef - 43:84 error 'html_encode' is not defined no-undef - 45:97 error 'i18n' is not defined no-undef - 67:13 error '$' is not defined no-undef - 68:13 error '$' is not defined no-undef - 82:5 error '$' is not defined no-undef - 82:60 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 86:25 error '$' is not defined no-undef - 89:9 error '$' is not defined no-undef - 91:9 error 'puter' is not defined no-undef - 93:36 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 95:17 error '$' is not defined no-undef - 96:21 error '$' is not defined no-undef - 97:21 error '$' is not defined no-undef - 98:21 error '$' is not defined no-undef - 99:21 error '$' is not defined no-undef - 103:17 error '$' is not defined no-undef - 105:21 error '$' is not defined no-undef - 107:21 error '$' is not defined no-undef - 107:60 error '$' is not defined no-undef - 113:17 error '$' is not defined no-undef - 119:17 error '$' is not defined no-undef - 121:17 error '$' is not defined no-undef - 125:5 error '$' is not defined no-undef - 126:9 error '$' is not defined no-undef - 130:1 error '$' is not defined no-undef - 130:70 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowQR.js - 36:13 error 'i18n' is not defined no-undef - 42:11 error 'el_window' is assigned a value but never used @typescript-eslint/no-unused-vars - 64:28 error 'this_window' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowRecoverPassword.js - 24:24 error Promise executor functions should not be async no-async-promise-executor - 24:31 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 29:87 error 'i18n' is not defined no-undef - 33:32 error 'i18n' is not defined no-undef - 35:135 error 'i18n' is not defined no-undef - 60:17 error '$' is not defined no-undef - 74:9 error '$' is not defined no-undef - 81:9 error '$' is not defined no-undef - 81:72 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 83:25 error '$' is not defined no-undef - 90:13 error '$' is not defined no-undef - 105:21 error '$' is not defined no-undef - 118:21 error '$' is not defined no-undef - 118:54 error 'html_encode' is not defined no-undef - 119:21 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowRefer.js - 24:30 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 31:181 error 'i18n' is not defined no-undef - 32:51 error 'i18n' is not defined no-undef - 34:125 error 'i18n' is not defined no-undef - 54:28 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 71:5 error '$' is not defined no-undef - 73:5 error '$' is not defined no-undef - 73:87 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 74:59 error 'i18n' is not defined no-undef - 74:112 error 'i18n' is not defined no-undef - 78:151 error 'i18n' is not defined no-undef - 97:5 error '$' is not defined no-undef - 97:90 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 98:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 101:35 error '$' is not defined no-undef - 107:13 error '$' is not defined no-undef - 112:9 error '$' is not defined no-undef - 112:22 error 'i18n' is not defined no-undef - 114:13 error '$' is not defined no-undef - 114:30 error 'i18n' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowRequestPermission.js - 25:24 error Promise executor functions should not be async no-async-promise-executor - 47:13 error 'action_name' is assigned a value but never used @typescript-eslint/no-unused-vars - 64:87 error 'html_encode' is not defined no-undef - 64:163 error 'html_encode' is not defined no-undef - 66:53 error 'html_encode' is not defined no-undef - 68:131 error 'i18n' is not defined no-undef - 69:136 error 'i18n' is not defined no-undef - 97:32 error 'this_window' is defined but never used @typescript-eslint/no-unused-vars - 111:9 error '$' is not defined no-undef - 111:73 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 112:13 error '$' is not defined no-undef - 115:23 error 'res' is assigned a value but never used @typescript-eslint/no-unused-vars - 135:9 error '$' is not defined no-undef - 135:72 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 136:13 error '$' is not defined no-undef - 137:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowSaveAccount.js - 29:24 error Promise executor functions should not be async no-async-promise-executor - 36:35 error 'html_encode' is not defined no-undef - 37:75 error 'i18n' is not defined no-undef - 38:103 error 'i18n' is not defined no-undef - 44:80 error 'i18n' is not defined no-undef - 46:75 error 'i18n' is not defined no-undef - 53:70 error 'i18n' is not defined no-undef - 58:67 error 'i18n' is not defined no-undef - 63:70 error 'i18n' is not defined no-undef - 69:105 error 'i18n' is not defined no-undef - 98:21 error '$' is not defined no-undef - 100:21 error '$' is not defined no-undef - 116:9 error '$' is not defined no-undef - 116:63 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 120:28 error '$' is not defined no-undef - 123:25 error '$' is not defined no-undef - 126:28 error '$' is not defined no-undef - 129:13 error '$' is not defined no-undef - 132:13 error '$' is not defined no-undef - 133:13 error '$' is not defined no-undef - 134:13 error '$' is not defined no-undef - 137:13 error '$' is not defined no-undef - 139:13 error '$' is not defined no-undef - 168:21 error '$' is not defined no-undef - 169:25 error '$' is not defined no-undef - 172:21 error '$' is not defined no-undef - 175:21 error '$' is not defined no-undef - 175:65 error 'html_encode' is not defined no-undef - 176:21 error '$' is not defined no-undef - 178:21 error '$' is not defined no-undef - 179:21 error '$' is not defined no-undef - 184:9 error '$' is not defined no-undef - 190:9 error '$' is not defined no-undef - 191:13 error '$' is not defined no-undef - 195:9 error '$' is not defined no-undef - 199:1 error 'def' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowSearch.js - 26:31 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 52:28 error 'el_window' is defined but never used @typescript-eslint/no-unused-vars - 73:5 error '$' is not defined no-undef - 79:19 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 110:48 error 'puter' is not defined no-undef - 130:38 error 'html_encode' is not defined no-undef - 131:37 error 'html_encode' is not defined no-undef - 132:40 error 'html_encode' is not defined no-undef - 136:22 error 'html_encode' is not defined no-undef - 149:5 error '$' is not defined no-undef - 149:61 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 150:29 error '$' is not defined no-undef - 151:34 error '$' is not defined no-undef - 156:1 error '$' is not defined no-undef - 156:58 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 157:20 error '$' is not defined no-undef - 158:19 error '$' is not defined no-undef - 159:20 error '$' is not defined no-undef - 159:62 error '$' is not defined no-undef - 177:9 error '$' is not defined no-undef - 184:32 error '$' is not defined no-undef - 201:12 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 224:28 error 'i18n' is not defined no-undef - 230:28 error 'i18n' is not defined no-undef - 256:5 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowSessionList.js - 28:24 error Promise executor functions should not be async no-async-promise-executor - 32:42 error 'i18n' is not defined no-undef - 35:320 error 'i18n' is not defined no-undef - 46:206 error 'i18n' is not defined no-undef - 72:32 error 'this_window' is defined but never used @typescript-eslint/no-unused-vars - 85:9 error '$' is not defined no-undef - 85:81 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 108:9 error '$' is not defined no-undef - 108:82 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 109:13 error '$' is not defined no-undef - 133:9 error '$' is not defined no-undef - 133:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 134:13 error '$' is not defined no-undef - 137:37 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowShare.js - 22:24 error Promise executor functions should not be async no-async-promise-executor - 22:31 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 66:39 error 'html_encode' is not defined no-undef - 79:79 error 'i18n' is not defined no-undef - 82:95 error 'html_encode' is not defined no-undef - 85:60 error 'i18n' is not defined no-undef - 86:60 error 'i18n' is not defined no-undef - 90:142 error 'i18n' is not defined no-undef - 98:113 error 'i18n' is not defined no-undef - 104:20 error 'i18n' is not defined no-undef - 119:17 error '$' is not defined no-undef - 137:9 error 'puter' is not defined no-undef - 141:21 error '$' is not defined no-undef - 144:24 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 145:21 error 'puter' is not defined no-undef - 151:13 error 'perms' is assigned a value but never used @typescript-eslint/no-unused-vars - 155:13 error 'puter' is not defined no-undef - 167:103 error 'i18n' is not defined no-undef - 178:41 error 'recipient' is defined but never used @typescript-eslint/no-unused-vars - 188:99 error 'i18n' is not defined no-undef - 190:99 error 'i18n' is not defined no-undef - 205:17 error '$' is not defined no-undef - 207:20 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 212:9 error '$' is not defined no-undef - 216:13 error '$' is not defined no-undef - 219:32 error '$' is not defined no-undef - 225:16 error 'is_email' is not defined no-undef - 232:13 error '$' is not defined no-undef - 233:43 error '$' is not defined no-undef - 233:124 error '$' is not defined no-undef - 240:17 error '$' is not defined no-undef - 240:50 error 'i18n' is not defined no-undef - 241:17 error '$' is not defined no-undef - 247:17 error '$' is not defined no-undef - 247:50 error 'i18n' is not defined no-undef - 248:17 error '$' is not defined no-undef - 252:17 error '$' is not defined no-undef - 252:50 error 'i18n' is not defined no-undef - 253:17 error '$' is not defined no-undef - 258:13 error '$' is not defined no-undef - 261:17 error 'share_result' is defined but never used @typescript-eslint/no-unused-vars - 264:16 error '$' is not defined no-undef - 267:13 error '$' is not defined no-undef - 268:22 error 'puter' is not defined no-undef - 272:50 error 'puter' is not defined no-undef - 290:33 error '$' is not defined no-undef - 291:33 error '$' is not defined no-undef - 297:25 error '$' is not defined no-undef - 306:87 error 'i18n' is not defined no-undef - 316:25 error '$' is not defined no-undef - 317:25 error '$' is not defined no-undef - 320:25 error '$' is not defined no-undef - 323:25 error '$' is not defined no-undef - 328:29 error 'puter' is not defined no-undef - 336:25 error '$' is not defined no-undef - 337:25 error '$' is not defined no-undef - 341:21 error '$' is not defined no-undef - 348:17 error '$' is not defined no-undef - 351:13 error '$' is not defined no-undef - 356:9 error '$' is not defined no-undef - 357:16 error '$' is not defined no-undef - 358:17 error '$' is not defined no-undef - 361:17 error '$' is not defined no-undef - 368:1 error '$' is not defined no-undef - 369:30 error '$' is not defined no-undef - 370:22 error '$' is not defined no-undef - 373:5 error '$' is not defined no-undef - 375:11 error 'puter' is not defined no-undef - 378:40 error 'puter' is not defined no-undef - 385:14 error 'response' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowSignup.js - 31:24 error Promise executor functions should not be async no-async-promise-executor - 44:55 error 'i18n' is not defined no-undef - 51:70 error 'i18n' is not defined no-undef - 52:76 error 'html_encode' is not defined no-undef - 56:67 error 'i18n' is not defined no-undef - 57:73 error 'html_encode' is not defined no-undef - 61:70 error 'i18n' is not defined no-undef - 68:53 error 'i18n' is not defined no-undef - 70:105 error 'i18n' is not defined no-undef - 76:61 error 'i18n' is not defined no-undef - 103:17 error '$' is not defined no-undef - 121:9 error '$' is not defined no-undef - 121:78 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 122:13 error '$' is not defined no-undef - 135:9 error '$' is not defined no-undef - 135:63 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 137:28 error '$' is not defined no-undef - 140:17 error '$' is not defined no-undef - 140:61 error 'i18n' is not defined no-undef - 141:17 error '$' is not defined no-undef - 146:25 error '$' is not defined no-undef - 150:17 error '$' is not defined no-undef - 150:61 error 'i18n' is not defined no-undef - 151:17 error '$' is not defined no-undef - 156:17 error '$' is not defined no-undef - 156:61 error 'i18n' is not defined no-undef - 157:17 error '$' is not defined no-undef - 162:28 error '$' is not defined no-undef - 166:17 error '$' is not defined no-undef - 166:61 error 'i18n' is not defined no-undef - 167:17 error '$' is not defined no-undef - 173:17 error '$' is not defined no-undef - 173:61 error 'i18n' is not defined no-undef - 174:17 error '$' is not defined no-undef - 179:31 error '$' is not defined no-undef - 182:13 error '$' is not defined no-undef - 188:13 error '$' is not defined no-undef - 211:25 error '$' is not defined no-undef - 219:21 error '$' is not defined no-undef - 220:21 error '$' is not defined no-undef - 222:21 error '$' is not defined no-undef - 227:9 error '$' is not defined no-undef - 234:9 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowTaskManager.js - 37:28 error 'i18n' is not defined no-undef - 39:28 error 'i18n' is not defined no-undef - 42:24 error 'i18n' is not defined no-undef - 50:28 error 'i18n' is not defined no-undef - 55:28 error 'i18n' is not defined no-undef - 86:9 error '$' is not defined no-undef - 94:17 error 'i18n' is not defined no-undef - 95:17 error 'i18n' is not defined no-undef - 96:17 error 'i18n' is not defined no-undef - 103:19 error 'new_uuids' is assigned a value but never used @typescript-eslint/no-unused-vars - 256:13 error '$' is not defined no-undef - 262:13 error '$' is not defined no-undef - 262:53 error 'i18n' is not defined no-undef - 265:13 error '$' is not defined no-undef - 265:55 error 'i18n' is not defined no-undef - 268:24 error '$' is not defined no-undef - 291:9 error '$' is not defined no-undef - 296:31 error 'i18n' is not defined no-undef - 302:31 error 'i18n' is not defined no-undef - 326:11 error 'w' is assigned a value but never used @typescript-eslint/no-unused-vars - 328:16 error 'i18n' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowThemeDialog.js - 40:16 error 'i18n' is not defined no-undef - 46:16 error 'i18n' is not defined no-undef - 52:16 error 'i18n' is not defined no-undef - 58:16 error 'i18n' is not defined no-undef - 67:24 error 'i18n' is not defined no-undef - 86:11 error 'w' is assigned a value but never used @typescript-eslint/no-unused-vars - 87:16 error 'i18n' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/UI/UIWindowWelcome.js - 24:5 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 71:28 error 'this_window' is defined but never used @typescript-eslint/no-unused-vars - 76:13 error 'puter' is not defined no-undef - 87:5 error '$' is not defined no-undef - 88:9 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/definitions.js - 92:24 error 'other_process' is defined but never used @typescript-eslint/no-unused-vars - 140:13 error '$' is not defined no-undef - 146:26 error 'context' is defined but never used @typescript-eslint/no-unused-vars - 193:13 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/extensions/groups-manager.js - 1:19 error 'use' is not defined no-undef - 2:19 error 'use' is not defined no-undef - 47:24 error 'puter' is not defined no-undef - 78:1 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/extensions/modify-user-options-menu.js - 1:1 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/globals.js - 48:8 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 58:8 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 93:8 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 136:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 168:1 error '$' is not defined no-undef - 175:5 error '$' is not defined no-undef - 178:12 error '$' is not defined no-undef - 180:21 error '$' is not defined no-undef - 181:20 error '$' is not defined no-undef - 196:45 error '$' is not defined no-undef - 197:45 error '$' is not defined no-undef - 209:9 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/helpers.js - 42:21 error '$' is not defined no-undef - 185:25 error 'i18n' is not defined no-undef - 187:25 error 'i18n' is not defined no-undef - 189:25 error 'i18n' is not defined no-undef - 191:25 error 'i18n' is not defined no-undef - 193:25 error 'i18n' is not defined no-undef - 195:25 error 'i18n' is not defined no-undef - 320:21 error 'jQuery' is not defined no-undef - 323:24 error 'jQuery' is not defined no-undef - 362:35 error 'jQuery' is not defined no-undef - 362:56 error 'jQuery' is not defined no-undef - 371:21 error 'jQuery' is not defined no-undef - 386:53 error 'jQuery' is not defined no-undef - 386:74 error 'jQuery' is not defined no-undef - 395:27 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 405:9 error 'taphold' is assigned a value but never used @typescript-eslint/no-unused-vars - 413:28 error 'namespaces' is defined but never used @typescript-eslint/no-unused-vars - 420:4 error 'jQuery' is not defined no-undef - 425:24 error 'puter' is not defined no-undef - 426:12 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 445:9 error '$' is not defined no-undef - 445:31 error 'html_encode' is not defined no-undef - 452:5 error 'puter' is not defined no-undef - 457:47 error 'html_encode' is not defined no-undef - 462:17 error '$' is not defined no-undef - 471:13 error 'puter' is not defined no-undef - 488:5 error 'puter' is not defined no-undef - 523:9 error '$' is not defined no-undef - 524:9 error '$' is not defined no-undef - 534:9 error 'puter' is not defined no-undef - 567:5 error '$' is not defined no-undef - 603:21 error '$' is not defined no-undef - 611:28 error 'res' is defined but never used @typescript-eslint/no-unused-vars - 646:28 error '$' is not defined no-undef - 674:5 error 'puter' is not defined no-undef - 678:13 error 'puter' is not defined no-undef - 689:36 error 'i18n' is not defined no-undef - 713:25 error 'saved' is assigned a value but never used @typescript-eslint/no-unused-vars - 718:25 error 'login_result' is assigned a value but never used @typescript-eslint/no-unused-vars - 737:9 error '$' is not defined no-undef - 745:5 error '$' is not defined no-undef - 778:5 error '$' is not defined no-undef - 802:28 error 'i18n' is not defined no-undef - 807:15 error 'puter' is not defined no-undef - 812:40 error '$' is not defined no-undef - 812:85 error 'html_encode' is not defined no-undef - 812:110 error 'html_encode' is not defined no-undef - 840:12 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 854:9 error 'puter' is not defined no-undef - 857:38 error '$' is not defined no-undef - 857:83 error 'html_encode' is not defined no-undef - 857:108 error 'html_encode' is not defined no-undef - 876:48 error 'i18n' is not defined no-undef - 883:29 error 'puter' is not defined no-undef - 891:40 error 'puter' is not defined no-undef - 937:15 error 'puter' is not defined no-undef - 951:5 error '$' is not defined no-undef - 952:56 error '$' is not defined no-undef - 975:33 error 'i18n' is not defined no-undef - 987:38 error 'puter' is not defined no-undef - 997:25 error '$' is not defined no-undef - 1008:49 error 'html_encode' is not defined no-undef - 1010:41 error 'i18n' is not defined no-undef - 1011:78 error 'i18n' is not defined no-undef - 1012:78 error 'i18n' is not defined no-undef - 1012:119 error 'i18n' is not defined no-undef - 1084:29 error '$' is not defined no-undef - 1087:33 error 'i18n' is not defined no-undef - 1096:38 error 'puter' is not defined no-undef - 1106:25 error '$' is not defined no-undef - 1117:49 error 'html_encode' is not defined no-undef - 1119:42 error 'i18n' is not defined no-undef - 1120:70 error 'i18n' is not defined no-undef - 1121:70 error 'i18n' is not defined no-undef - 1121:111 error 'i18n' is not defined no-undef - 1178:8 error '$' is not defined no-undef - 1182:5 error '$' is not defined no-undef - 1182:26 error '$' is not defined no-undef - 1184:9 error '$' is not defined no-undef - 1184:24 error '$' is not defined no-undef - 1187:9 error '$' is not defined no-undef - 1187:34 error '$' is not defined no-undef - 1191:15 error 'puter' is not defined no-undef - 1192:20 error '$' is not defined no-undef - 1197:9 error '$' is not defined no-undef - 1197:30 error '$' is not defined no-undef - 1199:34 error '$' is not defined no-undef - 1199:55 error '$' is not defined no-undef - 1201:13 error '$' is not defined no-undef - 1201:34 error '$' is not defined no-undef - 1203:13 error '$' is not defined no-undef - 1203:45 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 1208:13 error '$' is not defined no-undef - 1208:47 error 'html_encode' is not defined no-undef - 1208:59 error '$' is not defined no-undef - 1216:49 error '$' is not defined no-undef - 1220:27 error '$' is not defined no-undef - 1220:49 error 'html_encode' is not defined no-undef - 1275:46 error 'puter' is not defined no-undef - 1283:17 error 'saveAs' is not defined no-undef - 1305:12 error '$' is not defined no-undef - 1347:12 error '$' is not defined no-undef - 1351:25 error '$' is not defined no-undef - 1352:48 error 'html_encode' is not defined no-undef - 1352:60 error '$' is not defined no-undef - 1368:47 error '$' is not defined no-undef - 1371:32 error '$' is not defined no-undef - 1380:28 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1400:32 error '$' is not defined no-undef - 1402:40 error '$' is not defined no-undef - 1403:40 error '$' is not defined no-undef - 1414:21 error '$' is not defined no-undef - 1415:21 error '$' is not defined no-undef - 1415:43 error 'html_encode' is not defined no-undef - 1415:111 error 'html_encode' is not defined no-undef - 1416:21 error '$' is not defined no-undef - 1416:45 error 'html_encode' is not defined no-undef - 1440:37 error 'i18n' is not defined no-undef - 1443:34 error 'puter' is not defined no-undef - 1444:29 error '$' is not defined no-undef - 1463:17 error '$' is not defined no-undef - 1463:51 error 'html_encode' is not defined no-undef - 1463:63 error '$' is not defined no-undef - 1466:17 error '$' is not defined no-undef - 1466:38 error '$' is not defined no-undef - 1468:42 error '$' is not defined no-undef - 1468:63 error '$' is not defined no-undef - 1470:21 error '$' is not defined no-undef - 1472:21 error '$' is not defined no-undef - 1480:21 error '$' is not defined no-undef - 1480:45 error 'html_encode' is not defined no-undef - 1480:57 error '$' is not defined no-undef - 1482:21 error '$' is not defined no-undef - 1482:46 error 'html_encode' is not defined no-undef - 1482:58 error '$' is not defined no-undef - 1488:21 error '$' is not defined no-undef - 1488:46 error 'html_encode' is not defined no-undef - 1488:58 error '$' is not defined no-undef - 1488:114 error 'html_encode' is not defined no-undef - 1488:126 error '$' is not defined no-undef - 1489:57 error '$' is not defined no-undef - 1489:91 error '$' is not defined no-undef - 1495:24 error '$' is not defined no-undef - 1501:25 error '$' is not defined no-undef - 1501:62 error '$' is not defined no-undef - 1503:25 error '$' is not defined no-undef - 1503:46 error '$' is not defined no-undef - 1509:21 error '$' is not defined no-undef - 1517:31 error '$' is not defined no-undef - 1517:63 error 'html_encode' is not defined no-undef - 1523:63 error '$' is not defined no-undef - 1533:34 error '$' is not defined no-undef - 1538:72 error '$' is not defined no-undef - 1544:42 error '$' is not defined no-undef - 1544:74 error 'html_encode' is not defined no-undef - 1545:53 error '$' is not defined no-undef - 1545:75 error 'html_encode' is not defined no-undef - 1567:17 error '$' is not defined no-undef - 1567:49 error 'html_encode' is not defined no-undef - 1568:45 error '$' is not defined no-undef - 1568:75 error '$' is not defined no-undef - 1578:45 error 'html_encode' is not defined no-undef - 1580:38 error 'i18n' is not defined no-undef - 1581:66 error 'i18n' is not defined no-undef - 1582:66 error 'i18n' is not defined no-undef - 1582:107 error 'i18n' is not defined no-undef - 1600:21 error '$' is not defined no-undef - 1601:54 error 'html_encode' is not defined no-undef - 1601:66 error '$' is not defined no-undef - 1611:33 error 'puter' is not defined no-undef - 1616:17 error '$' is not defined no-undef - 1617:17 error '$' is not defined no-undef - 1617:39 error 'html_encode' is not defined no-undef - 1618:17 error '$' is not defined no-undef - 1618:41 error 'html_encode' is not defined no-undef - 1695:12 error 'puter' is not defined no-undef - 1711:5 error '$' is not defined no-undef - 1712:5 error '$' is not defined no-undef - 1713:5 error '$' is not defined no-undef - 1715:42 error '$' is not defined no-undef - 1716:5 error '$' is not defined no-undef - 1717:5 error '$' is not defined no-undef - 1717:58 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1718:12 error '$' is not defined no-undef - 1719:27 error '$' is not defined no-undef - 1727:17 error '$' is not defined no-undef - 1745:5 error 'puter' is not defined no-undef - 1757:28 error 'i18n' is not defined no-undef - 1814:51 error 'i18n' is not defined no-undef - 1819:35 error 'operation_id' is defined but never used @typescript-eslint/no-unused-vars - 1829:18 error 'i18n' is not defined no-undef - 1832:24 error 'i18n' is not defined no-undef - 1837:24 error 'i18n' is not defined no-undef - 1851:28 error 'i18n' is not defined no-undef - 1854:11 error 'puter' is not defined no-undef - 1858:34 error 'resp' is defined but never used @typescript-eslint/no-unused-vars - 1864:13 error '$' is not defined no-undef - 1865:13 error '$' is not defined no-undef - 1865:35 error 'html_encode' is not defined no-undef - 1865:103 error 'html_encode' is not defined no-undef - 1866:13 error '$' is not defined no-undef - 1869:13 error '$' is not defined no-undef - 1871:55 error '$' is not defined no-undef - 1878:32 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 1994:11 error 'totalLength' is assigned a value but never used @typescript-eslint/no-unused-vars - 2030:20 error 'i18n' is not defined no-undef - 2039:29 error 'i18n' is not defined no-undef - 2049:26 error '$' is not defined no-undef - 2052:12 error '$' is not defined no-undef - 2053:33 error 'i18n' is not defined no-undef - 2076:41 error 'i18n' is not defined no-undef - 2077:41 error 'puter' is not defined no-undef - 2093:33 error 'i18n' is not defined no-undef - 2093:63 error '$' is not defined no-undef - 2094:33 error 'puter' is not defined no-undef - 2107:33 error '$' is not defined no-undef - 2111:25 error 'i18n' is not defined no-undef - 2113:19 error 'fflate' is not defined no-undef - 2142:37 error 'i18n' is not defined no-undef - 2145:23 error 'puter' is not defined no-undef - 2162:27 error 'puter' is not defined no-undef - 2204:20 error 'i18n' is not defined no-undef - 2213:29 error 'i18n' is not defined no-undef - 2219:25 error 'i18n' is not defined no-undef - 2220:45 error 'puter' is not defined no-undef - 2223:25 error 'i18n' is not defined no-undef - 2224:19 error 'fflate' is not defined no-undef - 2228:21 error 'e' is not defined no-undef - 2235:35 error 'puter' is not defined no-undef - 2241:41 error 'i18n' is not defined no-undef - 2249:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2249:40 error 'puter' is not defined no-undef - 2264:45 error 'items' is defined but never used @typescript-eslint/no-unused-vars - 2279:5 error 'puter' is not defined no-undef - 2304:13 error '$' is not defined no-undef - 2304:34 error '$' is not defined no-undef - 2304:83 error 'html_encode' is not defined no-undef - 2305:13 error '$' is not defined no-undef - 2308:13 error '$' is not defined no-undef - 2312:13 error '$' is not defined no-undef - 2316:13 error '$' is not defined no-undef - 2316:42 error 'html_encode' is not defined no-undef - 2317:13 error '$' is not defined no-undef - 2317:34 error '$' is not defined no-undef - 2317:85 error 'html_encode' is not defined no-undef - 2318:13 error '$' is not defined no-undef - 2318:59 error 'html_encode' is not defined no-undef - 2321:13 error '$' is not defined no-undef - 2321:34 error '$' is not defined no-undef - 2321:81 error 'html_encode' is not defined no-undef - 2322:13 error '$' is not defined no-undef - 2322:55 error 'html_encode' is not defined no-undef - 2325:13 error '$' is not defined no-undef - 2325:34 error '$' is not defined no-undef - 2325:89 error 'html_encode' is not defined no-undef - 2326:13 error '$' is not defined no-undef - 2326:34 error '$' is not defined no-undef - 2326:92 error 'html_encode' is not defined no-undef - 2331:13 error '$' is not defined no-undef - 2332:13 error '$' is not defined no-undef - 2332:34 error '$' is not defined no-undef - 2333:13 error '$' is not defined no-undef - 2336:13 error '$' is not defined no-undef - 2336:30 error 'html_encode' is not defined no-undef - 2337:17 error '$' is not defined no-undef - 2338:20 error '$' is not defined no-undef - 2339:21 error '$' is not defined no-undef - 2343:13 error '$' is not defined no-undef - 2343:31 error 'html_encode' is not defined no-undef - 2344:37 error '_' is not defined no-undef - 2344:47 error '$' is not defined no-undef - 2345:17 error '$' is not defined no-undef - 2349:16 error '$' is not defined no-undef - 2354:13 error '$' is not defined no-undef - 2357:13 error '$' is not defined no-undef - 2362:13 error '$' is not defined no-undef - 2365:13 error '$' is not defined no-undef - 2365:34 error '$' is not defined no-undef - 2366:41 error '$' is not defined no-undef - 2366:101 error '$' is not defined no-undef - 2371:13 error '$' is not defined no-undef - 2372:13 error '$' is not defined no-undef - 2375:13 error '$' is not defined no-undef - 2376:13 error '$' is not defined no-undef - 2376:40 error 'html_encode' is not defined no-undef - 2376:52 error '$' is not defined no-undef - 2394:15 error 'puter' is not defined no-undef - 2457:24 error '$' is not defined no-undef - 2457:77 error '$' is not defined no-undef - 2463:5 error 'puter' is not defined no-undef - 2468:35 error 'puter' is not defined no-undef - 2470:29 error 'puter' is not defined no-undef - 2475:5 error '$' is not defined no-undef - 2476:25 error '$' is not defined no-undef - 2477:9 error '$' is not defined no-undef - 2478:9 error '$' is not defined no-undef - 2479:9 error '$' is not defined no-undef - 2487:5 error '$' is not defined no-undef - 2488:56 error '$' is not defined no-undef - 2489:25 error '$' is not defined no-undef - 2491:13 error '$' is not defined no-undef - 2492:13 error '$' is not defined no-undef - 2493:13 error '$' is not defined no-undef - 2499:5 error 'puter' is not defined no-undef - 2504:5 error 'puter' is not defined no-undef - 2511:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2511:53 error '$' is not defined no-undef - 2511:74 error '$' is not defined no-undef - 2513:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2513:28 error '$' is not defined no-undef - 2514:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2514:28 error '$' is not defined no-undef - 2525:5 error '$' is not defined no-undef - 2530:12 error '$' is not defined no-undef - 2535:12 error '$' is not defined no-undef - 2562:20 error '$' is not defined no-undef - 2572:22 error '$' is not defined no-undef - 2594:13 error 'set_menu_item_prop' is not defined no-undef - 2616:9 error 'userAgent' is assigned a value but never used @typescript-eslint/no-unused-vars - 2631:5 error 'puter' is not defined no-undef - 2642:13 error 'puter' is not defined no-undef - 2650:13 error 'puter' is not defined no-undef - 2670:26 error 'puter' is not defined no-undef - 2672:38 error 'puter' is not defined no-undef - 2673:34 error 'blob2str' is not defined no-undef - 2680:12 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2680:14 error Empty block statement no-empty - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/helpers/determine_active_container_parent.js - 22:28 error '$' is not defined no-undef - 25:28 error '$' is not defined no-undef - 29:28 error '$' is not defined no-undef - 32:66 error '$' is not defined no-undef - 33:28 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/helpers/download.js - 55:47 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 110:13 error 'batch_progress' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/helpers/get_html_element_from_options.js - 43:41 error '$' is not defined no-undef - 54:30 error 'html_encode' is not defined no-undef - 55:34 error 'html_encode' is not defined no-undef - 60:53 error 'html_encode' is not defined no-undef - 63:39 error 'html_encode' is not defined no-undef - 64:44 error 'html_encode' is not defined no-undef - 66:35 error 'html_encode' is not defined no-undef - 68:32 error 'html_encode' is not defined no-undef - 70:47 error 'html_encode' is not defined no-undef - 71:30 error 'html_encode' is not defined no-undef - 78:58 error 'timeago' is not defined no-undef - 89:46 error 'html_encode' is not defined no-undef - 95:31 error 'html_encode' is not defined no-undef - 102:32 error 'html_encode' is not defined no-undef - 108:32 error 'html_encode' is not defined no-undef - 116:51 error 'html_encode' is not defined no-undef - 122:32 error 'html_encode' is not defined no-undef - 125:43 error 'html_encode' is not defined no-undef - 131:32 error 'html_encode' is not defined no-undef - 139:74 error 'html_encode' is not defined no-undef - 139:104 error 'html_encode' is not defined no-undef - 141:170 error 'html_encode' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/helpers/item_icon.js - 45:19 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 74:25 error '$' is not defined no-undef - 74:47 error 'html_encode' is not defined no-undef - 77:35 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/helpers/launch_app.js - 48:26 error 'puter' is not defined no-undef - 89:32 error 'puter' is not defined no-undef - 120:21 error 'i18n' is not defined no-undef - 135:33 error 'puter' is not defined no-undef - 212:63 error 'privacy_aware_path' is not defined no-undef - 224:63 error 'privacy_aware_path' is not defined no-undef - 358:13 error '$' is not defined no-undef - 367:41 error '_' is not defined no-undef - 373:13 error '$' is not defined no-undef - 396:13 error '$' is not defined no-undef - 403:16 error '$' is not defined no-undef - 404:17 error '$' is not defined no-undef - 411:5 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/helpers/new_context_menu_item.js - 34:19 error 'i18n' is not defined no-undef - 35:32 error 'html_encode' is not defined no-undef - 44:19 error 'i18n' is not defined no-undef - 45:32 error 'html_encode' is not defined no-undef - 52:19 error 'i18n' is not defined no-undef - 53:32 error 'html_encode' is not defined no-undef - 60:19 error 'i18n' is not defined no-undef - 61:32 error 'html_encode' is not defined no-undef - 83:32 error 'html_encode' is not defined no-undef - 86:36 error 'html_encode' is not defined no-undef - 88:43 error 'puter' is not defined no-undef - 107:15 error 'i18n' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/helpers/open_item.js - 29:31 error '$' is not defined no-undef - 30:27 error '$' is not defined no-undef - 31:20 error '$' is not defined no-undef - 32:17 error '$' is not defined no-undef - 32:62 error '$' is not defined no-undef - 32:92 error '$' is not defined no-undef - 33:23 error '$' is not defined no-undef - 33:73 error '$' is not defined no-undef - 33:104 error '$' is not defined no-undef - 34:25 error '$' is not defined no-undef - 35:30 error '$' is not defined no-undef - 36:33 error '$' is not defined no-undef - 37:22 error '$' is not defined no-undef - 61:64 error '$' is not defined no-undef - 72:49 error '$' is not defined no-undef - 74:19 error 'initiating_app_uuid' is assigned a value but never used @typescript-eslint/no-unused-vars - 76:29 error 'puter' is not defined no-undef - 96:39 error '$' is not defined no-undef - 110:17 error '$' is not defined no-undef - 116:17 error '$' is not defined no-undef - 160:18 error '$' is not defined no-undef - 189:36 error '$' is not defined no-undef - 206:16 error 'err' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/helpers/refresh_item_container.js - 27:27 error '$' is not defined no-undef - 28:21 error '$' is not defined no-undef - 29:31 error '$' is not defined no-undef - 30:29 error '$' is not defined no-undef - 31:27 error '$' is not defined no-undef - 32:27 error '$' is not defined no-undef - 35:9 error '$' is not defined no-undef - 39:5 error '$' is not defined no-undef - 43:5 error '$' is not defined no-undef - 46:5 error '$' is not defined no-undef - 55:12 error '$' is not defined no-undef - 59:9 error '$' is not defined no-undef - 61:13 error '$' is not defined no-undef - 68:5 error 'puter' is not defined no-undef - 70:13 error '$' is not defined no-undef - 71:13 error '$' is not defined no-undef - 72:13 error '$' is not defined no-undef - 73:13 error '$' is not defined no-undef - 75:13 error '$' is not defined no-undef - 75:44 error 'html_encode' is not defined no-undef - 77:13 error '$' is not defined no-undef - 77:44 error 'html_encode' is not defined no-undef - 78:13 error '$' is not defined no-undef - 79:13 error '$' is not defined no-undef - 81:9 error '$' is not defined no-undef - 82:9 error '$' is not defined no-undef - 93:30 error '$' is not defined no-undef - 97:30 error '$' is not defined no-undef - 100:29 error '$' is not defined no-undef - 104:5 error '$' is not defined no-undef - 107:5 error 'puter' is not defined no-undef - 110:12 error '$' is not defined no-undef - 118:13 error '$' is not defined no-undef - 122:17 error '$' is not defined no-undef - 128:21 error '$' is not defined no-undef - 130:21 error '$' is not defined no-undef - 164:27 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 169:61 error '$' is not defined no-undef - 203:16 error '$' is not defined no-undef - 205:41 error 'puter' is not defined no-undef - 219:58 error '$' is not defined no-undef - 219:101 error '$' is not defined no-undef - 220:24 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 227:17 error '$' is not defined no-undef - 228:17 error '$' is not defined no-undef - 232:17 error '$' is not defined no-undef - 246:9 error '$' is not defined no-undef - 247:9 error '$' is not defined no-undef - 250:9 error '$' is not defined no-undef - 250:60 error 'html_encode' is not defined no-undef - 251:9 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/helpers/update_mouse_position.js - 57:29 error '$' is not defined no-undef - 59:54 error '$' is not defined no-undef - 74:56 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/helpers/update_title_based_on_uploads.js - 21:34 error '_' is not defined no-undef - 27:21 error 'key' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/helpers/update_username_in_gui.js - 24:5 error '$' is not defined no-undef - 25:21 error '$' is not defined no-undef - 72:9 error '$' is not defined no-undef - 76:5 error '$' is not defined no-undef - 76:24 error 'i' is defined but never used @typescript-eslint/no-unused-vars - 76:27 error 'el' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/i18n/i18n.js - 49:15 error 'html_encode' is not defined no-undef - 61:41 error 'html_encode' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/i18n/translations/en.js - 401:9 error Duplicate key 'billing.payment_method_updated' no-dupe-keys - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/i18n/translations/ig.js - 147:9 error Duplicate key 'hue' no-dupe-keys - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/i18n/translations/ja.js - 353:9 error Duplicate key 'plural_suffix' no-dupe-keys - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/i18n/translations/ko.js - 369:5 error Duplicate key 'account_password' no-dupe-keys - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/i18n/translations/pl.js - 351:9 error Duplicate key 'plural_suffix' no-dupe-keys - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/i18n/translations/sv.js - 352:2 error Duplicate key 'plural_suffix' no-dupe-keys - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/i18n/translations/th.js - 351:9 error Duplicate key 'plural_suffix' no-dupe-keys - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/i18n/translations/tr.js - 355:9 error Duplicate key 'plural_suffix' no-dupe-keys - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/i18n/translations/ua.js - 46:37 error Unnecessary escape character: \' no-useless-escape - 180:33 error Unnecessary escape character: \' no-useless-escape - 181:27 error Unnecessary escape character: \' no-useless-escape - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/i18n/translations/vi.js - 352:9 error Duplicate key 'plural_suffix' no-dupe-keys - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/i18n/translations/zh.js - 352:9 error Duplicate key 'plural_suffix' no-dupe-keys - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/index.js - 124:27 error 'error' is defined but never used @typescript-eslint/no-unused-vars - 146:25 error 'error' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/init_async.js - 20:1 error 'logger' is not defined no-undef - 37:1 error 'def' is not defined no-undef - 39:1 error 'logger' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/init_sync.js - 40:2 error 'scope' is defined but never used @typescript-eslint/no-unused-vars - 42:19 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 46:1 error 'logger' is not defined no-undef - 147:1 error 'logger' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/initgui.js - 61:25 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 103:17 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 109:17 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 133:4 error 'jQuery' is not defined no-undef - 134:5 error 'jQuery' is not defined no-undef - 139:5 error 'jQuery' is not defined no-undef - 144:5 error 'jQuery' is not defined no-undef - 149:5 error 'jQuery' is not defined no-undef - 158:5 error 'url' is assigned a value but never used @typescript-eslint/no-unused-vars - 163:29 error 'puter' is not defined no-undef - 164:9 error 'puter' is not defined no-undef - 166:29 error 'puter' is not defined no-undef - 167:9 error 'puter' is not defined no-undef - 170:5 error 'puter' is not defined no-undef - 182:8 error 'isMobile' is not defined no-undef - 183:9 error '$' is not defined no-undef - 184:13 error 'isMobile' is not defined no-undef - 185:9 error '$' is not defined no-undef - 187:9 error '$' is not defined no-undef - 191:5 error '$' is not defined no-undef - 195:5 error '$' is not defined no-undef - 209:8 error 'url_paths' is not defined no-undef - 209:58 error 'url_paths' is not defined no-undef - 210:18 error 'url_paths' is not defined no-undef - 236:9 error '$' is not defined no-undef - 245:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 397:28 error 'puter' is not defined no-undef - 442:16 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 458:32 error 'puter' is not defined no-undef - 486:17 error 'puter' is not defined no-undef - 514:24 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 636:33 error '$' is not defined no-undef - 648:59 error 'puter' is not defined no-undef - 657:68 error 'puter' is not defined no-undef - 683:69 error 'html_encode' is not defined no-undef - 686:64 error 'i18n' is not defined no-undef - 691:64 error 'i18n' is not defined no-undef - 695:62 error '$' is not defined no-undef - 701:49 error '$' is not defined no-undef - 710:62 error '$' is not defined no-undef - 713:45 error '$' is not defined no-undef - 722:37 error '$' is not defined no-undef - 726:41 error '$' is not defined no-undef - 748:18 error 'puter' is not defined no-undef - 751:42 error 'puter' is not defined no-undef - 837:35 error 'html_encode' is not defined no-undef - 843:9 error '$' is not defined no-undef - 859:17 error '$' is not defined no-undef - 859:45 error 'html_encode' is not defined no-undef - 860:17 error '$' is not defined no-undef - 862:17 error '$' is not defined no-undef - 870:16 error '$' is not defined no-undef - 878:5 error '$' is not defined no-undef - 878:36 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 880:9 error '$' is not defined no-undef - 887:13 error 'puter' is not defined no-undef - 916:20 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 1041:29 error '$' is not defined no-undef - 1053:55 error 'puter' is not defined no-undef - 1062:64 error 'puter' is not defined no-undef - 1089:65 error 'html_encode' is not defined no-undef - 1092:60 error 'i18n' is not defined no-undef - 1097:60 error 'i18n' is not defined no-undef - 1101:58 error '$' is not defined no-undef - 1107:45 error '$' is not defined no-undef - 1116:58 error '$' is not defined no-undef - 1119:41 error '$' is not defined no-undef - 1128:33 error '$' is not defined no-undef - 1132:37 error '$' is not defined no-undef - 1145:5 error '$' is not defined no-undef - 1146:9 error '$' is not defined no-undef - 1150:5 error '$' is not defined no-undef - 1155:40 error 'isMobile' is not defined no-undef - 1155:59 error 'isMobile' is not defined no-undef - 1159:12 error '$' is not defined no-undef - 1160:13 error '$' is not defined no-undef - 1165:13 error '$' is not defined no-undef - 1166:31 error '$' is not defined no-undef - 1173:13 error '$' is not defined no-undef - 1174:17 error '$' is not defined no-undef - 1175:17 error '$' is not defined no-undef - 1176:16 error '$' is not defined no-undef - 1177:17 error 'isMobile' is not defined no-undef - 1177:36 error 'isMobile' is not defined no-undef - 1178:17 error '$' is not defined no-undef - 1179:16 error '$' is not defined no-undef - 1181:13 error '$' is not defined no-undef - 1182:17 error '$' is not defined no-undef - 1187:9 error '$' is not defined no-undef - 1190:13 error '$' is not defined no-undef - 1192:13 error '$' is not defined no-undef - 1196:12 error '$' is not defined no-undef - 1199:22 error '$' is not defined no-undef - 1203:26 error '$' is not defined no-undef - 1215:5 error '$' is not defined no-undef - 1222:5 error '$' is not defined no-undef - 1224:12 error '$' is not defined no-undef - 1224:47 error '$' is not defined no-undef - 1231:16 error '$' is not defined no-undef - 1231:51 error '$' is not defined no-undef - 1233:13 error '$' is not defined no-undef - 1238:5 error '$' is not defined no-undef - 1239:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1241:13 error '$' is not defined no-undef - 1246:5 error '$' is not defined no-undef - 1251:5 error '$' is not defined no-undef - 1258:12 error '$' is not defined no-undef - 1258:43 error '$' is not defined no-undef - 1268:44 error '$' is not defined no-undef - 1277:52 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 1280:17 error '_' is not defined no-undef - 1299:5 error '$' is not defined no-undef - 1299:45 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 1306:32 error 'i18n' is not defined no-undef - 1311:32 error 'i18n' is not defined no-undef - 1316:32 error 'i18n' is not defined no-undef - 1339:19 error '$' is not defined no-undef - 1353:16 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1375:9 error '$' is not defined no-undef - 1377:9 error '$' is not defined no-undef - 1379:9 error '$' is not defined no-undef - 1381:9 error '$' is not defined no-undef - 1420:1 error '$' is not defined no-undef - 1420:66 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1421:5 error '$' is not defined no-undef - 1424:1 error '$' is not defined no-undef - 1425:9 error '$' is not defined no-undef - 1425:50 error '$' is not defined no-undef - 1425:105 error '$' is not defined no-undef - 1426:9 error '$' is not defined no-undef - 1431:1 error '$' is not defined no-undef - 1442:17 error '$' is not defined no-undef - 1443:19 error '$' is not defined no-undef - 1444:5 error '$' is not defined no-undef - 1450:18 error '$' is not defined no-undef - 1451:20 error '$' is not defined no-undef - 1452:5 error '$' is not defined no-undef - 1458:1 error '$' is not defined no-undef - 1459:8 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/keyboard.js - 25:1 error '$' is not defined no-undef - 31:55 error '$' is not defined no-undef - 31:85 error '$' is not defined no-undef - 45:12 error '$' is not defined no-undef - 47:16 error '$' is not defined no-undef - 48:17 error '$' is not defined no-undef - 50:17 error '$' is not defined no-undef - 54:21 error '$' is not defined no-undef - 59:37 error '$' is not defined no-undef - 60:43 error '$' is not defined no-undef - 63:57 error '$' is not defined no-undef - 74:25 error '$' is not defined no-undef - 76:25 error '$' is not defined no-undef - 78:25 error '$' is not defined no-undef - 78:65 error '$' is not defined no-undef - 108:37 error '$' is not defined no-undef - 109:17 error '$' is not defined no-undef - 110:17 error '$' is not defined no-undef - 113:31 error '$' is not defined no-undef - 114:38 error '$' is not defined no-undef - 136:17 error '$' is not defined no-undef - 138:16 error '$' is not defined no-undef - 139:37 error '$' is not defined no-undef - 144:21 error '$' is not defined no-undef - 145:37 error '$' is not defined no-undef - 145:79 error '$' is not defined no-undef - 150:21 error '$' is not defined no-undef - 151:37 error '$' is not defined no-undef - 152:43 error '$' is not defined no-undef - 154:41 error '$' is not defined no-undef - 155:23 error '$' is not defined no-undef - 157:41 error '$' is not defined no-undef - 163:21 error '$' is not defined no-undef - 164:37 error '$' is not defined no-undef - 165:43 error '$' is not defined no-undef - 167:41 error '$' is not defined no-undef - 168:23 error '$' is not defined no-undef - 170:41 error '$' is not defined no-undef - 176:21 error '$' is not defined no-undef - 177:39 error '$' is not defined no-undef - 178:17 error '$' is not defined no-undef - 180:20 error '$' is not defined no-undef - 181:21 error '$' is not defined no-undef - 182:21 error '$' is not defined no-undef - 183:48 error '$' is not defined no-undef - 188:21 error '$' is not defined no-undef - 190:38 error '$' is not defined no-undef - 191:35 error '$' is not defined no-undef - 193:17 error '$' is not defined no-undef - 195:17 error '$' is not defined no-undef - 197:37 error '$' is not defined no-undef - 198:17 error '$' is not defined no-undef - 199:17 error '$' is not defined no-undef - 200:17 error '$' is not defined no-undef - 205:21 error '$' is not defined no-undef - 206:37 error '$' is not defined no-undef - 207:17 error '$' is not defined no-undef - 214:18 error '$' is not defined no-undef - 214:48 error '$' is not defined no-undef - 217:16 error '$' is not defined no-undef - 218:33 error '$' is not defined no-undef - 220:17 error '$' is not defined no-undef - 221:17 error '$' is not defined no-undef - 225:21 error '$' is not defined no-undef - 226:33 error '$' is not defined no-undef - 229:21 error '$' is not defined no-undef - 230:33 error '$' is not defined no-undef - 230:101 error '$' is not defined no-undef - 233:21 error '$' is not defined no-undef - 234:33 error '$' is not defined no-undef - 237:33 error '$' is not defined no-undef - 237:101 error '$' is not defined no-undef - 248:33 error '$' is not defined no-undef - 248:109 error '$' is not defined no-undef - 272:17 error 'x_scroll' is assigned a value but never used @typescript-eslint/no-unused-vars - 278:17 error 'y_scroll' is assigned a value but never used @typescript-eslint/no-unused-vars - 285:20 error '$' is not defined no-undef - 285:60 error '$' is not defined no-undef - 296:21 error '$' is not defined no-undef - 298:17 error '$' is not defined no-undef - 308:17 error '$' is not defined no-undef - 309:33 error '$' is not defined no-undef - 310:55 error '$' is not defined no-undef - 318:47 error '$' is not defined no-undef - 323:47 error '$' is not defined no-undef - 326:33 error '$' is not defined no-undef - 327:13 error '$' is not defined no-undef - 328:13 error '$' is not defined no-undef - 339:10 error '$' is not defined no-undef - 339:63 error '$' is not defined no-undef - 341:12 error '$' is not defined no-undef - 341:42 error '$' is not defined no-undef - 341:75 error '$' is not defined no-undef - 344:9 error '$' is not defined no-undef - 349:32 error '$' is not defined no-undef - 350:9 error '$' is not defined no-undef - 351:9 error '$' is not defined no-undef - 351:27 error '$' is not defined no-undef - 352:9 error '$' is not defined no-undef - 352:41 error '$' is not defined no-undef - 357:32 error '$' is not defined no-undef - 358:9 error '$' is not defined no-undef - 368:9 error '$' is not defined no-undef - 371:9 error '$' is not defined no-undef - 372:13 error '$' is not defined no-undef - 377:1 error '$' is not defined no-undef - 384:31 error '$' is not defined no-undef - 387:26 error 'i18n' is not defined no-undef - 390:32 error 'i18n' is not defined no-undef - 394:32 error 'i18n' is not defined no-undef - 413:31 error '$' is not defined no-undef - 416:26 error 'i18n' is not defined no-undef - 419:32 error 'i18n' is not defined no-undef - 423:32 error 'i18n' is not defined no-undef - 432:37 error 'puter' is not defined no-undef - 438:21 error '$' is not defined no-undef - 439:21 error '$' is not defined no-undef - 439:43 error 'html_encode' is not defined no-undef - 440:21 error '$' is not defined no-undef - 440:45 error 'html_encode' is not defined no-undef - 446:31 error '$' is not defined no-undef - 460:37 error '$' is not defined no-undef - 460:67 error '$' is not defined no-undef - 460:99 error '$' is not defined no-undef - 471:32 error '$' is not defined no-undef - 474:43 error '$' is not defined no-undef - 479:24 error '$' is not defined no-undef - 481:16 error '$' is not defined no-undef - 491:24 error '$' is not defined no-undef - 499:13 error '$' is not defined no-undef - 501:13 error '$' is not defined no-undef - 503:64 error '$' is not defined no-undef - 511:42 error '$' is not defined no-undef - 511:72 error '$' is not defined no-undef - 511:104 error '$' is not defined no-undef - 522:32 error '$' is not defined no-undef - 525:43 error '$' is not defined no-undef - 530:24 error '$' is not defined no-undef - 532:16 error '$' is not defined no-undef - 542:24 error '$' is not defined no-undef - 550:13 error '$' is not defined no-undef - 552:13 error '$' is not defined no-undef - 561:1 error '$' is not defined no-undef - 574:55 error '$' is not defined no-undef - 574:85 error '$' is not defined no-undef - 575:33 error '$' is not defined no-undef - 577:33 error '$' is not defined no-undef - 583:13 error '$' is not defined no-undef - 594:30 error '$' is not defined no-undef - 596:30 error '$' is not defined no-undef - 600:13 error '$' is not defined no-undef - 609:9 error '$' is not defined no-undef - 610:9 error '$' is not defined no-undef - 611:10 error '$' is not defined no-undef - 612:10 error '$' is not defined no-undef - 615:32 error '$' is not defined no-undef - 617:32 error '$' is not defined no-undef - 620:31 error '$' is not defined no-undef - 626:24 error '$' is not defined no-undef - 630:50 error '$' is not defined no-undef - 630:82 error '$' is not defined no-undef - 630:118 error '$' is not defined no-undef - 640:55 error '$' is not defined no-undef - 640:85 error '$' is not defined no-undef - 642:32 error '$' is not defined no-undef - 644:32 error '$' is not defined no-undef - 647:31 error '$' is not defined no-undef - 652:43 error '$' is not defined no-undef - 661:26 error '$' is not defined no-undef - 664:9 error '$' is not defined no-undef - 672:27 error '$' is not defined no-undef - 672:57 error '$' is not defined no-undef - 683:12 error '$' is not defined no-undef - 685:13 error '$' is not defined no-undef - 687:27 error '$' is not defined no-undef - 689:17 error '$' is not defined no-undef - 697:17 error '$' is not defined no-undef - 698:33 error '$' is not defined no-undef - 699:13 error '$' is not defined no-undef - 700:13 error '$' is not defined no-undef - 701:13 error '$' is not defined no-undef - 702:13 error '$' is not defined no-undef - 703:16 error '$' is not defined no-undef - 704:37 error '$' is not defined no-undef - 714:31 error '$' is not defined no-undef - 732:55 error '$' is not defined no-undef - 732:85 error '$' is not defined no-undef - 739:32 error 'determine_active_container_parent' is not defined no-undef - 743:27 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/FileSaver.min.js - 1:46 error 'define' is not defined no-undef - 1:57 error 'define' is not defined no-undef - 1:115 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:530 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:757 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 1:759 error Empty block statement no-empty - 1:862 error 'c' is defined but never used @typescript-eslint/no-unused-vars - 1:907 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1128 error 'global' is not defined no-undef - 1:1144 error 'global' is not defined no-undef - 1:1151 error 'global' is not defined no-undef - 1:1461 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1926 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2330 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2674 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/croppie.min.js - 1:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:43 error 'define' is not defined no-undef - 1:54 error 'define' is not defined no-undef - 1:107 error 'exports' is not defined no-undef - 1:124 error 'module' is not defined no-undef - 1:204 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:461 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:557 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:1032 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1477 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1515 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1578 error 'setImmediate' is not defined no-undef - 1:1701 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1792 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:2144 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2571 error 'module' is not defined no-undef - 1:2586 error 'module' is not defined no-undef - 1:2851 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:3435 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:3646 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:3830 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:4055 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:4088 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:4223 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:4291 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5277 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5377 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5421 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5571 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5663 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5727 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5791 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:5862 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:6915 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:7008 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:7152 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:7405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:7425 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:7780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:7985 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:8064 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:8144 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:8367 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:8625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:8875 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:9270 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:9413 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:9588 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:10246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:10394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:10668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:10823 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:11340 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:11389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:11606 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:11985 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:12005 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:12279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:12374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:12883 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:13079 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:13153 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:13505 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:13782 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:13811 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:13894 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:14310 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:14337 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:14377 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:14441 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:14458 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:14850 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:14906 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:15355 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:15569 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:15709 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:16054 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:16294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:16762 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17334 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:17387 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17496 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17696 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17747 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17873 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17875 error 'EXIF' is not defined no-undef - 1:17934 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:18027 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:18276 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:18485 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:18619 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:18754 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:19006 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:19322 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:19643 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:20516 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:21079 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:21106 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:21755 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:22061 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:22157 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:22359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:23238 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:23358 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:23365 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/fflate-0.8.2.min.js - 9:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:14 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:67 error 'module' is not defined no-undef - 9:114 error 'define' is not defined no-undef - 9:125 error 'define' is not defined no-undef - 9:205 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:507 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:507 error 'require' is not defined no-undef - 9:546 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 9:548 error Empty block statement no-empty - 9:550 error 'exports' is not defined no-undef - 9:733 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:895 error 'setImmediate' is not defined no-undef - 9:1449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:1980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:2246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:2487 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:2789 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:3506 error Unexpected comma in middle of array no-sparse-arrays - 9:3893 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:3981 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:4149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:4163 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:4240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:4666 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:4720 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:4735 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:4832 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:4891 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:4922 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:5053 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:5087 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:5101 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:5231 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:5370 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:5428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:5518 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:5654 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:5789 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:5910 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:6097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:6150 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:6209 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:6521 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:6610 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:6651 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:6805 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:6948 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:7368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:7566 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:7645 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:7708 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:7797 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:7859 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:8134 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:8486 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:8880 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:8989 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:9039 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:9090 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:9112 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:9244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:9711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:9757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:9963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:10195 error 'e' is already defined no-redeclare - 9:10685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:11466 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:11664 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:11810 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:11983 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:12036 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:12413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:12673 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:12744 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:13123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:13641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:13800 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:13927 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:14000 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:14207 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:14249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:14374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:14803 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:14888 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:14988 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:15200 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:15354 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:15514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:15907 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:15992 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:16077 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:16217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:16389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:16753 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:16868 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:16998 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:17214 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:17270 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:17300 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:17488 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9:17591 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:18011 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:18093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:18169 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:18305 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:18801 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:18900 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:18976 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:19128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:19181 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:19725 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:19807 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:19902 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9:20096 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:20147 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:20438 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:20540 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9:20547 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:20621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:20694 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:21048 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:21170 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:21387 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:21423 error 't' is defined but never used @typescript-eslint/no-unused-vars - 9:21425 error Empty block statement no-empty - 9:21544 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:21804 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:22028 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:22077 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:22138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:22302 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:22630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:22665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:23087 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:23619 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:23726 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:24307 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:24404 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:24502 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:24655 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:24817 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9:24824 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:25164 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9:25171 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:25505 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:25577 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9:25782 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:26007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:26073 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:26098 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:26128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:26207 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:26336 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:26392 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9:26399 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:26494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:26740 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:26831 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:27002 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:27397 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:27496 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:27528 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:27725 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:27759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:28053 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:28230 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:28280 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:28549 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:28660 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:28866 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9:29094 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9:29101 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:29281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:29405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:29494 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9:29738 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:29930 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:30046 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:30131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:30278 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:30454 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:30535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:30567 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:30742 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9:30859 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:30961 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:31201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:31556 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:31643 error 'r' is defined but never used @typescript-eslint/no-unused-vars - 9:31734 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:32179 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:32306 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:32457 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9:32626 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/html-entities.js - 1:192 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:618 error Unexpected control character(s) in regular expression: \x01, \x08, \x11, \x15, \x17, \x1f no-control-regex - 1:798 error Unexpected control character(s) in regular expression: \x01, \x0c, \x0e, \x1f no-control-regex - 1:1315 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1470 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1500 error Expected a conditional expression and instead saw an assignment no-cond-assign - 1:1513 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1933 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2525 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2842 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2872 error Expected a conditional expression and instead saw an assignment no-cond-assign - 1:2885 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2950 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68654 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68979 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69614 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/iro.min.js - 7:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:69 error 'module' is not defined no-undef - 7:115 error 'define' is not defined no-undef - 7:126 error 'define' is not defined no-undef - 7:361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:586 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:894 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:1278 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:1467 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:1478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:2073 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:2257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:2288 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:2416 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:2449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:2590 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:2934 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:3273 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:3310 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:3342 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:4051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:4495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:4909 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:4938 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:5348 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:5361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:5390 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:5678 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:5761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:6144 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:6182 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:6546 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:6622 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:6679 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:6713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:7016 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:7045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:7063 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:7179 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:7310 error 'b' is a function no-func-assign - 7:7413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:7501 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:7602 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:7745 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:7944 error 'i' is defined but never used @typescript-eslint/no-unused-vars - 7:7957 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:8936 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:9088 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:9281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:10956 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:11003 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:11221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:12733 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:13182 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:13237 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:13305 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:13736 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:15491 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:16368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:16879 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 7:17085 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:17251 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:19412 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:19728 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:20890 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:20977 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:21723 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:22497 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:22584 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:23792 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 7:23799 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:24230 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:24310 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:24541 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:24772 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:24925 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 7:24932 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:25157 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 7:25223 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:25390 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 7:25460 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:25528 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 7:25612 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:25616 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 7:25849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:25850 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 7:26054 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:26174 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:26257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:26433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:26601 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 7:27579 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:27647 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:27664 error Expected a conditional expression and instead saw an assignment no-cond-assign - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/isMobile.min.js - 1:589 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:896 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1760 error 'module' is not defined no-undef - 1:1813 error 'define' is not defined no-undef - 1:1825 error 'define' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/jquery-3.6.1/jquery-3.6.1.min.js - 2:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:29 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:71 error 'module' is not defined no-undef - 2:86 error 'module' is not defined no-undef - 2:794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:1202 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:2260 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:2317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:3420 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:3527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:3576 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:5642 error Unexpected control character(s) in regular expression: \x1f, \x1f no-control-regex - 2:5946 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:6029 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:6125 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:6349 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:6805 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:6857 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:7057 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:7076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:7361 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:7381 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:7627 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:8235 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:9864 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:9899 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:10209 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:10218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:10471 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:11284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:11795 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:12223 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:12791 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:12829 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:13191 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:13328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:13812 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:13821 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:14124 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:15144 error Unexpected constant truthiness on the left-hand side of a `&&` expression no-constant-binary-expression - 2:15952 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:16100 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:16223 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:16421 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:16795 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 2:17086 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:17485 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19305 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19405 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19465 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19649 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:19874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20422 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20477 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:20818 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:21295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:21507 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:21747 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:21780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22090 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:22131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22140 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22201 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:22244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:22688 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:23843 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:24201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:24367 error Unnecessary escape character: \/ no-useless-escape - 2:24637 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:24881 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:25340 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:25722 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:26113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:27949 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28081 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28378 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:28708 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:29668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:29769 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:29979 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:30112 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:30353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:30474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:30595 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:30814 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31194 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31537 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31746 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31832 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:31972 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:32815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:33495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:33977 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:33979 error Empty block statement no-empty - 2:34017 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:34433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35603 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35847 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:35881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35908 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:35963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:36283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:36731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:36764 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:36820 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:37014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:37409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:37630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:37724 error Unnecessary escape character: \/ no-useless-escape - 2:37787 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:38732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39346 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39373 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:39406 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39489 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:39498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:39685 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:39687 error Empty block statement no-empty - 2:40148 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:40278 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:40527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:40701 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:40790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:41122 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:41881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42037 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:42904 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:43444 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:43572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:43617 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:44447 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:44556 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:44683 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:45252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:45373 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:45506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:47604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:47839 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48031 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48614 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:48840 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:49240 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:49286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:49359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:49594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:49757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50068 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50179 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50301 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50720 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50798 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:50800 error Empty block statement no-empty - 2:50803 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:50947 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:51221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:51509 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:52160 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:52191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:52487 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:52774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:54223 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:55161 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:55780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:57164 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:57652 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:58487 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:58711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:58990 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:59416 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:60510 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:60585 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:60924 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:61066 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:61131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:61275 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:61451 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:61522 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:62240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:62327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:62605 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63025 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63482 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63659 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63700 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:63839 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64182 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64769 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64825 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:64895 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:65424 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:66217 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:66781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:67552 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68036 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68078 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68445 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68817 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:68874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:69093 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:69192 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:69301 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:70237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:70383 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:70688 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:71424 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:71438 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:71553 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:72587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:72725 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:72969 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:72971 error Empty block statement no-empty - 2:73312 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:73465 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:74497 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:74584 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:74593 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:74993 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:75066 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:75865 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:76178 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:76938 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:76958 error 'r.href' is assigned to itself no-self-assign - 2:77034 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:78343 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:78428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:78540 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:78711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:78925 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:79512 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:80625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:81078 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:81306 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:81794 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2:81796 error Empty block statement no-empty - 2:81848 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82787 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82829 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82932 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:82971 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83447 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83559 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83660 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:83707 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:84402 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:84912 error Expected a conditional expression and instead saw an assignment no-cond-assign - 2:85065 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2:85271 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:85614 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:86439 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:86601 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:87191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:88789 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:89019 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:89364 error 'define' is not defined no-undef - 2:89376 error 'define' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/jquery-ui-1.13.2/external/jquery/jquery.js - 15:44 error 'module' is not defined no-undef - 24:3 error 'module' is not defined no-undef - 144:11 error 'Symbol' is already defined as a built-in global variable no-redeclare - 278:3 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 608:18 error Unexpected control character(s) in regular expression: \x1f no-control-regex - 780:12 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 780:18 error Empty block statement no-empty - 792:2 warning Unused eslint-disable directive (no problems were reported from 'no-unused-expressions') - 793:2 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 794:11 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 901:6 warning Unused eslint-disable directive (no problems were reported from 'eqeqeq') - 927:15 error 'qsaError' is defined but never used @typescript-eslint/no-unused-vars - 983:12 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1117:2 warning Unused eslint-disable directive (no problems were reported from 'eqeqeq') - 1143:3 warning Unused eslint-disable directive (no problems were reported from 'eqeqeq') - 1187:13 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1375:3 warning Unused eslint-disable directive (no problems were reported from 'eqeqeq') - 1390:4 warning Unused eslint-disable directive (no problems were reported from 'eqeqeq') - 1399:4 warning Unused eslint-disable directive (no problems were reported from 'eqeqeq') - 1439:13 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1453:2 warning Unused eslint-disable directive (no problems were reported from 'eqeqeq') - 1467:2 warning Unused eslint-disable directive (no problems were reported from 'eqeqeq') - 1651:7 error Unexpected constant truthiness on the left-hand side of a `&&` expression no-constant-binary-expression - 1833:28 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1965:5 warning Unused eslint-disable directive (no problems were reported from 'no-unused-expressions') - 1966:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2393:4 warning Unused eslint-disable directive (no problems were reported from 'eqeqeq') - 2465:5 warning Unused eslint-disable directive (no problems were reported from 'eqeqeq') - 2480:6 warning Unused eslint-disable directive (no problems were reported from 'eqeqeq') - 2721:2 warning Unused eslint-enable directive (no matching eslint-disable directives were found) - 2757:31 error Unnecessary escape character: \/ no-useless-escape - 2807:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 3058:55 error Empty block statement no-empty - 3477:12 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4176:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 4176:18 error Empty block statement no-empty - 4403:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4638:28 error Unnecessary escape character: \/ no-useless-escape - 5215:3 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 5717:5 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6178:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 6178:19 error Empty block statement no-empty - 7216:3 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 7356:4 warning Unused eslint-disable directive (no problems were reported from 'no-loop-func') - 8096:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 8102:4 error Rule "no-unused-expressions" is already configured by another configuration comment in the preceding code. This configuration is ignored - 8106:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 8109:6 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 8518:12 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 8518:16 error Empty block statement no-empty - 9374:22 error 'urlAnchor.href' is assigned to itself no-self-assign - 9377:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 9738:9 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9801:12 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 9801:16 error Empty block statement no-empty - 10193:3 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 10676:38 error 'define' is not defined no-undef - 10677:2 error 'define' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/jquery-ui-1.13.2/jquery-ui.js - 9:39 error 'define' is not defined no-undef - 12:3 error 'define' is not defined no-undef - 16:12 error 'jQuery' is not defined no-undef - 23:5 error 'version' is assigned a value but never used @typescript-eslint/no-unused-vars - 226:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 362:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 505:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 562:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 595:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 663:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 765:5 error 'widget' is assigned a value but never used @typescript-eslint/no-unused-vars - 792:14 error Unnecessary escape character: \+ no-useless-escape - 792:16 error Unnecessary escape character: \- no-useless-escape - 1262:5 error 'position' is assigned a value but never used @typescript-eslint/no-unused-vars - 1280:5 error 'data' is assigned a value but never used @typescript-eslint/no-unused-vars - 1310:5 error 'disableSelection' is assigned a value but never used @typescript-eslint/no-unused-vars - 1333:1 warning Unused eslint-disable directive (no problems were reported from 'no-unused-vars') - 1357:20 error Unnecessary escape character: \- no-useless-escape - 1371:34 error Unnecessary escape character: \% no-useless-escape - 1371:58 error Unnecessary escape character: \% no-useless-escape - 1371:82 error Unnecessary escape character: \% no-useless-escape - 1410:56 error Unnecessary escape character: \% no-useless-escape - 1410:80 error Unnecessary escape character: \% no-useless-escape - 1594:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1663:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1683:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1975:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1975:22 error Empty block statement no-empty - 1988:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2060:1 warning Unused eslint-disable directive (no problems were reported from 'max-len') - 2206:8 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2371:5 warning Unused eslint-disable directive (no problems were reported from 'no-unused-expressions') - 2372:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2373:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2979:65 error Empty block statement no-empty - 3017:5 error 'effectsEffectBlind' is assigned a value but never used @typescript-eslint/no-unused-vars - 3072:5 error 'effectsEffectBounce' is assigned a value but never used @typescript-eslint/no-unused-vars - 3167:5 error 'effectsEffectClip' is assigned a value but never used @typescript-eslint/no-unused-vars - 3217:5 error 'effectsEffectDrop' is assigned a value but never used @typescript-eslint/no-unused-vars - 3266:1 warning Unused eslint-disable directive (no problems were reported from 'max-len') - 3273:5 error 'effectsEffectExplode' is assigned a value but never used @typescript-eslint/no-unused-vars - 3367:5 error 'effectsEffectFade' is assigned a value but never used @typescript-eslint/no-unused-vars - 3399:5 error 'effectsEffectFold' is assigned a value but never used @typescript-eslint/no-unused-vars - 3473:5 error 'effectsEffectHighlight' is assigned a value but never used @typescript-eslint/no-unused-vars - 3515:5 error 'effectsEffectSize' is assigned a value but never used @typescript-eslint/no-unused-vars - 3693:5 error 'effectsEffectScale' is assigned a value but never used @typescript-eslint/no-unused-vars - 3733:5 error 'effectsEffectPuff' is assigned a value but never used @typescript-eslint/no-unused-vars - 3759:5 error 'effectsEffectPulsate' is assigned a value but never used @typescript-eslint/no-unused-vars - 3808:5 error 'effectsEffectShake' is assigned a value but never used @typescript-eslint/no-unused-vars - 3867:5 error 'effectsEffectSlide' is assigned a value but never used @typescript-eslint/no-unused-vars - 3928:5 error 'effect' is already defined no-redeclare - 3934:5 error 'effectsEffectTransfer' is assigned a value but never used @typescript-eslint/no-unused-vars - 4007:5 error 'focusable' is assigned a value but never used @typescript-eslint/no-unused-vars - 4014:5 error 'form' is assigned a value but never used @typescript-eslint/no-unused-vars - 4034:5 error 'formResetMixin' is assigned a value but never used @typescript-eslint/no-unused-vars - 4115:19 error Unexpected control character(s) in regular expression: \x1f no-control-regex - 4171:5 error 'keycode' is assigned a value but never used @typescript-eslint/no-unused-vars - 4206:5 error 'labels' is assigned a value but never used @typescript-eslint/no-unused-vars - 4261:5 error 'scrollParent' is assigned a value but never used @typescript-eslint/no-unused-vars - 4295:5 error 'tabbable' is assigned a value but never used @typescript-eslint/no-unused-vars - 4319:5 error 'uniqueId' is assigned a value but never used @typescript-eslint/no-unused-vars - 4353:1 warning Unused eslint-disable directive (no problems were reported from 'max-len') - 4363:5 error 'widgetsAccordion' is assigned a value but never used @typescript-eslint/no-unused-vars - 4870:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4945:5 error 'safeActiveElement' is assigned a value but never used @typescript-eslint/no-unused-vars - 4952:12 error 'error' is defined but never used @typescript-eslint/no-unused-vars - 4993:5 error 'widgetsMenu' is assigned a value but never used @typescript-eslint/no-unused-vars - 5269:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 5556:6 error Unexpected newline between object and [ of property access no-unexpected-multiline - 5560:6 error Unexpected newline between object and [ of property access no-unexpected-multiline - 5598:5 error Unexpected newline between object and [ of property access no-unexpected-multiline - 5648:47 error Unnecessary escape character: \- no-useless-escape - 5648:49 error Unnecessary escape character: \[ no-useless-escape - 5648:64 error Unnecessary escape character: \^ no-useless-escape - 6025:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6204:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6276:27 error Unnecessary escape character: \- no-useless-escape - 6276:29 error Unnecessary escape character: \[ no-useless-escape - 6276:44 error Unnecessary escape character: \^ no-useless-escape - 6318:5 error 'widgetsAutocomplete' is assigned a value but never used @typescript-eslint/no-unused-vars - 6342:5 error 'widgetsControlgroup' is assigned a value but never used @typescript-eslint/no-unused-vars - 6381:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6566:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6874:5 error 'widgetsCheckboxradio' is assigned a value but never used @typescript-eslint/no-unused-vars - 7203:8 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 7299:5 error 'widgetsButton' is assigned a value but never used @typescript-eslint/no-unused-vars - 7302:1 warning Unused eslint-disable directive (no problems were reported from 'max-len' or 'camelcase') - 7494:50 error Unnecessary escape character: \- no-useless-escape - 7820:13 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 8053:14 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 8053:20 error Empty block statement no-empty - 8620:14 error Unexpected constant condition no-constant-condition - 8829:13 error 'event' is defined but never used @typescript-eslint/no-unused-vars - 8858:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 8868:20 error Unnecessary escape character: \- no-useless-escape - 9286:36 error Unnecessary escape character: \- no-useless-escape - 9287:25 error Unnecessary escape character: \- no-useless-escape - 9394:35 error Unnecessary escape character: \- no-useless-escape - 9397:35 error Unnecessary escape character: \- no-useless-escape - 9521:5 error 'widgetsDatepicker' is assigned a value but never used @typescript-eslint/no-unused-vars - 9526:5 error 'ie' is assigned a value but never used @typescript-eslint/no-unused-vars - 9548:5 error 'widgetsMouse' is assigned a value but never used @typescript-eslint/no-unused-vars - 9556:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9600:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 9748:5 error 'plugin' is assigned a value but never used @typescript-eslint/no-unused-vars - 9780:5 error 'safeBlur' is assigned a value but never used @typescript-eslint/no-unused-vars - 10055:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 10570:8 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 10607:5 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 11022:5 error 'widgetsDraggable' is assigned a value but never used @typescript-eslint/no-unused-vars - 11104:13 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 11116:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 11250:52 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 11475:22 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 12223:5 error 'widgetsResizable' is assigned a value but never used @typescript-eslint/no-unused-vars - 12412:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 12463:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 12677:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 12733:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 12773:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 12884:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 13151:5 error 'widgetsDialog' is assigned a value but never used @typescript-eslint/no-unused-vars - 13634:5 error 'widgetsDroppable' is assigned a value but never used @typescript-eslint/no-unused-vars - 13648:1 warning Unused eslint-disable directive (no problems were reported from 'max-len') - 13658:5 error 'widgetsProgressbar' is assigned a value but never used @typescript-eslint/no-unused-vars - 13817:5 error 'widgetsSelectable' is assigned a value but never used @typescript-eslint/no-unused-vars - 13835:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 13881:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 13962:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 14064:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 14109:1 warning Unused eslint-disable directive (no problems were reported from 'max-len') - 14119:5 error 'widgetsSelectmenu' is assigned a value but never used @typescript-eslint/no-unused-vars - 14165:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 14220:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 14393:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 14736:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 14788:5 error 'widgetsSlider' is assigned a value but never used @typescript-eslint/no-unused-vars - 14934:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 15347:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 15521:5 error 'widgetsSortable' is assigned a value but never used @typescript-eslint/no-unused-vars - 15602:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 15627:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 16000:8 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 16097:37 error Unnecessary escape character: \- no-useless-escape - 16476:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 17530:5 error 'Globalize' is not defined no-undef - 17540:4 error 'Globalize' is not defined no-undef - 17655:5 error 'widgetsSpinner' is assigned a value but never used @typescript-eslint/no-unused-vars - 17713:14 error 'error' is defined but never used @typescript-eslint/no-unused-vars - 17713:22 error Empty block statement no-empty - 17716:14 error 'error' is defined but never used @typescript-eslint/no-unused-vars - 17716:22 error Empty block statement no-empty - 17723:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 17953:45 error Unnecessary escape character: \/ no-useless-escape - 17953:54 error Unnecessary escape character: \[ no-useless-escape - 17953:58 error Unnecessary escape character: \^ no-useless-escape - 18032:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 18281:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 18468:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 18527:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 18559:5 error 'widgetsTabs' is assigned a value but never used @typescript-eslint/no-unused-vars - 18662:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 18678:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 18714:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 18760:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 18913:4 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 19017:7 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 19065:5 error 'widgetsTooltip' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/jquery-ui-1.13.2/jquery-ui.min.js - 6:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54 error 'define' is not defined no-undef - 6:65 error 'define' is not defined no-undef - 6:88 error 'jQuery' is not defined no-undef - 6:243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:721 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1635 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1920 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:2436 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2721 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:3016 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:3524 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:3531 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4082 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5120 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:5172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5266 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5783 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:5790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5834 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6134 error 'e' is already defined no-redeclare - 6:6297 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:6304 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6584 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6649 error 't' is already defined no-redeclare - 6:6705 error 't' is already defined no-redeclare - 6:6712 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6758 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7000 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:7120 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7360 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7778 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8029 error Expected a conditional expression and instead saw an assignment no-cond-assign - 6:8106 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8325 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8571 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8641 error Unnecessary escape character: \+ no-useless-escape - 6:8643 error Unnecessary escape character: \- no-useless-escape - 6:9199 error 'e' is already defined no-redeclare - 6:10376 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11086 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11299 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11799 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12130 error 's' is already defined no-redeclare - 6:12211 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12424 error 's' is already defined no-redeclare - 6:12550 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12803 error 'i' is already defined no-redeclare - 6:12889 error 'o' is already defined no-redeclare - 6:13063 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13290 error 'i' is already defined no-redeclare - 6:13372 error 'o' is already defined no-redeclare - 6:13551 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13729 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13928 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14405 error Unnecessary escape character: \- no-useless-escape - 6:14598 error Unnecessary escape character: \% no-useless-escape - 6:14622 error Unnecessary escape character: \% no-useless-escape - 6:14646 error Unnecessary escape character: \% no-useless-escape - 6:15175 error Unnecessary escape character: \% no-useless-escape - 6:15199 error Unnecessary escape character: \% no-useless-escape - 6:16038 error 'i' is already defined no-redeclare - 6:16054 error 'e' is already defined no-redeclare - 6:16298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16416 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16727 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16780 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:17015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17361 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:17569 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:17601 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17663 error 't' is already defined no-redeclare - 6:17857 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19386 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19597 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20031 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20254 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20304 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:20306 error Empty block statement no-empty - 6:20395 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:20397 error Empty block statement no-empty - 6:20427 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21551 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22158 error 'e' is already defined no-redeclare - 6:22176 error 't' is already defined no-redeclare - 6:22472 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22758 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23245 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23347 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23495 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:23669 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24643 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24744 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25227 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25238 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:25548 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26456 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26597 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27851 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27904 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28169 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28595 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28656 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28750 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29415 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29702 error 'o' is already defined no-redeclare - 6:29736 error 'r' is already defined no-redeclare - 6:29810 error 's' is already defined no-redeclare - 6:30059 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30961 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31121 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31417 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31738 error 'o' is already defined no-redeclare - 6:31903 error 't' is already defined no-redeclare - 6:32138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32208 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32430 error 'o' is already defined no-redeclare - 6:32450 error 'n' is already defined no-redeclare - 6:32464 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32896 error 'o' is already defined no-redeclare - 6:32963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33437 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34211 error 's' is already defined no-redeclare - 6:34261 error Redundant double negation no-extra-boolean-cast - 6:34463 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34631 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34917 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35511 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36610 error 'e' is already defined no-redeclare - 6:36712 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36996 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37125 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37320 error 's' is already defined no-redeclare - 6:37395 error 'i' is already defined no-redeclare - 6:37541 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37917 error 's' is already defined no-redeclare - 6:38002 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38042 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38296 error 'n' is already defined no-redeclare - 6:38533 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38926 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39283 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39719 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39885 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40797 error Unexpected control character(s) in regular expression: \x1f no-control-regex - 6:41806 error 't' is already defined no-redeclare - 6:42228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42320 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43524 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43820 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43960 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44300 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44606 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45165 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45417 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46454 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46842 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47397 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47722 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47867 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48104 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48496 error 'r' is already defined no-redeclare - 6:48552 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:49298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:49909 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:50014 error 'l' is already defined no-redeclare - 6:50358 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50941 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:51237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:51496 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:51636 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52187 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52247 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52418 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52531 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53068 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53771 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53972 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54467 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54512 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:54678 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:54754 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55033 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:55838 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:56020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:56155 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:56801 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57160 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57378 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57470 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57586 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57805 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:57939 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:58503 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:58645 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:59124 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:59395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:59832 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:60411 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:60532 error 't' is already defined no-redeclare - 6:60546 error Unnecessary escape character: \- no-useless-escape - 6:60548 error Unnecessary escape character: \[ no-useless-escape - 6:60563 error Unnecessary escape character: \^ no-useless-escape - 6:61208 error 't' is already defined no-redeclare - 6:61222 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:61582 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:61639 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:61685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:61737 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:61786 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:61867 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:61925 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:62049 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:62106 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:62433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:62502 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:62571 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:62932 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:63563 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:63693 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:64159 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:64306 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:64632 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:64916 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:64923 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:65133 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:65311 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:65490 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:65767 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:65951 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:66103 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:66300 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:66356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:66535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:66865 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:67271 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:67527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:67884 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:68195 error Unnecessary escape character: \- no-useless-escape - 6:68197 error Unnecessary escape character: \[ no-useless-escape - 6:68212 error Unnecessary escape character: \^ no-useless-escape - 6:68621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:68973 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69769 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:69781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69832 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69913 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:70298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:70726 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:70830 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:72126 error 'e' is already defined no-redeclare - 6:72241 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:72436 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:72443 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:72781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:73717 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:74594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:75163 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:75499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:75594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:75707 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:75920 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:76569 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:76774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:77478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:77981 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:78134 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:78309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:78460 error 't' is already defined no-redeclare - 6:78539 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:79108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:79572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:79636 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:80321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:80533 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:81044 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:81482 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:81576 error 'e' is already defined no-redeclare - 6:82088 error 't' is already defined no-redeclare - 6:82166 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:82792 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:85053 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:85326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:85759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:85783 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:86093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:86324 error Unnecessary escape character: \- no-useless-escape - 6:86617 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:87004 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:87958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:88117 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:88401 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:89841 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:90316 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:90863 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:91593 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:91865 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:92568 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:92650 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:93032 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:93251 error Expected a conditional expression and instead saw an assignment no-cond-assign - 6:93716 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:93811 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:93906 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:94159 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:94262 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:94515 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:94627 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:94693 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:95114 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:95342 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:95344 error Empty block statement no-empty - 6:95396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:95771 error Expected a conditional expression and instead saw an assignment no-cond-assign - 6:97085 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:97304 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:97827 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:98968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:99741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:100193 error 't' is already defined no-redeclare - 6:100222 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:100342 error 't' is already defined no-redeclare - 6:100371 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:100726 error 't' is already defined no-redeclare - 6:100755 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:100958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:101353 error 't' is already defined no-redeclare - 6:101360 error 't' is already defined no-redeclare - 6:101382 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:101464 error Expected a conditional expression and instead saw an assignment no-cond-assign - 6:101791 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:102032 error 't' is already defined no-redeclare - 6:102395 error 'a' is already defined no-redeclare - 6:102793 error 'e' is already defined no-redeclare - 6:102842 error 't' is already defined no-redeclare - 6:102888 error 'e' is already defined no-redeclare - 6:103024 error 't' is already defined no-redeclare - 6:103415 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:103627 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:103709 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:103815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:104128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:105058 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:105615 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:105807 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:105968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:106333 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:106345 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:106892 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:106894 error Empty block statement no-empty - 6:107029 error Unnecessary escape character: \- no-useless-escape - 6:107202 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:107293 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:107812 error 'e' is already defined no-redeclare - 6:107872 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:109235 error 'C' is already defined no-redeclare - 6:109838 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:112191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:112276 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:112356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:113319 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:114465 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:115143 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:115517 error Unnecessary escape character: \- no-useless-escape - 6:115566 error Unnecessary escape character: \- no-useless-escape - 6:115942 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:116180 error 'e' is already defined no-redeclare - 6:116246 error 's' is already defined no-redeclare - 6:116316 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:116531 error 't' is already defined no-redeclare - 6:116562 error 'i' is already defined no-redeclare - 6:116659 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:117162 error 'i' is already defined no-redeclare - 6:117429 error 't' is already defined no-redeclare - 6:117563 error Unnecessary escape character: \- no-useless-escape - 6:117593 error Unnecessary escape character: \- no-useless-escape - 6:118072 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:118449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:118927 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:119175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:119261 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:119446 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:119453 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:119774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:120125 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:121585 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:122407 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:122607 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:122682 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:123213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:123402 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:123513 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:124183 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:124335 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:125383 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:126141 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:126559 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:127153 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:127472 error 't' is already defined no-redeclare - 6:127877 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:128007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:129742 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:131297 error 't' is already defined no-redeclare - 6:133262 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:133983 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:134080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:134236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:134295 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:134302 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:134658 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:134665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:136264 error 'i' is already defined no-redeclare - 6:136276 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:136380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:136489 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:136515 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:136624 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:136737 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:137043 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:138149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:138284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:138611 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:140203 error 'i' is already defined no-redeclare - 6:140215 error 'i' is already defined no-redeclare - 6:140342 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:140537 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:140563 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:140667 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:141309 error 'e' is already defined no-redeclare - 6:141378 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:141407 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:141409 error Empty block statement no-empty - 6:141461 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:141468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:142757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:142858 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:142980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:143503 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:143648 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:144108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:144396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:144475 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:145289 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:145602 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:146810 error 'e' is already defined no-redeclare - 6:146829 error 'i' is already defined no-redeclare - 6:147375 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:148127 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:148733 error 'n' is already defined no-redeclare - 6:148943 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:149257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:150254 error 'i' is already defined no-redeclare - 6:150855 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:151116 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:151404 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:152609 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:153146 error 'n' is already defined no-redeclare - 6:153169 error 'n' is already defined no-redeclare - 6:153217 error 'o' is already defined no-redeclare - 6:153670 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:153905 error 'o' is already defined no-redeclare - 6:153921 error 'a' is already defined no-redeclare - 6:153984 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:154803 error 't' is already defined no-redeclare - 6:154875 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:156355 error 'o' is already defined no-redeclare - 6:156391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:157360 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:157409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:157611 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:157976 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:158113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:158444 error 's' is already defined no-redeclare - 6:158619 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:159583 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:159991 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:160869 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:161079 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:161488 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:161495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:162042 error 's' is already defined no-redeclare - 6:162203 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:162210 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:162541 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:163013 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:163113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:163228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:163456 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:163969 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:164172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:164356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:164761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:165026 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:165119 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:165426 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:165456 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:165645 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:166189 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:166421 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:166659 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:166875 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:166943 error 't' is already defined no-redeclare - 6:167326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:167547 error 'i' is already defined no-redeclare - 6:167578 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:167907 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:167996 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:168141 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:168467 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:168590 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:168607 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:168630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:168885 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:169548 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:170311 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:170547 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:170729 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:171196 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:171232 error Expected a conditional expression and instead saw an assignment no-cond-assign - 6:171559 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:171648 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:171812 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:172072 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:172413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:172563 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:172711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:172957 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:173076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:173194 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:173412 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:175773 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:176120 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:176506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:176591 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:176731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:177374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:177619 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:177738 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:177856 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:177972 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:178064 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:178327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:178675 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:178831 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:179130 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:179252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:179337 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:179625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:180537 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:180544 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:180616 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:180793 error 'e' is already defined no-redeclare - 6:181251 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:181346 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:181368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:181748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:182267 error Expected a conditional expression and instead saw an assignment no-cond-assign - 6:182481 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:182716 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:183887 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:184007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:184227 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:184902 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:185089 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:185184 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:185286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:186014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:186072 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:186079 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:186428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:186569 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:186964 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:187215 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:187627 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:188097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:188443 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:188484 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:189055 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:189129 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:189604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:189795 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:189955 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:190105 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:190237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:190286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:190353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:190428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:190504 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:190828 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:190854 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:190963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:191100 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:191385 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:191525 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:191794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:192285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:192653 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:193030 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:193042 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:193359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:193910 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:194206 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:194523 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:194814 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:195415 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:195562 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:195680 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:196000 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:196673 error 'e' is already defined no-redeclare - 6:197137 error 't' is already defined no-redeclare - 6:197370 error 't' is already defined no-redeclare - 6:197944 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:198314 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:198482 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:198621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:198891 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:199326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:199589 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:199828 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:199931 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:200020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:200738 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:201020 error 't' is already defined no-redeclare - 6:201191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:201374 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:201417 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:201473 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:203797 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:204665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:204852 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:204946 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:204953 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:205376 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:205735 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:210407 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:210780 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:211295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:211545 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:212359 error Unnecessary escape character: \- no-useless-escape - 6:212371 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:212885 error 'h' is already defined no-redeclare - 6:212925 error 'c' is already defined no-redeclare - 6:213465 error 't' is already defined no-redeclare - 6:213840 error 't' is already defined no-redeclare - 6:214713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:215499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:215838 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:216141 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:216321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:217002 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:217366 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:217917 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:218477 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:218713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:219094 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:219259 error Expected a conditional expression and instead saw an assignment no-cond-assign - 6:219394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:219664 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:220506 error 't' is already defined no-redeclare - 6:221141 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:222759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:224160 error 't' is already defined no-redeclare - 6:226436 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:226672 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:226954 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:227038 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:227919 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:228763 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:229105 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:229194 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:229600 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:230047 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:230109 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:230245 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:230521 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:230643 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:230761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:230910 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:231078 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:231627 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:232812 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:232982 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:233467 error 't' is already defined no-redeclare - 6:233760 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:233925 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:234421 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:234723 error 'Globalize' is not defined no-undef - 6:234875 error 'Globalize' is not defined no-undef - 6:235209 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:235349 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:235557 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:235690 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:236331 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:236797 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:236799 error Empty block statement no-empty - 6:236835 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:236837 error Empty block statement no-empty - 6:236894 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:236916 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:238218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:238564 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:238844 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:239480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:239789 error Unnecessary escape character: \/ no-useless-escape - 6:239798 error Unnecessary escape character: \[ no-useless-escape - 6:239802 error Unnecessary escape character: \^ no-useless-escape - 6:239904 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:240336 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:240948 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:240996 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:241212 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:241327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:241790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:242677 error Expected a conditional expression and instead saw an assignment no-cond-assign - 6:242696 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:242885 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:243021 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:243435 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:243596 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:244158 error 'i' is already defined no-redeclare - 6:244208 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:244614 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:244660 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:244713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:244852 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:244938 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:245479 error 't' is already defined no-redeclare - 6:245501 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:245860 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:246045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:246281 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:246511 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:246958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:247082 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:247107 error 't' is already defined no-redeclare - 6:247179 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:247404 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:247541 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:247883 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:248374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:248585 error 'e' is already defined no-redeclare - 6:248602 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:248655 error Expected a conditional expression and instead saw an assignment no-cond-assign - 6:248780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:249110 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:249117 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:249302 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:249309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:249366 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:249656 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:249706 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:249827 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:249891 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:250086 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:250402 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:250494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:250541 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:250710 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:250748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:250753 error Expected a conditional expression and instead saw an assignment no-cond-assign - 6:251518 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:251670 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:251758 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:251823 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:251993 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:252052 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:252536 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:253095 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:253296 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:253303 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:253360 error 'e' is already defined no-redeclare - 6:253372 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/jquery.dragster.js - 85:3 error 'jQuery' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/lodash@4.17.21.min.js - 10:88 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 12:481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 13:505 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 14:423 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 16:1967 error Unexpected control character(s) in regular expression: \x00 no-control-regex - 16:2022 error Unnecessary escape character: \[ no-useless-escape - 16:2026 error Unnecessary escape character: \/ no-useless-escape - 16:3710 error Unexpected combined character in character class no-misleading-character-class - 17:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 17:185 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 22:459 error 'global' is not defined no-undef - 22:467 error 'global' is not defined no-undef - 22:491 error 'global' is not defined no-undef - 22:623 error 'exports' is not defined no-undef - 22:633 error 'exports' is not defined no-undef - 22:651 error 'exports' is not defined no-undef - 22:691 error 'module' is not defined no-undef - 22:700 error 'module' is not defined no-undef - 22:717 error 'module' is not defined no-undef - 23:104 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 23:106 error Empty block statement no-empty - 23:452 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 24:51 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 24:493 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 25:24 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 26:102 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:102 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 28:47 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 29:99 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 30:122 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 30:426 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 31:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 31:295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 32:366 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 32:409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 33:91 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 34:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 34:209 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 35:125 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 35:235 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 36:411 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 37:169 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 37:288 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 38:151 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 38:236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 40:229 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 40:350 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 41:274 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 41:381 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 42:47 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 42:191 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 42:475 error 'r' is defined but never used @typescript-eslint/no-unused-vars - 42:477 error 'u' is defined but never used @typescript-eslint/no-unused-vars - 43:208 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 43:438 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 44:36 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 44:190 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 44:272 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 45:155 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 45:206 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 45:303 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 46:99 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 46:448 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 47:338 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 47:398 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 48:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 48:29 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 49:56 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 51:452 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 52:166 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 52:314 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 52:392 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 53:292 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 56:208 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 58:461 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 59:125 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 60:391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 64:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 64:23 error Expected a 'break' statement before 'case' no-fallthrough - 64:232 error Expected a 'break' statement before 'case' no-fallthrough - 64:323 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 65:128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 65:284 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 65:354 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 67:211 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 67:213 error Empty block statement no-empty - 72:20 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 72:79 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 74:118 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 74:304 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 74:306 error Empty block statement no-empty - 74:330 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 74:332 error Empty block statement no-empty - 74:401 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 75:333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 79:246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 82:476 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 83:156 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 83:192 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 84:432 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 88:118 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 88:227 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 99:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 101:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 101:240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 101:493 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 102:103 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 102:181 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 103:2 error Expected a conditional expression and instead saw an assignment no-cond-assign - 103:264 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 104:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 104:348 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 106:148 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 106:500 error Expected a conditional expression and instead saw an assignment no-cond-assign - 107:79 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 108:304 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 108:352 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 108:454 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 110:92 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 112:62 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 112:64 error Empty block statement no-empty - 113:125 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 115:90 error Unexpected comma in middle of array no-sparse-arrays - 115:302 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 115:340 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 119:359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 119:433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 122:357 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 123:177 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 123:309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 123:402 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 124:109 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 125:290 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 134:483 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 137:130 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 138:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 138:168 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 139:327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 140:239 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 140:283 error 'define' is not defined no-undef - 140:295 error 'define' is not defined no-undef - 140:315 error 'define' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/path.js - 27:3 error 'CHAR_UPPERCASE_A' is assigned a value but never used @typescript-eslint/no-unused-vars - 28:3 error 'CHAR_LOWERCASE_A' is assigned a value but never used @typescript-eslint/no-unused-vars - 29:3 error 'CHAR_UPPERCASE_Z' is assigned a value but never used @typescript-eslint/no-unused-vars - 30:3 error 'CHAR_LOWERCASE_Z' is assigned a value but never used @typescript-eslint/no-unused-vars - 34:3 error 'CHAR_COLON' is assigned a value but never used @typescript-eslint/no-unused-vars - 35:3 error 'CHAR_QUESTION_MARK' is assigned a value but never used @typescript-eslint/no-unused-vars - 37:10 error 'isPathSeparator' is defined but never used @typescript-eslint/no-unused-vars - 499:5 error 'validateObject' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/qrcode.min.js - 1:12 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:38 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:171 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:412 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:624 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:773 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:948 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1253 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1471 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2000 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2239 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2446 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2640 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:2731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:3459 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:3588 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:3901 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:4036 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:4174 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:4757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:5243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:6437 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:7730 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:7783 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:7844 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:7981 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:8142 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:8309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:8962 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:9010 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:9039 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:13243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:14218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:14294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:14412 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:14551 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:14553 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:14718 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:15080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:15409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:15874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:15996 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:16120 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:16435 error 'u' is defined but never used @typescript-eslint/no-unused-vars - 1:16552 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:16675 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17701 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:17812 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:17913 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:18122 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:18333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:18577 error Unnecessary escape character: \% no-useless-escape - 1:18850 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:19057 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:19320 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:19556 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:19777 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/socket.io/socket.io.esm.min.js - 6:29 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1390 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1882 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2031 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2112 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2616 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:3026 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4173 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:4266 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4457 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4561 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4889 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4938 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5122 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5183 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:5561 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5563 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:5831 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6069 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:6071 error Empty block statement no-empty - 6:6198 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:6200 error Empty block statement no-empty - 6:6292 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:6294 error Empty block statement no-empty - 6:6393 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6756 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6845 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6868 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:6942 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:6944 error Empty block statement no-empty - 6:7042 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:7044 error Empty block statement no-empty - 6:7091 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:7093 error Empty block statement no-empty - 6:7095 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7319 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7632 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7899 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:7901 error Empty block statement no-empty - 6:7903 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8017 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8223 error 'attachEvent' is not defined no-undef - 6:8391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8402 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:8754 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9103 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9256 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9343 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9363 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9743 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:9745 error Empty block statement no-empty - 6:9747 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9758 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9837 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10156 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10647 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10744 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10960 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11034 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11204 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11318 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11354 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11614 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11710 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11915 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12214 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12341 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12404 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13006 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13064 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13161 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13226 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13635 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13745 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13873 error Unnecessary escape character: \/ no-useless-escape - 6:13884 error Unnecessary escape character: \/ no-useless-escape - 6:13926 error Unnecessary escape character: \/ no-useless-escape - 6:13942 error Unnecessary escape character: \/ no-useless-escape - 6:13997 error Unnecessary escape character: \/ no-useless-escape - 6:14036 error Unnecessary escape character: \/ no-useless-escape - 6:14046 error Unnecessary escape character: \/ no-useless-escape - 6:14074 error Unnecessary escape character: \/ no-useless-escape - 6:14298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14752 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14911 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16446 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16858 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17405 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:17456 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17502 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17818 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17988 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18060 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18255 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18329 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18550 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18715 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18901 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19543 error Unexpected lexical declaration in case block no-case-declarations - 6:19577 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19627 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19712 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20231 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20883 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21446 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21565 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21686 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21940 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22043 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22623 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23168 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 6:23863 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24282 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24461 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24998 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25316 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26282 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:26648 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26763 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27018 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27918 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28728 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:29073 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29599 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29900 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29978 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30130 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30458 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30559 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30602 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30915 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31047 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31534 error Unexpected lexical declaration in case block no-case-declarations - 6:31568 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31655 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31896 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32020 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:32058 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32378 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32564 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32626 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34156 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34290 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36238 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36438 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:36445 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36526 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36553 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36791 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36957 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37609 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:37818 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38050 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38273 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:38333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38505 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38610 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38834 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38940 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39010 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/socket.io/socket.io.js - 7:3 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:66 error 'module' is not defined no-undef - 8:35 error 'define' is not defined no-undef - 8:48 error 'define' is not defined no-undef - 15:12 error '_typeof' is a function no-func-assign - 44:5 error '_extends' is a function no-func-assign - 74:5 error '_getPrototypeOf' is a function no-func-assign - 80:5 error '_setPrototypeOf' is a function no-func-assign - 93:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 97:23 error 'Parent' is defined but never used @typescript-eslint/no-unused-vars - 97:31 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 97:37 error 'Class' is defined but never used @typescript-eslint/no-unused-vars - 99:7 error '_construct' is a function no-func-assign - 101:7 error '_construct' is a function no-func-assign - 117:5 error '_wrapNativeSuper' is a function no-func-assign - 178:7 error '_get' is a function no-func-assign - 180:7 error '_get' is a function no-func-assign - 251:23 error Unsafe usage of ThrowStatement no-unsafe-finally - 714:16 error 'i' is already defined no-redeclare - 764:15 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 822:15 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 980:29 error 'onPause' is defined but never used @typescript-eslint/no-unused-vars - 1055:12 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 1069:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1069:17 error Empty block statement no-empty - 1073:16 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1073:19 error Empty block statement no-empty - 1143:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1154:15 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1160:15 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1187:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1223:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1246:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1300:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1318:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1358:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1367:15 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1369:44 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1374:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1374:23 error Empty block statement no-empty - 1378:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1378:25 error Empty block statement no-empty - 1382:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1382:23 error Empty block statement no-empty - 1383:11 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1394:15 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1448:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1448:23 error Empty block statement no-empty - 1491:5 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 1493:7 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 1494:7 error 'attachEvent' is not defined no-undef - 1502:28 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1577:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1600:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1609:17 error 'opts' is assigned a value but never used @typescript-eslint/no-unused-vars - 1618:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1618:25 error Empty block statement no-empty - 1691:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1692:9 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 1696:9 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 1720:37 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 1738:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1760:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1791:24 error Unnecessary escape character: \/ no-useless-escape - 1791:35 error Unnecessary escape character: \/ no-useless-escape - 1791:77 error Unnecessary escape character: \/ no-useless-escape - 1791:93 error Unnecessary escape character: \/ no-useless-escape - 1791:148 error Unnecessary escape character: \/ no-useless-escape - 1791:187 error Unnecessary escape character: \/ no-useless-escape - 1791:197 error Unnecessary escape character: \/ no-useless-escape - 1791:225 error Unnecessary escape character: \/ no-useless-escape - 1963:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1980:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1996:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2016:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2048:15 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 2065:11 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 2153:15 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 2193:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2326:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2426:3 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2496:27 error 'toJSON' is defined but never used @typescript-eslint/no-unused-vars - 2788:62 error Empty block statement no-empty - 2837:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 3161:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 3202:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 3209:9 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 3220:11 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 3247:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 3272:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 3356:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 3442:13 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 3498:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 3553:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4008:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 4017:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 4026:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 4061:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4065:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4071:11 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 4165:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4207:32 error 'socket' is defined but never used @typescript-eslint/no-unused-vars - 4293:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4295:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/socket.io/socket.io.min.js - 6:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69 error 'module' is not defined no-undef - 6:115 error 'define' is not defined no-undef - 6:126 error 'define' is not defined no-undef - 6:249 error 't' is a function no-func-assign - 6:607 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1175 error 'i' is a function no-func-assign - 6:1294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1507 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1683 error 's' is a function no-func-assign - 6:1822 error 'a' is a function no-func-assign - 6:2162 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:2186 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:2188 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 6:2190 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 6:2200 error 'c' is a function no-func-assign - 6:2433 error 'h' is a function no-func-assign - 6:3360 error 'p' is a function no-func-assign - 6:3687 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4648 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4691 error Unsafe usage of ThrowStatement no-unsafe-finally - 6:4728 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6129 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6656 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6798 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7004 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7139 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7579 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9025 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:9116 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10467 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:10996 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10998 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:11263 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11501 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11503 error Empty block statement no-empty - 6:11630 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11632 error Empty block statement no-empty - 6:11724 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11726 error Empty block statement no-empty - 6:11968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12304 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:12354 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12422 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12541 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12688 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:12695 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13181 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:13228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13314 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:13321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13431 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13987 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:14033 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14151 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:14175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14533 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:14848 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14871 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:14944 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:14946 error Empty block statement no-empty - 6:15044 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:15046 error Empty block statement no-empty - 6:15093 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:15095 error Empty block statement no-empty - 6:15097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15637 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15953 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:15955 error Empty block statement no-empty - 6:15957 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16334 error 'attachEvent' is not defined no-undef - 6:16506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16518 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:17324 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17597 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:17604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17941 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:18071 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:18073 error Empty block statement no-empty - 6:18075 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18210 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18698 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:18705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19060 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19214 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19523 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19595 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19762 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19824 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19888 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19930 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:19960 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20118 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:20226 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20367 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20486 error Unnecessary escape character: \/ no-useless-escape - 6:20497 error Unnecessary escape character: \/ no-useless-escape - 6:20539 error Unnecessary escape character: \/ no-useless-escape - 6:20555 error Unnecessary escape character: \/ no-useless-escape - 6:20610 error Unnecessary escape character: \/ no-useless-escape - 6:20649 error Unnecessary escape character: \/ no-useless-escape - 6:20659 error Unnecessary escape character: \/ no-useless-escape - 6:20687 error Unnecessary escape character: \/ no-useless-escape - 6:20911 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21511 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23055 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23703 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:24036 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:24087 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24161 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:24168 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24451 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:24533 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25029 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25251 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25292 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25414 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25606 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26193 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26319 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26369 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26808 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:26815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27059 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27749 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28370 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28505 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:28525 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28648 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28923 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29050 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30226 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 6:30899 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31737 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33137 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34156 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:34203 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34693 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36383 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:36806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37142 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:37326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37642 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:37823 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37952 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:37959 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38590 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38716 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38787 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:38794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39082 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39847 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39956 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40277 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40442 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:40649 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40756 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40941 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:40948 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41072 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41174 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41260 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43190 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43324 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43785 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45430 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45551 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:45664 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:45671 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45750 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45785 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45972 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46232 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46730 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:47041 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:47307 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47427 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47628 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47819 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:47884 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:47944 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48118 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48583 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48744 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/socket.io/socket.io.msgpack.min.js - 6:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69 error 'module' is not defined no-undef - 6:115 error 'define' is not defined no-undef - 6:126 error 'define' is not defined no-undef - 6:274 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:548 error 'e' is a function no-func-assign - 6:906 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1474 error 'o' is a function no-func-assign - 6:1593 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1982 error 'a' is a function no-func-assign - 6:2121 error 'u' is a function no-func-assign - 6:2461 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:2485 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:2487 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 6:2489 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 6:2499 error 'h' is a function no-func-assign - 6:2732 error 'f' is a function no-func-assign - 6:3659 error 'd' is a function no-func-assign - 6:3986 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4516 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4920 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4947 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4990 error Unsafe usage of ThrowStatement no-unsafe-finally - 6:5027 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6542 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6940 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6955 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7180 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7303 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7392 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7438 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7679 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7878 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8089 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9324 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:9415 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10267 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10340 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10652 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10766 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11297 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:11562 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11801 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11803 error Empty block statement no-empty - 6:11930 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11932 error Empty block statement no-empty - 6:12024 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:12026 error Empty block statement no-empty - 6:12268 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12604 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:12654 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12722 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12778 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12841 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12894 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12988 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:12995 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13481 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:13528 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13614 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:13621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14288 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:14334 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14452 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:14476 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14834 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:15149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15172 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:15245 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:15247 error Empty block statement no-empty - 6:15345 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:15347 error Empty block statement no-empty - 6:15394 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:15396 error Empty block statement no-empty - 6:15398 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15628 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15938 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16062 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16254 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:16256 error Empty block statement no-empty - 6:16258 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16635 error 'attachEvent' is not defined no-undef - 6:16807 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16819 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:17625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17782 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17898 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:17905 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17931 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18242 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:18372 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:18374 error Empty block statement no-empty - 6:18376 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18511 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19000 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:19007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19362 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19516 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19611 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19825 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20064 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20126 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20190 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20232 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:20262 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20420 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:20528 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20546 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20669 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20788 error Unnecessary escape character: \/ no-useless-escape - 6:20799 error Unnecessary escape character: \/ no-useless-escape - 6:20841 error Unnecessary escape character: \/ no-useless-escape - 6:20857 error Unnecessary escape character: \/ no-useless-escape - 6:20912 error Unnecessary escape character: \/ no-useless-escape - 6:20951 error Unnecessary escape character: \/ no-useless-escape - 6:20961 error Unnecessary escape character: \/ no-useless-escape - 6:20989 error Unnecessary escape character: \/ no-useless-escape - 6:21213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21623 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21670 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21813 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23357 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23770 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24005 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:24338 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:24389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24463 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:24470 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24753 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:24835 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25082 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25260 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25331 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25415 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25553 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25716 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25908 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26671 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27110 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:27117 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27658 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28672 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28807 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:28827 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28889 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28950 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29225 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29352 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29943 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30103 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30588 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30681 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30747 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30829 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31560 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31676 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31946 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32063 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32268 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32444 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33034 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33132 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33339 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33750 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37322 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37371 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37703 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39023 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39142 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41098 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:41521 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41857 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:42041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42357 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:42538 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42667 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:42674 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42812 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42864 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43305 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43431 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43502 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:43509 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43797 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43887 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44043 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44562 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44671 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44992 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45157 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:45364 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45471 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45656 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:45663 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45787 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45889 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45975 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47905 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48039 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48500 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50145 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50266 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:50379 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:50386 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50465 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50500 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50687 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50730 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50947 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:51445 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:51756 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:52022 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52142 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52343 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52534 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:52599 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:52659 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52833 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52943 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53189 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53459 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/timeago.min.js - 1:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71 error 'exports' is not defined no-undef - 1:107 error 'define' is not defined no-undef - 1:118 error 'define' is not defined no-undef - 1:969 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1247 error Expected a conditional expression and instead saw an assignment no-cond-assign - 1:1295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:1593 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/lib/viselect.min.js - 2:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:60 error 'module' is not defined no-undef - 2:106 error 'define' is not defined no-undef - 2:117 error 'define' is not defined no-undef - 2:1020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:1049 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:1108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:1887 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:2291 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:2333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:2359 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:3522 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:3658 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:4097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:4309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:4871 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:5836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:6401 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:7173 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:7728 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:7981 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:8159 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:8409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:8803 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:9124 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:9252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:9405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:10217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:10329 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:10431 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:10478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:11170 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:11517 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2:12041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/services/BroadcastService.js - 34:9 error '$' is not defined no-undef - 49:24 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/services/DebugService.js - 26:9 error 'puter' is not defined no-undef - 27:9 error '$' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/services/ExecService.js - 26:20 error 'puter' is not defined no-undef - 81:13 error '$' is not defined no-undef - 90:16 error '$' is not defined no-undef - 91:17 error '$' is not defined no-undef - 95:9 error '$' is not defined no-undef - 97:17 error '$' is not defined no-undef - 117:65 error 'msg_id' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/services/LaunchOnInitService.js - 19:8 error 'UIAlert' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/services/SettingsService.js - 28:22 error 'use' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/services/ThemeService.js - 56:26 error 'puter' is not defined no-undef - 96:9 error 'puter' is not defined no-undef - 146:9 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/util/Collector.js - 13:16 error 'def' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/util/Component.js - 21:26 error 'def' is not defined no-undef - 93:49 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 102:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 128:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 141:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/util/Placeholder.js - 39:21 error 'def' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/src/util/TeePromise.js - 19:16 error 'def' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/test/privacy_aware_path.test.js - 25:1 error 'describe' is not defined no-undef - 27:9 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/utils.js - 23:8 error 'webpack_config' is defined but never used @typescript-eslint/no-unused-vars - 55:23 error 'process' is not defined no-undef - 84:9 error 'js' is assigned a value but never used @typescript-eslint/no-unused-vars - 90:9 error 'icons' is assigned a value but never used @typescript-eslint/no-unused-vars - 96:24 error 'Buffer' is not defined no-undef - 312:36 error 'Buffer' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/webpack.config.cjs - 1:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:20 error 'require' is not defined no-undef - 3:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/webpack/BaseConfig.cjs - 1:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:14 error 'require' is not defined no-undef - 2:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:12 error 'require' is not defined no-undef - 3:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:20 error 'require' is not defined no-undef - 5:1 error 'module' is not defined no-undef - 8:42 error '__dirname' is not defined no-undef - 10:10 error 'process' is not defined no-undef - 11:23 error 'process' is not defined no-undef - 54:28 error '__dirname' is not defined no-undef - 60:28 error '__dirname' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/webpack/EmitPlugin.cjs - 1:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:12 error 'require' is not defined no-undef - 2:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:14 error 'require' is not defined no-undef - 3:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:18 error 'require' is not defined no-undef - 4:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:17 error 'require' is not defined no-undef - 6:1 error 'module' is not defined no-undef - 20:28 error 'Buffer' is not defined no-undef - 36:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 36:27 error 'require' is not defined no-undef - 39:36 error '__dirname' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/gui/webpack/libPaths.cjs - 1:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/parsely/parser.js - 52:13 error 'stream' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/parsely/parsers/terminals.js - 155:13 error 'stream' is defined but never used @typescript-eslint/no-unused-vars - 166:13 error 'stream' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/parsely/streams.js - 24:15 error 'index' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/dist/bundle.js - 38:35 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 247:148 error 'global' is not defined no-undef - 348:21 error 'process' is not defined no-undef - 823:34 error 'values' is assigned a value but never used @typescript-eslint/no-unused-vars - 880:34 error 'values' is assigned a value but never used @typescript-eslint/no-unused-vars - 1184:17 error 'stream' is defined but never used @typescript-eslint/no-unused-vars - 1521:17 error 'stream' is defined but never used @typescript-eslint/no-unused-vars - 1532:17 error 'stream' is defined but never used @typescript-eslint/no-unused-vars - 1671:19 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 1907:21 error 'in_' is assigned a value but never used @typescript-eslint/no-unused-vars - 1959:25 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 1960:25 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 1989:23 error '_' is defined but never used @typescript-eslint/no-unused-vars - 1990:24 error '_' is defined but never used @typescript-eslint/no-unused-vars - 1991:23 error '_' is defined but never used @typescript-eslint/no-unused-vars - 1994:29 error '_' is defined but never used @typescript-eslint/no-unused-vars - 2046:21 error 'out' is assigned a value but never used @typescript-eslint/no-unused-vars - 2442:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2451:26 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 3251:24 error 'ctx' is defined but never used @typescript-eslint/no-unused-vars - 3980:35 error 'callback' is defined but never used @typescript-eslint/no-unused-vars - 4006:52 error 'callback' is defined but never used @typescript-eslint/no-unused-vars - 4011:17 error 'options' is already defined no-redeclare - 4027:27 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 4060:23 error Unnecessary escape character: \[ no-useless-escape - 4060:25 error Unnecessary escape character: \( no-useless-escape - 4060:27 error Unnecessary escape character: \{ no-useless-escape - 4060:36 error Unnecessary escape character: \) no-useless-escape - 4060:38 error Unnecessary escape character: \} no-useless-escape - 4101:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 4281:14 error 'result' is already defined no-redeclare - 4296:54 error Unnecessary escape character: \: no-useless-escape - 4457:19 error 'values' is already defined no-redeclare - 4500:17 error 'keys' is already defined no-redeclare - 4543:15 error 'values' is already defined no-redeclare - 4550:17 error 'values' is already defined no-redeclare - 4551:17 error 'result' is already defined no-redeclare - 4561:15 error 'result' is already defined no-redeclare - 4768:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 4830:10 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 4868:34 error 'Buffer' is not defined no-undef - 4869:16 error 'Buffer' is not defined no-undef - 4871:22 error 'Buffer' is not defined no-undef - 4874:26 error 'Buffer' is not defined no-undef - 5264:15 error 'word' is already defined no-redeclare - 5349:72 error 'column' is defined but never used @typescript-eslint/no-unused-vars - 5349:80 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 5374:51 error 'process' is not defined no-undef - 5498:43 error 'index' is defined but never used @typescript-eslint/no-unused-vars - 5583:35 error 'firstSource' is defined but never used @typescript-eslint/no-unused-vars - 5644:5 warning Unused eslint-disable directive (no problems were reported from 'yoda') - 5698:5141 error Unnecessary escape character: \* no-useless-escape - 5698:8354 error Unnecessary escape character: \* no-useless-escape - 5812:41 error 'process' is not defined no-undef - 6279:21 error 'out' is assigned a value but never used @typescript-eslint/no-unused-vars - 7061:34 error 'values' is assigned a value but never used @typescript-eslint/no-unused-vars - 7315:19 error 'context' is defined but never used @typescript-eslint/no-unused-vars - 7319:14 error 'indent' is defined but never used @typescript-eslint/no-unused-vars - 7350:19 error 'context' is defined but never used @typescript-eslint/no-unused-vars - 7366:19 error 'context' is defined but never used @typescript-eslint/no-unused-vars - 7477:25 error 'first' is assigned a value but never used @typescript-eslint/no-unused-vars - 7630:19 error 'context' is defined but never used @typescript-eslint/no-unused-vars - 7857:26 error 'err' is assigned a value but never used @typescript-eslint/no-unused-vars - 7957:41 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 8345:25 error 's' is assigned a value but never used @typescript-eslint/no-unused-vars - 8345:28 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 8345:38 error '__' is assigned a value but never used @typescript-eslint/no-unused-vars - 8345:55 error '___' is assigned a value but never used @typescript-eslint/no-unused-vars - 8621:31 error 'err' is assigned a value but never used @typescript-eslint/no-unused-vars - 8851:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 8941:24 error 'ctx' is defined but never used @typescript-eslint/no-unused-vars - 9031:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9103:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9454:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 9507:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 9658:31 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 9732:39 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 9797:37 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 10326:35 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 10401:33 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 10423:34 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 10497:21 error 'process' is not defined no-undef - 10657:29 error 'vars' is assigned a value but never used @typescript-eslint/no-unused-vars - 10689:21 error 'consts' is assigned a value but never used @typescript-eslint/no-unused-vars - 10714:33 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 10800:5 error Definition for rule 'node-core/prefer-primordials' was not found node-core/prefer-primordials - 10942:7 warning Unused eslint-disable directive (no problems were reported from 'no-restricted-globals') - 10963:7 warning Unused eslint-disable directive (no problems were reported from 'no-restricted-globals') - 11004:7 warning Unused eslint-disable directive (no problems were reported from 'no-restricted-globals') - 11017:7 warning Unused eslint-disable directive (no problems were reported from 'no-restricted-globals') - 11043:5 error Definition for rule 'node-core/prefer-primordials' was not found node-core/prefer-primordials - 11140:38 warning Unused eslint-disable directive (no problems were reported from 'no-useless-constructor') - 11146:38 warning Unused eslint-disable directive (no problems were reported from 'no-useless-constructor') - 11152:38 warning Unused eslint-disable directive (no problems were reported from 'no-useless-constructor') - 11158:38 warning Unused eslint-disable directive (no problems were reported from 'no-useless-constructor') - 11569:24 error 'process' is not defined no-undef - 11574:36 error 'process' is not defined no-undef - 11578:34 error 'process' is not defined no-undef - 12218:24 error 'which' is assigned a value but never used @typescript-eslint/no-unused-vars - 12621:22 error 'item' is defined but never used @typescript-eslint/no-unused-vars - 12678:31 error 'signal' is assigned a value but never used @typescript-eslint/no-unused-vars - 12722:33 error 'ctx' is defined but never used @typescript-eslint/no-unused-vars - 12783:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 12954:43 error 'reason' is defined but never used @typescript-eslint/no-unused-vars - 12954:51 error 'promise' is defined but never used @typescript-eslint/no-unused-vars - 12956:17 error 'process' is not defined no-undef - 13102:19 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 13187:17 error 'process' is not defined no-undef - 13213:24 error 'prefix' is assigned a value but never used @typescript-eslint/no-unused-vars - 13731:28 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 14075:33 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 14116:27 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 14323:28 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 14766:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 14771:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 15356:44 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - 15376:43 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - 15566:9 error Expected to call 'super()' constructor-super - 15567:13 error 'this' is not allowed before 'super()' no-this-before-super - 15568:13 error 'this' is not allowed before 'super()' no-this-before-super - 15644:43 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - 15656:26 error 'v' is defined but never used @typescript-eslint/no-unused-vars - 15725:43 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - 16334:35 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 16551:22 error 'level' is defined but never used @typescript-eslint/no-unused-vars - 16551:29 error 'message' is defined but never used @typescript-eslint/no-unused-vars - 16551:38 error 'fields' is defined but never used @typescript-eslint/no-unused-vars - 16551:46 error 'values' is defined but never used @typescript-eslint/no-unused-vars - 16787:40 error 'cancel_state' is defined but never used @typescript-eslint/no-unused-vars - 16901:51 error 'reject' is defined but never used @typescript-eslint/no-unused-vars - 17005:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 17039:25 error 'query' is defined but never used @typescript-eslint/no-unused-vars - 17039:34 error 'ctx' is defined but never used @typescript-eslint/no-unused-vars - 17073:40 error 'puter' is not defined no-undef - 17076:44 error 'puter' is not defined no-undef - 17103:41 error 'puter' is not defined no-undef - 17194:34 error 'ctx' is defined but never used @typescript-eslint/no-unused-vars - 17205:44 error 'puter' is not defined no-undef - 17208:48 error 'puter' is not defined no-undef - 17249:32 error 'puter' is not defined no-undef - 17570:23 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 17814:56 error 'reject' is defined but never used @typescript-eslint/no-unused-vars - 17878:41 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 17885:41 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 17900:41 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 17998:26 error 'puter' is not defined no-undef - 18001:13 error 'puter' is not defined no-undef - 18015:13 error 'puter' is not defined no-undef - 18034:16 error 'puter' is not defined no-undef - 18035:13 error 'puter' is not defined no-undef - 18036:13 error 'puter' is not defined no-undef - 18047:19 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/rollup.config.js - 45:43 error 'name' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/ansi-shell/ANSIShell.js - 20:10 error 'MultiWriter' is defined but never used @typescript-eslint/no-unused-vars - 21:10 error 'Coupler' is defined but never used @typescript-eslint/no-unused-vars - 22:10 error 'Pipe' is defined but never used @typescript-eslint/no-unused-vars - 35:15 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 120:13 error 'process' is not defined no-undef - 146:20 error 'prefix' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/ansi-shell/ioutil/NullifyWriter.js - 22:18 error 'item' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/ansi-shell/ioutil/SignalReader.js - 52:27 error 'signal' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/ansi-shell/parsing/brainstorming.js - 19:7 error 'seq' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/ansi-shell/parsing/buildParserFirstHalf.js - 19:10 error 'FirstRecognizedPStratumImpl' is defined but never used @typescript-eslint/no-unused-vars - 20:10 error 'UnquotedTokenParserImpl' is defined but never used @typescript-eslint/no-unused-vars - 58:11 error 'buildStringParserDef' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/ansi-shell/parsing/buildParserSecondHalf.js - 46:7 error 'ReducePrimitivesPStratumImpl' is defined but never used @typescript-eslint/no-unused-vars - 53:20 error 'lQuote' is assigned a value but never used @typescript-eslint/no-unused-vars - 53:38 error 'rQuote' is assigned a value but never used @typescript-eslint/no-unused-vars - 61:28 error 'escChar' is assigned a value but never used @typescript-eslint/no-unused-vars - 272:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 277:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 419:11 error 'parserBuilder' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/ansi-shell/pipeline/Coupler.js - 57:20 error 'which' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/ansi-shell/pipeline/Pipeline.js - 20:10 error 'TOKENS' is defined but never used @typescript-eslint/no-unused-vars - 47:29 error 'ctx' is defined but never used @typescript-eslint/no-unused-vars - 108:17 error 'commands' is assigned a value but never used @typescript-eslint/no-unused-vars - 279:39 error 'reason' is defined but never used @typescript-eslint/no-unused-vars - 279:47 error 'promise' is defined but never used @typescript-eslint/no-unused-vars - 281:13 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/ansi-shell/readline/history.js - 53:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 75:30 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/ansi-shell/readline/readline.js - 78:17 error 'process' is not defined no-undef - 238:25 error 'vars' is assigned a value but never used @typescript-eslint/no-unused-vars - 270:17 error 'consts' is assigned a value but never used @typescript-eslint/no-unused-vars - 295:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/ansi-shell/readline/rl_comprehend.js - 49:9 error 'tokensStart' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/ansi-shell/readline/rl_csi_handlers.js - 37:7 error 'CHAR_DEL' is assigned a value but never used @typescript-eslint/no-unused-vars - 38:7 error 'CHAR_ESC' is assigned a value but never used @typescript-eslint/no-unused-vars - 85:7 error 'correct_cursor' is assigned a value but never used @typescript-eslint/no-unused-vars - 191:31 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/main_cli.js - 35:11 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/main_puter.js - 40:22 error 'puter' is not defined no-undef - 43:9 error 'puter' is not defined no-undef - 57:9 error 'puter' is not defined no-undef - 76:12 error 'puter' is not defined no-undef - 77:9 error 'puter' is not defined no-undef - 78:9 error 'puter' is not defined no-undef - 89:15 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/platform/node/env.js - 24:23 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/platform/node/filesystem.js - 53:19 error 'users' is assigned a value but never used @typescript-eslint/no-unused-vars - 54:19 error 'groups' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/platform/puter/filesystem.js - 19:10 error 'ErrorCodes' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/pty/NodeStdioPTT.js - 19:26 error 'WritableStream' is defined but never used @typescript-eslint/no-unused-vars - 20:10 error 'signals' is defined but never used @typescript-eslint/no-unused-vars - 46:9 error 'process' is not defined no-undef - 47:9 error 'process' is not defined no-undef - 52:44 error 'process' is not defined no-undef - 53:44 error 'process' is not defined no-undef - 57:9 error 'process' is not defined no-undef - 61:31 error 'process' is not defined no-undef - 62:31 error 'process' is not defined no-undef - 68:9 error 'process' is not defined no-undef - 75:37 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 82:13 error 'process' is not defined no-undef - 87:37 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/pty/XDocumentPTT.js - 32:52 error 'reject' is defined but never used @typescript-eslint/no-unused-vars - 96:37 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 103:37 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 118:37 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/completers/CommandCompleter.js - 21:17 error 'builtins' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/completers/FileCompleter.js - 39:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/cat.js - 35:30 error 'values' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/cd.js - 33:30 error 'values' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/concept-parser.js - 192:17 error 'in_' is assigned a value but never used @typescript-eslint/no-unused-vars - 244:21 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 245:21 error 'a' is defined but never used @typescript-eslint/no-unused-vars - 274:19 error '_' is defined but never used @typescript-eslint/no-unused-vars - 275:20 error '_' is defined but never used @typescript-eslint/no-unused-vars - 276:19 error '_' is defined but never used @typescript-eslint/no-unused-vars - 279:25 error '_' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/coreutil_lib/echo_escapes.js - 64:7 error 'maybeGetHex' is assigned a value but never used @typescript-eslint/no-unused-vars - 65:9 error 'hexchars' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/cp.js - 39:17 error 'out' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/dcall.js - 45:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 54:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/false.js - 29:20 error 'ctx' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/jq.js - 37:17 error 'sdkv2' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/login.js - 32:17 error 'positionals' is assigned a value but never used @typescript-eslint/no-unused-vars - 32:30 error 'values' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/mv.js - 32:17 error 'out' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/neofetch.js - 80:15 error 'colors' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/rmdir.js - 44:30 error 'values' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/sed/command.js - 48:15 error 'context' is defined but never used @typescript-eslint/no-unused-vars - 52:10 error 'indent' is defined but never used @typescript-eslint/no-unused-vars - 83:15 error 'context' is defined but never used @typescript-eslint/no-unused-vars - 99:15 error 'context' is defined but never used @typescript-eslint/no-unused-vars - 210:21 error 'first' is assigned a value but never used @typescript-eslint/no-unused-vars - 363:15 error 'context' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/sed/parser.js - 81:44 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 469:21 error 's' is assigned a value but never used @typescript-eslint/no-unused-vars - 469:24 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 469:34 error '__' is assigned a value but never used @typescript-eslint/no-unused-vars - 469:51 error '___' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/sed/script.js - 79:22 error 'err' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/sort.js - 66:27 error 'err' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/test.js - 26:17 error 'historyManager' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/true.js - 27:20 error 'ctx' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/usages.js - 28:17 error 'positionals' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/coreutils/wc.js - 19:10 error 'resolveRelativePath' is defined but never used @typescript-eslint/no-unused-vars - 65:17 error 'filesystem' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/main.js - 48:7 error 'GH_LINK' is assigned a value but never used @typescript-eslint/no-unused-vars - 163:11 error 'blue' is assigned a value but never used @typescript-eslint/no-unused-vars - 167:11 error 'mklink' is assigned a value but never used @typescript-eslint/no-unused-vars - 183:19 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/providers/EmuCommandProvider.js - 10:7 error Unnecessary escape character: \_ no-useless-escape - 38:28 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/providers/PathCommandProvider.js - 178:13 error 'stat' is assigned a value but never used @typescript-eslint/no-unused-vars - 179:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/providers/PuterAppCommandProvider.js - 21:10 error 'TeePromise' is defined but never used @typescript-eslint/no-unused-vars - 32:36 error 'puter' is not defined no-undef - 35:40 error 'puter' is not defined no-undef - 62:37 error 'puter' is not defined no-undef - 153:30 error 'ctx' is defined but never used @typescript-eslint/no-unused-vars - 164:40 error 'puter' is not defined no-undef - 167:44 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/puter-shell/providers/ScriptCommandProvider.js - 19:8 error 'path_' is defined but never used @typescript-eslint/no-unused-vars - 34:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 68:21 error 'query' is defined but never used @typescript-eslint/no-unused-vars - 68:30 error 'ctx' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/util/lang.js - 22:27 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/src/util/statemachine.js - 26:13 error 'lastState' is assigned a value but never used @typescript-eslint/no-unused-vars - 68:35 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 133:33 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils.test.js - 34:1 error 'describe' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/basename.js - 24:5 error 'describe' is not defined no-undef - 25:9 error 'it' is not defined no-undef - 30:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 39:9 error 'it' is not defined no-undef - 44:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 117:13 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/date.js - 28:5 error Unreachable code no-unreachable - 28:5 error 'describe' is not defined no-undef - 29:9 error 'beforeEach' is not defined no-undef - 33:9 error 'afterEach' is not defined no-undef - 269:13 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/dirname.js - 24:5 error 'describe' is not defined no-undef - 25:9 error 'it' is not defined no-undef - 30:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 39:9 error 'it' is not defined no-undef - 44:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 97:13 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/echo.js - 24:5 error 'describe' is not defined no-undef - 55:13 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/env.js - 24:5 error 'describe' is not defined no-undef - 25:9 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/errno.js - 25:5 error 'describe' is not defined no-undef - 123:13 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/false.js - 42:5 error 'describe' is not defined no-undef - 43:9 error 'it' is not defined no-undef - 46:9 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/head.js - 24:5 error 'describe' is not defined no-undef - 55:13 error 'it' is not defined no-undef - 60:26 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 104:13 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/printf.js - 24:5 error 'describe' is not defined no-undef - 565:13 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/sleep.js - 25:5 error 'describe' is not defined no-undef - 27:9 error 'beforeEach' is not defined no-undef - 30:9 error 'afterEach' is not defined no-undef - 53:13 error 'it' is not defined no-undef - 58:26 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 92:13 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/sort.js - 24:5 error 'describe' is not defined no-undef - 141:13 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/tail.js - 24:5 error 'describe' is not defined no-undef - 55:13 error 'it' is not defined no-undef - 60:26 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 104:13 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/true.js - 36:5 error 'describe' is not defined no-undef - 37:9 error 'it' is not defined no-undef - 40:9 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/coreutils/wc.js - 24:5 error 'describe' is not defined no-undef - 109:13 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/readtoken.js - 22:1 error 'describe' is not defined no-undef - 56:9 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/test-bytes.js - 22:1 error 'describe' is not defined no-undef - 23:5 error 'describe' is not defined no-undef - 24:9 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/test-git-detection.js - 20:10 error 'JSDOM' is defined but never used @typescript-eslint/no-unused-vars - 26:28 error 'global' is not defined no-undef - 28:33 error 'global' is not defined no-undef - 53:1 error 'describe' is not defined no-undef - 73:5 error 'beforeEach' is not defined no-undef - 75:9 error 'global' is not defined no-undef - 78:5 error 'afterEach' is not defined no-undef - 80:16 error 'global' is not defined no-undef - 83:5 error 'describe' is not defined no-undef - 84:9 error 'it' is not defined no-undef - 89:9 error 'it' is not defined no-undef - 94:9 error 'it' is not defined no-undef - 100:5 error 'describe' is not defined no-undef - 101:9 error 'it' is not defined no-undef - 111:9 error 'it' is not defined no-undef - 121:5 error 'describe' is not defined no-undef - 122:9 error 'it' is not defined no-undef - 131:9 error 'it' is not defined no-undef - 140:9 error 'it' is not defined no-undef - 150:5 error 'describe' is not defined no-undef - 151:9 error 'it' is not defined no-undef - 156:9 error 'it' is not defined no-undef - 161:9 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/test-git-warning-dialog.js - 26:35 error 'global' is not defined no-undef - 70:27 error 'global' is not defined no-undef - 88:1 error 'describe' is not defined no-undef - 105:5 error 'beforeEach' is not defined no-undef - 115:9 error 'global' is not defined no-undef - 116:9 error 'global' is not defined no-undef - 117:9 error 'global' is not defined no-undef - 118:9 error 'global' is not defined no-undef - 119:9 error 'global' is not defined no-undef - 120:9 error 'global' is not defined no-undef - 121:9 error 'global' is not defined no-undef - 122:9 error 'global' is not defined no-undef - 129:5 error 'afterEach' is not defined no-undef - 134:5 error 'describe' is not defined no-undef - 135:9 error 'it' is not defined no-undef - 136:13 error 'global' is not defined no-undef - 145:9 error 'it' is not defined no-undef - 146:13 error 'global' is not defined no-undef - 163:9 error 'it' is not defined no-undef - 164:13 error 'global' is not defined no-undef - 183:5 error 'describe' is not defined no-undef - 184:9 error 'it' is not defined no-undef - 186:13 error 'global' is not defined no-undef - 208:9 error 'it' is not defined no-undef - 210:13 error 'global' is not defined no-undef - 225:9 error 'it' is not defined no-undef - 226:13 error 'global' is not defined no-undef - 246:5 error 'describe' is not defined no-undef - 247:9 error 'it' is not defined no-undef - 264:9 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/test-stateful-processor.js - 23:1 error 'describe' is not defined no-undef - 24:5 error 'it' is not defined no-undef - 39:5 error 'it' is not defined no-undef - 61:5 error 'it' is not defined no-undef - 84:5 error 'it' is not defined no-undef - 85:15 error 'messages' is assigned a value but never used @typescript-eslint/no-unused-vars - 94:5 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/test/wrap-text.js - 22:1 error 'describe' is not defined no-undef - 74:9 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/phoenix/tools/gen.js - 23:21 error 'process' is not defined no-undef - 24:29 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/pty/exports.js - 24:7 error 'CHAR_LF' is assigned a value but never used @typescript-eslint/no-unused-vars - 25:7 error 'CHAR_CR' is assigned a value but never used @typescript-eslint/no-unused-vars - 160:36 error 'cancel_state' is defined but never used @typescript-eslint/no-unused-vars - 274:13 error 'reject_promise' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/dist/puter.dev.js - 1:132 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:35656 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:35698 error 'puter' is not defined no-undef - 1:35731 error 'puter' is not defined no-undef - 1:35821 error 'puter' is not defined no-undef - 1:35872 error 'puter' is not defined no-undef - 1:35905 error 'puter' is not defined no-undef - 1:35919 error 'puter' is not defined no-undef - 1:35945 error 'puter' is not defined no-undef - 1:35964 error 'puter' is not defined no-undef - 1:36001 error 'puter' is not defined no-undef - 1:36033 error 'puter' is not defined no-undef - 1:36066 error 'puter' is not defined no-undef - 1:36106 error 'puter' is not defined no-undef - 1:36145 error 'puter' is not defined no-undef - 1:36203 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:36275 error 'puter' is not defined no-undef - 1:36311 error 'puter' is not defined no-undef - 1:36408 error 'puter' is not defined no-undef - 1:36440 error 'puter' is not defined no-undef - 1:36525 error 'puter' is not defined no-undef - 1:36582 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:36725 error 'puter' is not defined no-undef - 1:37389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:37937 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:38079 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:38218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:38380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:40920 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:41131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:41662 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:41860 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:42350 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:42643 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:42949 error 'r' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:43005 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:43135 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:43503 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:43669 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:43767 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:43808 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:44249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:44535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:44635 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:44665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:44751 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:44930 error Expected to call 'super()' constructor-super - 1:44944 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:44944 error 'this' is not allowed before 'super()' no-this-before-super - 1:44962 error 'this' is not allowed before 'super()' no-this-before-super - 1:44987 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:45188 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:45278 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:45396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:45527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:45950 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:46532 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:46534 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:46536 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:46538 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:47882 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:47965 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:48052 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:48131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:48289 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:48473 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:48706 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:49096 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:49123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:49261 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:49288 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:49726 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:49802 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:50080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:50453 error 'r' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:51032 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:51357 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:51741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:51998 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:52493 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:53126 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:53226 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:53564 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:53735 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:54201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:54237 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:54532 error 'puter' is not defined no-undef - 1:54714 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:55403 error 'puter' is not defined no-undef - 1:55428 error 'puter' is not defined no-undef - 1:55448 error 'puter' is not defined no-undef - 1:55487 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:55643 error 'puter' is not defined no-undef - 1:55659 error 'puter' is not defined no-undef - 1:55685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:55769 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:56045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:56088 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:56192 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:56406 error 'puter' is not defined no-undef - 1:56420 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:56420 error 'puter' is not defined no-undef - 1:56449 error 'puter' is not defined no-undef - 1:56488 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:56790 error 'puter' is not defined no-undef - 1:57068 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:57273 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:57356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:57443 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:57522 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:57674 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:57956 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:58076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:58394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:58617 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:58680 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60027 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60143 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60519 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60534 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60749 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60965 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:61011 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:61253 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:61452 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:61663 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:62810 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:62903 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:63094 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:63198 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:63526 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:63575 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:63759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:63820 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:64198 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:64200 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:64468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:64706 error 'g' is defined but never used @typescript-eslint/no-unused-vars - 1:64708 error Empty block statement no-empty - 1:64835 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:64837 error Empty block statement no-empty - 1:64929 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:64931 error Empty block statement no-empty - 1:65032 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:65395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:65484 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:65507 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:65581 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:65583 error Empty block statement no-empty - 1:65681 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:65683 error Empty block statement no-empty - 1:65730 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:65732 error Empty block statement no-empty - 1:65734 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:65958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66271 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66373 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66540 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:66542 error Empty block statement no-empty - 1:66544 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66659 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66818 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:66860 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66956 error 'attachEvent' is not defined no-undef - 1:67391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:67741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:67898 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:67985 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68005 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68385 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:68387 error Empty block statement no-empty - 1:68389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68401 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68800 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69291 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69385 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69601 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69675 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69845 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69959 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69995 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:70030 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70255 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70267 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70352 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70557 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70683 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70857 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70928 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70984 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71047 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71142 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71649 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71707 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71804 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71869 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:72279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:72389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:72518 error Unnecessary escape character: \/ no-useless-escape - 1:72529 error Unnecessary escape character: \/ no-useless-escape - 1:72571 error Unnecessary escape character: \/ no-useless-escape - 1:72587 error Unnecessary escape character: \/ no-useless-escape - 1:72642 error Unnecessary escape character: \/ no-useless-escape - 1:72681 error Unnecessary escape character: \/ no-useless-escape - 1:72691 error Unnecessary escape character: \/ no-useless-escape - 1:72719 error Unnecessary escape character: \/ no-useless-escape - 1:72945 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:73555 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:73625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:75093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:75505 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76054 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:76105 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76151 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76638 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76906 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:77060 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:77201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:77238 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:77366 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:77552 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:78101 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:78195 error Unexpected lexical declaration in case block no-case-declarations - 1:78229 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:78279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:78364 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:78666 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:78883 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:79158 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:79535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80098 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80277 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80338 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80526 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80592 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80696 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:81276 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:81826 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:82521 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:82940 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:83189 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:83202 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:83447 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:83651 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:83969 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:84919 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:85285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:85400 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:85655 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:86555 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:87365 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:87710 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:88236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:88368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:88537 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:88615 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:88767 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:89088 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:89189 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:89232 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:89479 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:89545 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:89677 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:90164 error Unexpected lexical declaration in case block no-case-declarations - 1:90198 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:90285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:90526 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:90650 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:90688 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:90768 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:90851 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:91008 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:91110 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:91194 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:91256 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:92786 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:92920 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:93357 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:93981 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:94863 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:95064 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:95071 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:95152 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:95179 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:95374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:95417 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:95583 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:96236 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:96444 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:96523 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:96676 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:96899 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:96959 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:97131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:97236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:97337 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:97460 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:97566 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:97636 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:98611 error Promise executor functions should not be async no-async-promise-executor - 1:98628 error 'puter' is not defined no-undef - 1:98653 error 'puter' is not defined no-undef - 1:98673 error 'puter' is not defined no-undef - 1:98712 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:98790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99164 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99265 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99292 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99334 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99397 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99410 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99539 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:100249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:100362 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:100439 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:100971 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:101176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:101330 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:101513 error 'validateObject' is not defined no-undef - 1:101785 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:101897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:102021 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:102264 error 'puter' is not defined no-undef - 1:102330 error 'puter' is not defined no-undef - 1:102367 error 'puter' is not defined no-undef - 1:102700 error Promise executor functions should not be async no-async-promise-executor - 1:102717 error 'puter' is not defined no-undef - 1:102742 error 'puter' is not defined no-undef - 1:102762 error 'puter' is not defined no-undef - 1:102801 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:102882 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:103624 error Promise executor functions should not be async no-async-promise-executor - 1:103641 error 'puter' is not defined no-undef - 1:103666 error 'puter' is not defined no-undef - 1:103686 error 'puter' is not defined no-undef - 1:103725 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:103756 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:103859 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:104253 error Promise executor functions should not be async no-async-promise-executor - 1:104270 error 'puter' is not defined no-undef - 1:104295 error 'puter' is not defined no-undef - 1:104315 error 'puter' is not defined no-undef - 1:104354 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:104575 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:104717 error Promise executor functions should not be async no-async-promise-executor - 1:104734 error 'puter' is not defined no-undef - 1:104759 error 'puter' is not defined no-undef - 1:104779 error 'puter' is not defined no-undef - 1:104994 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:105123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:105196 error 'g' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:105330 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:105366 error 'puter' is not defined no-undef - 1:105633 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:105752 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:105913 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:106154 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:106601 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:106638 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:106791 error 'puter' is not defined no-undef - 1:106937 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:106939 error Empty block statement no-empty - 1:107076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:107243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:107478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:107667 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:108565 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:108652 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:108811 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:108891 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:109028 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:109108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:109123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:109253 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:109556 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:109592 error 'puter' is not defined no-undef - 1:110051 error Promise executor functions should not be async no-async-promise-executor - 1:110068 error 'puter' is not defined no-undef - 1:110093 error 'puter' is not defined no-undef - 1:110113 error 'puter' is not defined no-undef - 1:110152 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:110329 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:110589 error Promise executor functions should not be async no-async-promise-executor - 1:110606 error 'puter' is not defined no-undef - 1:110631 error 'puter' is not defined no-undef - 1:110651 error 'puter' is not defined no-undef - 1:110690 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:110806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:111436 error Promise executor functions should not be async no-async-promise-executor - 1:111453 error 'puter' is not defined no-undef - 1:111478 error 'puter' is not defined no-undef - 1:111498 error 'puter' is not defined no-undef - 1:111537 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:111719 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:111722 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:111849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:112270 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:112869 error Promise executor functions should not be async no-async-promise-executor - 1:112886 error 'puter' is not defined no-undef - 1:112911 error 'puter' is not defined no-undef - 1:112931 error 'puter' is not defined no-undef - 1:112970 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:113015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:113090 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:113132 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:113531 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:113575 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:113689 error 'puter' is not defined no-undef - 1:113714 error 'puter' is not defined no-undef - 1:113734 error 'puter' is not defined no-undef - 1:113773 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:113806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:114048 error 'puter' is not defined no-undef - 1:114450 error Promise executor functions should not be async no-async-promise-executor - 1:114467 error 'puter' is not defined no-undef - 1:114492 error 'puter' is not defined no-undef - 1:114512 error 'puter' is not defined no-undef - 1:114551 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:114633 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:114950 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:115620 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:115689 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:115757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:115966 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:116098 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:116229 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:116868 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:117044 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:117271 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:117368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:117444 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:117647 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:118044 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:118844 error 'puter' is not defined no-undef - 1:118896 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:119387 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:119518 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:119661 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:119808 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:119839 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:119839 error 'puter' is not defined no-undef - 1:119952 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:119952 error 'puter' is not defined no-undef - 1:120047 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:120051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120051 error 'puter' is not defined no-undef - 1:120172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120172 error 'puter' is not defined no-undef - 1:120287 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120287 error 'puter' is not defined no-undef - 1:120402 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120402 error 'puter' is not defined no-undef - 1:120504 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120504 error 'puter' is not defined no-undef - 1:120584 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:122162 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:122570 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:122723 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:124086 error 't' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:124168 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:124170 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:124306 error 'puter' is not defined no-undef - 1:124322 error 'puter' is not defined no-undef - 1:124345 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:124413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:124968 error 'puter' is not defined no-undef - 1:125063 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:125082 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:125111 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:125113 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:125144 error 'puter' is not defined no-undef - 1:125204 error 'puter' is not defined no-undef - 1:125270 error 'puter' is not defined no-undef - 1:125327 error 'puter' is not defined no-undef - 1:125425 error 't' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:125520 error 'puter' is not defined no-undef - 1:125702 error 'puter' is not defined no-undef - 1:125760 error 'puter' is not defined no-undef - 1:125842 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:125934 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:126043 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:126259 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:126460 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:127243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:127391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:127706 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:128098 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:128514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:129054 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:129366 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:129476 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:129702 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:130233 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:130299 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:131009 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:131176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:131313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:132372 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:132855 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:133129 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:133587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:133796 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:134203 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:134818 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:135244 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:135353 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:135459 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:135577 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:135879 error 'puter' is not defined no-undef - 1:136256 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:136556 error 'puter' is not defined no-undef - 1:137496 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:137893 error 'puter' is not defined no-undef - 1:138272 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:138453 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:138631 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:138811 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:139001 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:139177 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:139342 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:140487 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:140604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:140645 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:140776 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:141096 error 'puter' is not defined no-undef - 1:141151 error 'puter' is not defined no-undef - 1:141206 error 'puter' is not defined no-undef - 1:141243 error 'puter' is not defined no-undef - 1:141305 error 'puter' is not defined no-undef - 1:141353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:141435 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:141806 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:142042 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:146313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:146605 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:146608 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:146911 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:147079 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:147479 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:147783 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:147873 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:148083 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:149222 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:149529 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:149868 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:149962 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:150111 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:150503 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:152562 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:153313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:154358 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:154636 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:154712 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:156733 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:156967 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:156979 error 'puter' is not defined no-undef - 1:157324 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:157398 error 'puter' is not defined no-undef - 1:157519 error 'puter' is not defined no-undef - 1:157680 error 'puter' is not defined no-undef - 1:157696 error 'puter' is not defined no-undef - 1:157719 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:157772 error 'puter' is not defined no-undef - 1:158255 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:159148 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:159504 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:159799 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:160607 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:160803 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:162186 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:162271 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:162849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:162927 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163130 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163450 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163553 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163683 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163714 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163714 error 'puter' is not defined no-undef - 1:163827 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163827 error 'puter' is not defined no-undef - 1:163922 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:163926 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163926 error 'puter' is not defined no-undef - 1:164047 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:164047 error 'puter' is not defined no-undef - 1:164162 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:164162 error 'puter' is not defined no-undef - 1:164277 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:164277 error 'puter' is not defined no-undef - 1:164379 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:164379 error 'puter' is not defined no-undef - 1:164578 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:164682 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:164875 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:164878 error Setter cannot return a value no-setter-return - 1:164978 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:165376 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:165548 error 'puter' is not defined no-undef - 1:165563 error 'puter' is not defined no-undef - 1:165575 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:165770 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:165886 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:165928 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:166010 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:166246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:166545 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:167003 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:167003 error 'e' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:167129 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:167291 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:168683 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:168865 error Setter cannot return a value no-setter-return - 1:168902 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:168983 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:169070 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:169373 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:169668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:169849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:169929 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:170391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:170667 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:172310 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:172472 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:172483 error 'puter' is not defined no-undef - 1:172627 error 'puter' is not defined no-undef - 1:172660 error 'puter' is not defined no-undef - 1:172691 error 'puter' is not defined no-undef - 1:172727 error 'puter' is not defined no-undef - 1:172760 error 'puter' is not defined no-undef - 1:172774 error 'puter' is not defined no-undef - 1:172800 error 'puter' is not defined no-undef - 1:172819 error 'puter' is not defined no-undef - 1:172856 error 'puter' is not defined no-undef - 1:172888 error 'puter' is not defined no-undef - 1:172921 error 'puter' is not defined no-undef - 1:172961 error 'puter' is not defined no-undef - 1:173000 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/dist/puter.js - 1:132 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:35656 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:35698 error 'puter' is not defined no-undef - 1:35731 error 'puter' is not defined no-undef - 1:35821 error 'puter' is not defined no-undef - 1:35872 error 'puter' is not defined no-undef - 1:35905 error 'puter' is not defined no-undef - 1:35919 error 'puter' is not defined no-undef - 1:35945 error 'puter' is not defined no-undef - 1:35964 error 'puter' is not defined no-undef - 1:36001 error 'puter' is not defined no-undef - 1:36033 error 'puter' is not defined no-undef - 1:36066 error 'puter' is not defined no-undef - 1:36106 error 'puter' is not defined no-undef - 1:36145 error 'puter' is not defined no-undef - 1:36203 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:36275 error 'puter' is not defined no-undef - 1:36311 error 'puter' is not defined no-undef - 1:36408 error 'puter' is not defined no-undef - 1:36440 error 'puter' is not defined no-undef - 1:36525 error 'puter' is not defined no-undef - 1:36582 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:36725 error 'puter' is not defined no-undef - 1:37389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:37937 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:38079 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:38218 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:38380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:40920 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:41131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:41662 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:41860 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:42350 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:42643 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:42949 error 'r' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:43005 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:43135 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:43503 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:43669 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:43767 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:43808 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:44249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:44535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:44635 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:44665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:44751 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:44930 error Expected to call 'super()' constructor-super - 1:44944 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:44944 error 'this' is not allowed before 'super()' no-this-before-super - 1:44962 error 'this' is not allowed before 'super()' no-this-before-super - 1:44987 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:45188 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:45278 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:45396 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:45527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:45950 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:46532 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:46534 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:46536 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:46538 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:47882 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:47965 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:48052 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:48131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:48289 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:48473 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:48706 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:49096 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:49123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:49261 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:49288 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:49726 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:49802 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:50080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:50453 error 'r' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:51032 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:51357 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:51741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:51998 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:52493 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:53126 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:53226 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:53564 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:53735 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:54201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:54237 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:54532 error 'puter' is not defined no-undef - 1:54714 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:55403 error 'puter' is not defined no-undef - 1:55428 error 'puter' is not defined no-undef - 1:55448 error 'puter' is not defined no-undef - 1:55487 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:55643 error 'puter' is not defined no-undef - 1:55659 error 'puter' is not defined no-undef - 1:55685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:55769 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:56045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:56088 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:56192 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:56406 error 'puter' is not defined no-undef - 1:56420 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:56420 error 'puter' is not defined no-undef - 1:56449 error 'puter' is not defined no-undef - 1:56488 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:56790 error 'puter' is not defined no-undef - 1:57068 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:57273 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:57356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:57443 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:57522 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:57674 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:57956 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:58076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:58394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:58617 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:58680 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60027 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60143 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60519 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60534 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60749 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:60965 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:61011 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:61253 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:61452 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:61663 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:62810 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:62903 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:63094 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:63198 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:63526 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:63575 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:63759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:63820 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:64198 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:64200 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:64468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:64706 error 'g' is defined but never used @typescript-eslint/no-unused-vars - 1:64708 error Empty block statement no-empty - 1:64835 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:64837 error Empty block statement no-empty - 1:64929 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:64931 error Empty block statement no-empty - 1:65032 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:65395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:65484 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:65507 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:65581 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:65583 error Empty block statement no-empty - 1:65681 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:65683 error Empty block statement no-empty - 1:65730 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:65732 error Empty block statement no-empty - 1:65734 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:65958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66271 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66373 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66540 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:66542 error Empty block statement no-empty - 1:66544 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66659 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66818 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:66860 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:66956 error 'attachEvent' is not defined no-undef - 1:67391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:67741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:67898 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:67985 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68005 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68385 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:68387 error Empty block statement no-empty - 1:68389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68401 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:68800 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69291 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69385 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69601 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69675 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69845 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69959 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:69995 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:70030 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70255 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70267 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70352 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70557 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70683 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70857 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70928 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:70984 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71047 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71142 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71649 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71707 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71804 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:71869 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:72279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:72389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:72518 error Unnecessary escape character: \/ no-useless-escape - 1:72529 error Unnecessary escape character: \/ no-useless-escape - 1:72571 error Unnecessary escape character: \/ no-useless-escape - 1:72587 error Unnecessary escape character: \/ no-useless-escape - 1:72642 error Unnecessary escape character: \/ no-useless-escape - 1:72681 error Unnecessary escape character: \/ no-useless-escape - 1:72691 error Unnecessary escape character: \/ no-useless-escape - 1:72719 error Unnecessary escape character: \/ no-useless-escape - 1:72945 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:73555 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:73625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:75093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:75505 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76054 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:76105 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76151 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76638 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76906 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:76980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:77060 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:77201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:77238 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:77366 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:77552 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:78101 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:78195 error Unexpected lexical declaration in case block no-case-declarations - 1:78229 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:78279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:78364 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:78666 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:78883 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:79158 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:79535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80098 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80277 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80338 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80526 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80592 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:80696 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:81276 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:81826 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:82521 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:82940 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:83189 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:83202 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:83447 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:83651 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:83969 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:84919 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:85285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:85400 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:85655 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:86555 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:87365 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1:87710 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:88236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:88368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:88537 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:88615 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:88767 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:89088 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:89189 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:89232 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:89479 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:89545 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:89677 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:90164 error Unexpected lexical declaration in case block no-case-declarations - 1:90198 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:90285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:90526 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:90650 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:90688 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:90768 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:90851 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:91008 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:91110 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:91194 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:91256 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:92786 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:92920 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:93357 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:93981 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:94863 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:95064 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:95071 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:95152 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:95179 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:95374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:95417 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:95583 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:96236 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:96444 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:96523 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:96676 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:96899 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:96959 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:97131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:97236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:97337 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:97460 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:97566 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:97636 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:98611 error Promise executor functions should not be async no-async-promise-executor - 1:98628 error 'puter' is not defined no-undef - 1:98653 error 'puter' is not defined no-undef - 1:98673 error 'puter' is not defined no-undef - 1:98712 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:98790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99164 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99265 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99292 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99334 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99397 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99410 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99539 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:99958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:100249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:100362 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:100439 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:100971 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:101176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:101330 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:101513 error 'validateObject' is not defined no-undef - 1:101785 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:101897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:102021 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:102264 error 'puter' is not defined no-undef - 1:102330 error 'puter' is not defined no-undef - 1:102367 error 'puter' is not defined no-undef - 1:102700 error Promise executor functions should not be async no-async-promise-executor - 1:102717 error 'puter' is not defined no-undef - 1:102742 error 'puter' is not defined no-undef - 1:102762 error 'puter' is not defined no-undef - 1:102801 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:102882 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:103624 error Promise executor functions should not be async no-async-promise-executor - 1:103641 error 'puter' is not defined no-undef - 1:103666 error 'puter' is not defined no-undef - 1:103686 error 'puter' is not defined no-undef - 1:103725 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:103756 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:103859 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:104253 error Promise executor functions should not be async no-async-promise-executor - 1:104270 error 'puter' is not defined no-undef - 1:104295 error 'puter' is not defined no-undef - 1:104315 error 'puter' is not defined no-undef - 1:104354 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:104575 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:104717 error Promise executor functions should not be async no-async-promise-executor - 1:104734 error 'puter' is not defined no-undef - 1:104759 error 'puter' is not defined no-undef - 1:104779 error 'puter' is not defined no-undef - 1:104994 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:105123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:105196 error 'g' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:105330 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:105366 error 'puter' is not defined no-undef - 1:105633 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:105752 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:105913 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:106154 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:106601 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:106638 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:106791 error 'puter' is not defined no-undef - 1:106937 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:106939 error Empty block statement no-empty - 1:107076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:107243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:107478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:107667 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:108565 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:108652 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:108811 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:108891 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:109028 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:109108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:109123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:109253 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:109556 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:109592 error 'puter' is not defined no-undef - 1:110051 error Promise executor functions should not be async no-async-promise-executor - 1:110068 error 'puter' is not defined no-undef - 1:110093 error 'puter' is not defined no-undef - 1:110113 error 'puter' is not defined no-undef - 1:110152 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:110329 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:110589 error Promise executor functions should not be async no-async-promise-executor - 1:110606 error 'puter' is not defined no-undef - 1:110631 error 'puter' is not defined no-undef - 1:110651 error 'puter' is not defined no-undef - 1:110690 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:110806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:111436 error Promise executor functions should not be async no-async-promise-executor - 1:111453 error 'puter' is not defined no-undef - 1:111478 error 'puter' is not defined no-undef - 1:111498 error 'puter' is not defined no-undef - 1:111537 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:111719 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:111722 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:111849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:112270 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:112869 error Promise executor functions should not be async no-async-promise-executor - 1:112886 error 'puter' is not defined no-undef - 1:112911 error 'puter' is not defined no-undef - 1:112931 error 'puter' is not defined no-undef - 1:112970 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:113015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:113090 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:113132 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:113531 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:113575 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:113689 error 'puter' is not defined no-undef - 1:113714 error 'puter' is not defined no-undef - 1:113734 error 'puter' is not defined no-undef - 1:113773 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:113806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:114048 error 'puter' is not defined no-undef - 1:114450 error Promise executor functions should not be async no-async-promise-executor - 1:114467 error 'puter' is not defined no-undef - 1:114492 error 'puter' is not defined no-undef - 1:114512 error 'puter' is not defined no-undef - 1:114551 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:114633 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:114950 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:115620 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:115689 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:115757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:115966 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:116098 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:116229 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:116868 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:117044 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:117271 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:117368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:117444 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:117647 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:118044 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:118844 error 'puter' is not defined no-undef - 1:118896 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:119387 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:119518 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:119661 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:119808 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:119839 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:119839 error 'puter' is not defined no-undef - 1:119952 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:119952 error 'puter' is not defined no-undef - 1:120047 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:120051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120051 error 'puter' is not defined no-undef - 1:120172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120172 error 'puter' is not defined no-undef - 1:120287 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120287 error 'puter' is not defined no-undef - 1:120402 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120402 error 'puter' is not defined no-undef - 1:120504 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120504 error 'puter' is not defined no-undef - 1:120584 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:120713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:122162 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:122570 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:122723 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:124086 error 't' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:124168 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:124170 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:124306 error 'puter' is not defined no-undef - 1:124322 error 'puter' is not defined no-undef - 1:124345 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:124413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:124968 error 'puter' is not defined no-undef - 1:125063 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:125082 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:125111 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:125113 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:125144 error 'puter' is not defined no-undef - 1:125204 error 'puter' is not defined no-undef - 1:125270 error 'puter' is not defined no-undef - 1:125327 error 'puter' is not defined no-undef - 1:125425 error 't' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:125520 error 'puter' is not defined no-undef - 1:125702 error 'puter' is not defined no-undef - 1:125760 error 'puter' is not defined no-undef - 1:125842 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:125934 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:126043 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:126259 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:126460 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:127243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:127391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:127706 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:128098 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:128514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:129054 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:129366 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:129476 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:129702 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:130233 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:130299 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:131009 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:131176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:131313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:132372 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:132855 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:133129 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:133587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:133796 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:134203 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:134818 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:135244 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:135353 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:135459 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:135577 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:135879 error 'puter' is not defined no-undef - 1:136256 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:136556 error 'puter' is not defined no-undef - 1:137496 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:137893 error 'puter' is not defined no-undef - 1:138272 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:138453 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:138631 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:138811 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:139001 error 's' is defined but never used @typescript-eslint/no-unused-vars - 1:139177 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:139342 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 1:140487 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:140604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:140645 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:140776 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:141096 error 'puter' is not defined no-undef - 1:141151 error 'puter' is not defined no-undef - 1:141206 error 'puter' is not defined no-undef - 1:141243 error 'puter' is not defined no-undef - 1:141305 error 'puter' is not defined no-undef - 1:141353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:141435 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:141806 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:142042 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:146313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:146605 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:146608 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:146911 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:147079 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:147479 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:147783 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:147873 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:148083 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:149222 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:149529 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:149868 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:149962 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:150111 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:150503 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:152562 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:153313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:154358 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:154636 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:154712 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:156733 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:156967 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:156979 error 'puter' is not defined no-undef - 1:157324 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:157398 error 'puter' is not defined no-undef - 1:157519 error 'puter' is not defined no-undef - 1:157680 error 'puter' is not defined no-undef - 1:157696 error 'puter' is not defined no-undef - 1:157719 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:157772 error 'puter' is not defined no-undef - 1:158255 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:159148 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:159504 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:159799 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:160607 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:160803 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:162186 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:162271 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:162849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:162927 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163130 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163450 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163553 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163683 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163714 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163714 error 'puter' is not defined no-undef - 1:163827 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163827 error 'puter' is not defined no-undef - 1:163922 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:163926 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:163926 error 'puter' is not defined no-undef - 1:164047 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:164047 error 'puter' is not defined no-undef - 1:164162 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:164162 error 'puter' is not defined no-undef - 1:164277 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:164277 error 'puter' is not defined no-undef - 1:164379 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:164379 error 'puter' is not defined no-undef - 1:164578 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1:164682 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1:164875 error 't' is defined but never used @typescript-eslint/no-unused-vars - 1:164878 error Setter cannot return a value no-setter-return - 1:164978 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:165376 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:165548 error 'puter' is not defined no-undef - 1:165563 error 'puter' is not defined no-undef - 1:165575 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:165770 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:165886 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:165928 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:166010 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:166246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:166545 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:167003 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:167003 error 'e' is assigned a value but never used @typescript-eslint/no-unused-vars - 1:167129 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:167291 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:168683 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:168865 error Setter cannot return a value no-setter-return - 1:168902 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:168983 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:169070 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:169373 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:169668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:169849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:169929 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:170391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:170667 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:172310 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:172472 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1:172483 error 'puter' is not defined no-undef - 1:172627 error 'puter' is not defined no-undef - 1:172660 error 'puter' is not defined no-undef - 1:172691 error 'puter' is not defined no-undef - 1:172727 error 'puter' is not defined no-undef - 1:172760 error 'puter' is not defined no-undef - 1:172774 error 'puter' is not defined no-undef - 1:172800 error 'puter' is not defined no-undef - 1:172819 error 'puter' is not defined no-undef - 1:172856 error 'puter' is not defined no-undef - 1:172888 error 'puter' is not defined no-undef - 1:172921 error 'puter' is not defined no-undef - 1:172961 error 'puter' is not defined no-undef - 1:173000 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/index.js - 101:13 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 234:29 error Setter cannot return a value no-setter-return - 447:25 error 'puter' is not defined no-undef - 457:9 error 'puter' is not defined no-undef - 459:9 error 'puter' is not defined no-undef - 463:9 error 'puter' is not defined no-undef - 468:12 error 'puter' is not defined no-undef - 468:35 error 'puter' is not defined no-undef - 469:13 error 'puter' is not defined no-undef - 470:17 error 'puter' is not defined no-undef - 474:9 error 'puter' is not defined no-undef - 476:13 error 'puter' is not defined no-undef - 477:17 error 'puter' is not defined no-undef - 478:17 error 'puter' is not defined no-undef - 480:17 error 'puter' is not defined no-undef - 482:13 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/lib/filesystem/APIFS.js - 62:43 error 'puter' is not defined no-undef - 65:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/lib/filesystem/PostMessageFS.js - 20:35 error 'o' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/lib/path.js - 27:3 error 'CHAR_UPPERCASE_A' is assigned a value but never used @typescript-eslint/no-unused-vars - 28:3 error 'CHAR_LOWERCASE_A' is assigned a value but never used @typescript-eslint/no-unused-vars - 29:3 error 'CHAR_UPPERCASE_Z' is assigned a value but never used @typescript-eslint/no-unused-vars - 30:3 error 'CHAR_LOWERCASE_Z' is assigned a value but never used @typescript-eslint/no-unused-vars - 34:3 error 'CHAR_COLON' is assigned a value but never used @typescript-eslint/no-unused-vars - 35:3 error 'CHAR_QUESTION_MARK' is assigned a value but never used @typescript-eslint/no-unused-vars - 37:10 error 'isPathSeparator' is defined but never used @typescript-eslint/no-unused-vars - 499:5 error 'validateObject' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/lib/socket.io/socket.io.esm.min.js - 6:29 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1390 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1882 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2031 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2112 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2237 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2616 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:2815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:3026 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4173 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:4266 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4457 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4561 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4889 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4938 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5122 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5183 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:5561 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:5563 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:5831 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6069 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:6071 error Empty block statement no-empty - 6:6198 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:6200 error Empty block statement no-empty - 6:6292 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:6294 error Empty block statement no-empty - 6:6393 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6756 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6845 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6868 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:6942 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:6944 error Empty block statement no-empty - 6:7042 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:7044 error Empty block statement no-empty - 6:7091 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:7093 error Empty block statement no-empty - 6:7095 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7319 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7632 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7899 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:7901 error Empty block statement no-empty - 6:7903 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8017 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8223 error 'attachEvent' is not defined no-undef - 6:8391 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8402 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:8754 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9103 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9256 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9343 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9363 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9743 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:9745 error Empty block statement no-empty - 6:9747 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9758 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9837 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10156 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10647 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10744 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10960 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11034 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11204 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11318 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11354 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11614 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11710 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11915 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12214 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12341 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12404 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13006 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13064 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13161 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13226 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13635 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13745 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13873 error Unnecessary escape character: \/ no-useless-escape - 6:13884 error Unnecessary escape character: \/ no-useless-escape - 6:13926 error Unnecessary escape character: \/ no-useless-escape - 6:13942 error Unnecessary escape character: \/ no-useless-escape - 6:13997 error Unnecessary escape character: \/ no-useless-escape - 6:14036 error Unnecessary escape character: \/ no-useless-escape - 6:14046 error Unnecessary escape character: \/ no-useless-escape - 6:14074 error Unnecessary escape character: \/ no-useless-escape - 6:14298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14752 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14911 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16446 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16858 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17405 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:17456 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17502 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17818 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17988 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18060 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18255 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18329 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18550 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18715 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18901 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19543 error Unexpected lexical declaration in case block no-case-declarations - 6:19577 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19627 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19712 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20231 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20883 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21446 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21565 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21686 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21940 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22043 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:22623 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23168 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 6:23863 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24282 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24461 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24998 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25316 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26282 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:26648 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26763 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27018 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27918 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28728 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:29073 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29599 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29900 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29978 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30130 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30458 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30559 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30602 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30915 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31047 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31534 error Unexpected lexical declaration in case block no-case-declarations - 6:31568 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31655 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31896 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32020 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:32058 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32221 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32378 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32564 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32626 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34156 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34290 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36238 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36438 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:36445 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36526 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36553 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36791 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36957 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37609 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:37818 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38050 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38273 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:38333 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38505 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38610 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38711 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38834 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38940 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39010 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/lib/socket.io/socket.io.js - 7:3 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:66 error 'module' is not defined no-undef - 8:35 error 'define' is not defined no-undef - 8:48 error 'define' is not defined no-undef - 15:12 error '_typeof' is a function no-func-assign - 44:5 error '_extends' is a function no-func-assign - 74:5 error '_getPrototypeOf' is a function no-func-assign - 80:5 error '_setPrototypeOf' is a function no-func-assign - 93:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 97:23 error 'Parent' is defined but never used @typescript-eslint/no-unused-vars - 97:31 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 97:37 error 'Class' is defined but never used @typescript-eslint/no-unused-vars - 99:7 error '_construct' is a function no-func-assign - 101:7 error '_construct' is a function no-func-assign - 117:5 error '_wrapNativeSuper' is a function no-func-assign - 178:7 error '_get' is a function no-func-assign - 180:7 error '_get' is a function no-func-assign - 251:23 error Unsafe usage of ThrowStatement no-unsafe-finally - 714:16 error 'i' is already defined no-redeclare - 764:15 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 822:15 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 980:29 error 'onPause' is defined but never used @typescript-eslint/no-unused-vars - 1055:12 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 1069:14 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1069:17 error Empty block statement no-empty - 1073:16 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1073:19 error Empty block statement no-empty - 1143:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1154:15 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1160:15 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1187:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1223:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1246:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1300:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1318:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1358:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1367:15 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1369:44 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1374:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1374:23 error Empty block statement no-empty - 1378:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1378:25 error Empty block statement no-empty - 1382:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1382:23 error Empty block statement no-empty - 1383:11 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1394:15 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1448:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1448:23 error Empty block statement no-empty - 1491:5 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 1493:7 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 1494:7 error 'attachEvent' is not defined no-undef - 1502:28 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 1577:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1600:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1609:17 error 'opts' is assigned a value but never used @typescript-eslint/no-unused-vars - 1618:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1618:25 error Empty block statement no-empty - 1691:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1692:9 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 1696:9 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 1720:37 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 1738:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1760:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1791:24 error Unnecessary escape character: \/ no-useless-escape - 1791:35 error Unnecessary escape character: \/ no-useless-escape - 1791:77 error Unnecessary escape character: \/ no-useless-escape - 1791:93 error Unnecessary escape character: \/ no-useless-escape - 1791:148 error Unnecessary escape character: \/ no-useless-escape - 1791:187 error Unnecessary escape character: \/ no-useless-escape - 1791:197 error Unnecessary escape character: \/ no-useless-escape - 1791:225 error Unnecessary escape character: \/ no-useless-escape - 1963:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1980:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1996:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2016:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2048:15 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 2065:11 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 2153:15 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 2193:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2326:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 2426:3 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2496:27 error 'toJSON' is defined but never used @typescript-eslint/no-unused-vars - 2788:62 error Empty block statement no-empty - 2837:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 3161:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 3202:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 3209:9 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 3220:11 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 3247:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 3272:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 3356:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 3442:13 error Use "@ts-expect-error" instead of "@ts-ignore", as "@ts-ignore" will do nothing if the following line is error-free @typescript-eslint/ban-ts-comment - 3498:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 3553:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4008:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 4017:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 4026:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 4061:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4065:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4071:11 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 4165:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4207:32 error 'socket' is defined but never used @typescript-eslint/no-unused-vars - 4293:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 4295:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/lib/socket.io/socket.io.min.js - 6:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69 error 'module' is not defined no-undef - 6:115 error 'define' is not defined no-undef - 6:126 error 'define' is not defined no-undef - 6:249 error 't' is a function no-func-assign - 6:607 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1175 error 'i' is a function no-func-assign - 6:1294 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1507 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1683 error 's' is a function no-func-assign - 6:1822 error 'a' is a function no-func-assign - 6:2162 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:2186 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:2188 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 6:2190 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 6:2200 error 'c' is a function no-func-assign - 6:2433 error 'h' is a function no-func-assign - 6:3360 error 'p' is a function no-func-assign - 6:3687 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4648 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4691 error Unsafe usage of ThrowStatement no-unsafe-finally - 6:4728 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6129 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6656 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6798 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7004 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7139 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7579 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7790 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9025 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:9116 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10353 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10467 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:10996 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10998 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:11263 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11501 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11503 error Empty block statement no-empty - 6:11630 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11632 error Empty block statement no-empty - 6:11724 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11726 error Empty block statement no-empty - 6:11968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12304 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:12354 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12422 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12541 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12688 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:12695 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13181 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:13228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13314 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:13321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13431 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13987 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:14033 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14151 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:14175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14533 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:14848 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14871 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:14944 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:14946 error Empty block statement no-empty - 6:15044 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:15046 error Empty block statement no-empty - 6:15093 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:15095 error Empty block statement no-empty - 6:15097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15637 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15953 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:15955 error Empty block statement no-empty - 6:15957 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16334 error 'attachEvent' is not defined no-undef - 6:16506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16518 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:17324 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17597 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:17604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17941 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:18071 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:18073 error Empty block statement no-empty - 6:18075 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18093 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18210 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18698 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:18705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19060 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19214 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19523 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19595 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19762 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19824 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19888 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19930 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:19960 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20118 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:20226 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20367 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20486 error Unnecessary escape character: \/ no-useless-escape - 6:20497 error Unnecessary escape character: \/ no-useless-escape - 6:20539 error Unnecessary escape character: \/ no-useless-escape - 6:20555 error Unnecessary escape character: \/ no-useless-escape - 6:20610 error Unnecessary escape character: \/ no-useless-escape - 6:20649 error Unnecessary escape character: \/ no-useless-escape - 6:20659 error Unnecessary escape character: \/ no-useless-escape - 6:20687 error Unnecessary escape character: \/ no-useless-escape - 6:20911 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21321 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21511 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23055 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23703 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:24036 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:24087 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24161 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:24168 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24451 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:24533 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24958 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25029 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25113 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25251 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25292 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25414 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25606 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26193 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26319 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26369 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26808 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:26815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27059 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27749 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28370 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28505 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:28525 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28648 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28923 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29050 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30226 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 6:30899 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31313 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31737 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33137 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34156 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:34203 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:34693 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:35014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:36383 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:36806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37142 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:37326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37642 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:37823 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37952 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:37959 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38590 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38716 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:38787 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:38794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39082 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39172 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39847 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39956 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40277 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40442 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:40649 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40756 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:40941 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:40948 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41072 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41174 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41260 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43190 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43324 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43785 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45430 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45551 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:45664 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:45671 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45750 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45785 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45972 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46232 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:46730 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:47041 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:47307 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47427 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47628 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47819 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:47884 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:47944 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48118 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48326 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48583 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48744 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/lib/socket.io/socket.io.msgpack.min.js - 6:1 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:69 error 'module' is not defined no-undef - 6:115 error 'define' is not defined no-undef - 6:126 error 'define' is not defined no-undef - 6:274 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:548 error 'e' is a function no-func-assign - 6:906 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1474 error 'o' is a function no-func-assign - 6:1593 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:1982 error 'a' is a function no-func-assign - 6:2121 error 'u' is a function no-func-assign - 6:2461 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:2485 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:2487 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 6:2489 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 6:2499 error 'h' is a function no-func-assign - 6:2732 error 'f' is a function no-func-assign - 6:3659 error 'd' is a function no-func-assign - 6:3986 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4516 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4920 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4947 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:4990 error Unsafe usage of ThrowStatement no-unsafe-finally - 6:5027 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6542 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6940 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:6955 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7180 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7303 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7392 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7438 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7679 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:7878 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:8089 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:9324 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:9415 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10267 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10340 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10652 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:10766 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11297 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:11562 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:11801 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11803 error Empty block statement no-empty - 6:11930 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:11932 error Empty block statement no-empty - 6:12024 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:12026 error Empty block statement no-empty - 6:12268 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12604 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:12654 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12722 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12778 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12841 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12894 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:12988 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:12995 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13481 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:13528 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13614 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:13621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:13806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14288 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:14334 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14452 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:14476 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:14834 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:15149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15172 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:15245 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:15247 error Empty block statement no-empty - 6:15345 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:15347 error Empty block statement no-empty - 6:15394 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:15396 error Empty block statement no-empty - 6:15398 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15628 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:15938 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16062 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16254 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:16256 error Empty block statement no-empty - 6:16258 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16635 error 'attachEvent' is not defined no-undef - 6:16807 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:16819 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:17625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17782 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17898 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:17905 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:17931 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18242 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:18372 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:18374 error Empty block statement no-empty - 6:18376 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:18511 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19000 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:19007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19362 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19516 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19611 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19825 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:19897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20064 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20126 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20190 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20232 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:20262 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20420 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:20528 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20546 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20669 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:20788 error Unnecessary escape character: \/ no-useless-escape - 6:20799 error Unnecessary escape character: \/ no-useless-escape - 6:20841 error Unnecessary escape character: \/ no-useless-escape - 6:20857 error Unnecessary escape character: \/ no-useless-escape - 6:20912 error Unnecessary escape character: \/ no-useless-escape - 6:20951 error Unnecessary escape character: \/ no-useless-escape - 6:20961 error Unnecessary escape character: \/ no-useless-escape - 6:20989 error Unnecessary escape character: \/ no-useless-escape - 6:21213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21623 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21670 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:21813 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23357 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:23770 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24005 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:24338 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:24389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24463 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:24470 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:24753 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:24835 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25082 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25260 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25331 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25415 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25553 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25716 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:25908 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26621 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26671 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:26780 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27110 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:27117 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:27658 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28672 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28807 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:28827 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28889 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:28950 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29138 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29225 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29352 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:29943 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30103 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30588 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30681 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30747 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:30829 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31560 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31676 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31946 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:31980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32063 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32268 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32327 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32444 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32495 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:32968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33034 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33132 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33339 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:33750 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37322 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37371 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:37703 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39023 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:39142 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41098 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 6:41521 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:41857 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:42041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42357 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:42538 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42667 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:42674 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42812 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:42864 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43305 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43431 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43502 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:43509 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43797 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:43887 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44043 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44562 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44671 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:44992 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45157 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:45364 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45471 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45656 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:45663 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45787 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45889 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:45975 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:47905 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48039 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:48500 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50145 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50266 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:50379 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:50386 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50465 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50500 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50687 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50730 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:50947 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:51445 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:51756 error 't' is defined but never used @typescript-eslint/no-unused-vars - 6:52022 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52142 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52343 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52534 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:52599 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 6:52659 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52833 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:52943 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53189 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 6:53459 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/lib/utils.js - 24:22 error 'error' is defined but never used @typescript-eslint/no-unused-vars - 41:14 error 'error' is defined but never used @typescript-eslint/no-unused-vars - 128:30 error 'puter' is not defined no-undef - 163:43 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 168:44 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 251:9 error 'puter' is not defined no-undef - 251:28 error 'puter' is not defined no-undef - 253:19 error 'puter' is not defined no-undef - 254:16 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 266:42 error 'puter' is not defined no-undef - 266:59 error 'puter' is not defined no-undef - 341:54 error 'puter' is not defined no-undef - 343:21 error 'puter' is not defined no-undef - 344:27 error 'puter' is not defined no-undef - 345:24 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 370:34 error 'puter' is not defined no-undef - 404:44 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/Apps.js - 40:22 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 141:13 error 'options' is assigned a value but never used @typescript-eslint/no-unused-vars - 147:29 error 'resolve' is defined but never used @typescript-eslint/no-unused-vars - 147:38 error 'reject' is defined but never used @typescript-eslint/no-unused-vars - 162:63 error 'puter' is not defined no-undef - 162:80 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/Auth.js - 53:25 error 'puter' is not defined no-undef - 65:25 error 'puter' is not defined no-undef - 79:12 error 'puter' is not defined no-undef - 100:50 error 'puter' is not defined no-undef - 100:67 error 'puter' is not defined no-undef - 110:9 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FSItem.js - 21:16 error 'puter' is not defined no-undef - 33:22 error 'callback' is defined but never used @typescript-eslint/no-unused-vars - 37:21 error 'callback' is defined but never used @typescript-eslint/no-unused-vars - 42:31 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 42:40 error 'callback' is defined but never used @typescript-eslint/no-unused-vars - 47:16 error 'puter' is not defined no-undef - 51:16 error 'puter' is not defined no-undef - 55:16 error 'puter' is not defined no-undef - 59:16 error 'puter' is not defined no-undef - 71:34 error 'auto_rename' is assigned a value but never used @typescript-eslint/no-unused-vars - 77:16 error 'puter' is not defined no-undef - 90:16 error 'puter' is not defined no-undef - 94:16 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/index.js - 17:10 error 'ProxyFilesystem' is defined but never used @typescript-eslint/no-unused-vars - 17:27 error 'TFilesystem' is defined but never used @typescript-eslint/no-unused-vars - 19:10 error 'CachedFilesystem' is defined but never used @typescript-eslint/no-unused-vars - 20:10 error 'PuterAPIFilesystem' is defined but never used @typescript-eslint/no-unused-vars - 112:16 error 'puter' is not defined no-undef - 117:16 error 'puter' is not defined no-undef - 121:38 error 'attempt' is defined but never used @typescript-eslint/no-unused-vars - 122:16 error 'puter' is not defined no-undef - 127:16 error 'puter' is not defined no-undef - 132:16 error 'puter' is not defined no-undef - 137:16 error 'puter' is not defined no-undef - 142:16 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/operations/copy.js - 26:24 error Promise executor functions should not be async no-async-promise-executor - 29:13 error 'puter' is not defined no-undef - 29:32 error 'puter' is not defined no-undef - 31:23 error 'puter' is not defined no-undef - 32:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/operations/deleteFSEntry.js - 28:24 error Promise executor functions should not be async no-async-promise-executor - 31:13 error 'puter' is not defined no-undef - 31:32 error 'puter' is not defined no-undef - 33:23 error 'puter' is not defined no-undef - 34:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/operations/mkdir.js - 27:24 error Promise executor functions should not be async no-async-promise-executor - 30:13 error 'puter' is not defined no-undef - 30:32 error 'puter' is not defined no-undef - 32:23 error 'puter' is not defined no-undef - 33:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/operations/move.js - 24:24 error Promise executor functions should not be async no-async-promise-executor - 27:13 error 'puter' is not defined no-undef - 27:32 error 'puter' is not defined no-undef - 29:23 error 'puter' is not defined no-undef - 30:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 47:22 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/operations/read.js - 19:24 error Promise executor functions should not be async no-async-promise-executor - 22:13 error 'puter' is not defined no-undef - 22:32 error 'puter' is not defined no-undef - 24:23 error 'puter' is not defined no-undef - 25:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/operations/readdir.js - 19:24 error Promise executor functions should not be async no-async-promise-executor - 27:13 error 'puter' is not defined no-undef - 27:32 error 'puter' is not defined no-undef - 29:23 error 'puter' is not defined no-undef - 30:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/operations/rename.js - 21:24 error Promise executor functions should not be async no-async-promise-executor - 24:13 error 'puter' is not defined no-undef - 24:32 error 'puter' is not defined no-undef - 26:23 error 'puter' is not defined no-undef - 27:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/operations/sign.js - 27:24 error Promise executor functions should not be async no-async-promise-executor - 30:13 error 'puter' is not defined no-undef - 30:32 error 'puter' is not defined no-undef - 32:23 error 'puter' is not defined no-undef - 33:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 52:53 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 88:58 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 92:48 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/operations/space.js - 18:24 error Promise executor functions should not be async no-async-promise-executor - 21:13 error 'puter' is not defined no-undef - 21:32 error 'puter' is not defined no-undef - 23:23 error 'puter' is not defined no-undef - 24:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/operations/stat.js - 21:24 error Promise executor functions should not be async no-async-promise-executor - 24:13 error 'puter' is not defined no-undef - 24:32 error 'puter' is not defined no-undef - 26:23 error 'puter' is not defined no-undef - 27:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/operations/symlink.js - 10:9 error 'puter' is not defined no-undef - 10:28 error 'puter' is not defined no-undef - 12:19 error 'puter' is not defined no-undef - 13:16 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 39:51 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/operations/upload.js - 6:24 error Promise executor functions should not be async no-async-promise-executor - 9:13 error 'puter' is not defined no-undef - 9:32 error 'puter' is not defined no-undef - 11:23 error 'puter' is not defined no-undef - 65:21 error 'seemsToBeParsedDataTransferItems' is assigned a value but never used @typescript-eslint/no-unused-vars - 76:33 error 'puter' is not defined no-undef - 153:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 170:17 error 'file_count' is assigned a value but never used @typescript-eslint/no-unused-vars - 187:12 error 'puter' is not defined no-undef - 193:20 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 371:41 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 402:28 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/FileSystem/utils/getAbsolutePathForApp.js - 5:8 error 'puter' is not defined no-undef - 14:93 error 'puter' is not defined no-undef - 15:47 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/PuterDialog.js - 339:17 error 'puter' is not defined no-undef - 341:17 error 'puter' is not defined no-undef - 345:17 error 'puter' is not defined no-undef - 350:20 error 'puter' is not defined no-undef - 350:43 error 'puter' is not defined no-undef - 351:21 error 'puter' is not defined no-undef - 352:25 error 'puter' is not defined no-undef - 356:17 error 'puter' is not defined no-undef - 358:21 error 'puter' is not defined no-undef - 359:25 error 'puter' is not defined no-undef - 360:25 error 'puter' is not defined no-undef - 362:25 error 'puter' is not defined no-undef - 364:21 error 'puter' is not defined no-undef - 375:9 error 'puter' is not defined no-undef - 376:9 error 'puter' is not defined no-undef - 383:13 error 'puter' is not defined no-undef - 384:13 error 'puter' is not defined no-undef - 385:13 error 'puter' is not defined no-undef - 397:25 error 'puter' is not defined no-undef - 420:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/modules/UI.js - 206:26 error Unexpected 'debugger' statement no-debugger - 264:43 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 623:49 error 'callback' is defined but never used @typescript-eslint/no-unused-vars - 629:51 error 'callback' is defined but never used @typescript-eslint/no-unused-vars - 635:54 error 'callback' is defined but never used @typescript-eslint/no-unused-vars - 641:45 error 'callback' is defined but never used @typescript-eslint/no-unused-vars - 658:32 error 'puter' is not defined no-undef - 668:44 error 'callback' is defined but never used @typescript-eslint/no-unused-vars - 686:32 error 'puter' is not defined no-undef - 750:32 error 'puter' is not defined no-undef - 761:13 error 'callback' is assigned a value but never used @typescript-eslint/no-unused-vars - 774:13 error 'callback' is assigned a value but never used @typescript-eslint/no-unused-vars - 787:13 error 'callback' is assigned a value but never used @typescript-eslint/no-unused-vars - 800:13 error 'callback' is assigned a value but never used @typescript-eslint/no-unused-vars - 813:13 error 'callback' is assigned a value but never used @typescript-eslint/no-unused-vars - 826:13 error 'callback' is assigned a value but never used @typescript-eslint/no-unused-vars - 839:13 error 'callback' is assigned a value but never used @typescript-eslint/no-unused-vars - 989:13 error 'puter' is not defined no-undef - 991:17 error 'puter' is not defined no-undef - 996:9 error 'puter' is not defined no-undef - 997:9 error 'puter' is not defined no-undef - 1000:18 error 'puter' is not defined no-undef - 1045:39 error 'callback' is defined but never used @typescript-eslint/no-unused-vars - 1207:50 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/services/APIAccess.js - 14:23 error 'v' is defined but never used @typescript-eslint/no-unused-vars - 27:15 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 39:22 error 'v' is defined but never used @typescript-eslint/no-unused-vars - 40:21 error Setter cannot return a value no-setter-return - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/services/Filesystem.js - 88:16 error 'puter' is not defined no-undef - 93:16 error 'puter' is not defined no-undef - 97:38 error 'attempt' is defined but never used @typescript-eslint/no-unused-vars - 98:16 error 'puter' is not defined no-undef - 103:16 error 'puter' is not defined no-undef - 108:16 error 'puter' is not defined no-undef - 113:16 error 'puter' is not defined no-undef - 118:16 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-js/src/services/NoPuterYet.js - 10:14 error 'puter' is not defined no-undef - 10:23 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-wisp/devlog/unit_test_usefulness/a.js - 77:7 error 'NewCallbackByteStream' is assigned a value but never used @typescript-eslint/no-unused-vars - 84:48 error 'rjct' is defined but never used @typescript-eslint/no-unused-vars - 279:7 error 'WispClient' is defined but never used @typescript-eslint/no-unused-vars - 293:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-wisp/devlog/unit_test_usefulness/b.js - 76:7 error 'NewCallbackByteStream' is assigned a value but never used @typescript-eslint/no-unused-vars - 83:48 error 'rjct' is defined but never used @typescript-eslint/no-unused-vars - 289:7 error 'WispClient' is defined but never used @typescript-eslint/no-unused-vars - 303:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-wisp/src/exports.js - 407:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/puter-wisp/test/test.js - 1:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:16 error 'require' is not defined no-undef - 6:5 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:5 error 'require' is not defined no-undef - 59:7 error 'BASH_TEST_BYTES' is assigned a value but never used @typescript-eslint/no-unused-vars - 145:9 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/index.js - 19:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:26 error 'require' is not defined no-undef - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:28 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 24:1 error 'module' is not defined no-undef - 30:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:18 error 'require' is not defined no-undef - 31:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 31:18 error 'require' is not defined no-undef - 32:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 32:19 error 'require' is not defined no-undef - 33:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 33:14 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/AdvancedBase.js - 22:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:25 error 'require' is not defined no-undef - 26:9 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:9 error 'require' is not defined no-undef - 27:9 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:9 error 'require' is not defined no-undef - 28:9 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:9 error 'require' is not defined no-undef - 29:9 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:9 error 'require' is not defined no-undef - 30:9 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:9 error 'require' is not defined no-undef - 34:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/PosixError.js - 278:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/bases/BasicBase.js - 56:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/bases/FeatureBase.js - 19:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:23 error 'require' is not defined no-undef - 40:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/concepts/Service.js - 1:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:26 error 'require' is not defined no-undef - 2:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:24 error 'require' is not defined no-undef - 65:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/features/EmitterFeature.js - 13:1 error 'module' is not defined no-undef - 14:38 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/features/NariMethodsFeature.js - 1:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/features/NodeModuleDIFeature.js - 37:1 error 'module' is not defined no-undef - 56:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 56:20 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/features/PropertiesFeature.js - 19:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/features/ServiceFeature.js - 1:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:21 error 'require' is not defined no-undef - 3:1 error 'module' is not defined no-undef - 4:39 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/features/TopicsFeature.js - 1:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:39 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:9 error 'install_in_instance' is assigned a value but never used @typescript-eslint/no-unused-vars - 3:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:33 error 'require' is not defined no-undef - 5:1 error 'module' is not defined no-undef - 6:39 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - 18:22 error 'v' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/features/TraitsFeature.js - 1:1 error 'module' is not defined no-undef - 3:40 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - 23:39 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/libs/context.js - 44:31 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 61:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/libs/invoker.js - 1:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:26 error 'require' is not defined no-undef - 51:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/libs/listener.js - 20:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:25 error 'require' is not defined no-undef - 21:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:25 error 'require' is not defined no-undef - 28:9 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:9 error 'require' is not defined no-undef - 31:5 error Expected to call 'super()' constructor-super - 32:9 error 'this' is not allowed before 'super()' no-this-before-super - 33:9 error 'this' is not allowed before 'super()' no-this-before-super - 59:9 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 59:9 error 'require' is not defined no-undef - 100:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/libs/log.js - 1:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:26 error 'require' is not defined no-undef - 2:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:25 error 'require' is not defined no-undef - 197:18 error 'level' is defined but never used @typescript-eslint/no-unused-vars - 197:25 error 'message' is defined but never used @typescript-eslint/no-unused-vars - 197:34 error 'fields' is defined but never used @typescript-eslint/no-unused-vars - 197:42 error 'values' is defined but never used @typescript-eslint/no-unused-vars - 225:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/libs/promise.js - 276:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/system/ServiceManager.js - 1:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:26 error 'require' is not defined no-undef - 2:22 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:22 error 'require' is not defined no-undef - 3:9 error 'TeePromise' is assigned a value but never used @typescript-eslint/no-unused-vars - 3:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:24 error 'require' is not defined no-undef - 185:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/src/traits/traits.js - 1:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/test/ServiceManager.test.js - 1:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:20 error 'require' is not defined no-undef - 2:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:21 error 'require' is not defined no-undef - 3:28 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:28 error 'require' is not defined no-undef - 22:1 error 'describe' is not defined no-undef - 23:5 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/test/context.test.js - 1:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:21 error 'require' is not defined no-undef - 2:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:20 error 'require' is not defined no-undef - 4:1 error 'describe' is not defined no-undef - 5:5 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/test/listener.test.js - 1:39 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:39 error 'require' is not defined no-undef - 2:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:20 error 'require' is not defined no-undef - 3:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:25 error 'require' is not defined no-undef - 5:1 error 'describe' is not defined no-undef - 6:5 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/test/log.test.js - 1:54 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:54 error 'require' is not defined no-undef - 2:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:20 error 'require' is not defined no-undef - 4:1 error 'describe' is not defined no-undef - 5:5 error 'it' is not defined no-undef - 35:5 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/test/test.js - 19:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:20 error 'require' is not defined no-undef - 20:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:23 error 'require' is not defined no-undef - 21:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:26 error 'require' is not defined no-undef - 22:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:21 error 'require' is not defined no-undef - 40:1 error 'describe' is not defined no-undef - 41:5 error 'it' is not defined no-undef - 60:1 error 'describe' is not defined no-undef - 61:5 error 'it' is not defined no-undef - 74:1 error 'describe' is not defined no-undef - 75:5 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/test/topics.test.js - 1:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:20 error 'require' is not defined no-undef - 2:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:26 error 'require' is not defined no-undef - 3:34 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:34 error 'require' is not defined no-undef - 5:1 error 'describe' is not defined no-undef - 6:5 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/putility/test/traits.test.js - 1:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:20 error 'require' is not defined no-undef - 2:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:26 error 'require' is not defined no-undef - 24:1 error 'describe' is not defined no-undef - 25:5 error 'it' is not defined no-undef - 32:5 error 'it' is not defined no-undef - 40:5 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/strataparse/dsl/ParserBuilder.js - 75:24 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/strataparse/parse_impls/combinators.js - 20:28 error 'Parser' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/strataparse/strata_impls/ContextSwitchingPStratumImpl.js - 19:41 error 'Parser' is defined but never used @typescript-eslint/no-unused-vars - 27:29 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 68:23 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/strataparse/strata_impls/FirstRecognizedPStratumImpl.js - 19:41 error 'Parser' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/strataparse/strata_impls/MergeWhitespacePStratumImpl.js - 65:24 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/src/terminal/dist/bundle.js - 6:24 error 'exports' is defined but never used @typescript-eslint/no-unused-vars - 7:6 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:350 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:735 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:1314 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:2258 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:3249 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:3392 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:3680 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:3755 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:4141 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:4369 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:5037 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:5174 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:5235 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:7348 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:7547 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:7945 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:8553 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:8778 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:8897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:9171 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:9300 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:9469 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:9557 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:9691 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:9910 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:9966 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:10150 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:10474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:10638 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:10872 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:11429 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:11548 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:11677 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:12345 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:12615 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:12750 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:12841 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:13066 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:13199 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:13893 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:14035 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:14302 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:14524 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:14703 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:15127 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:15588 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:15893 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:16543 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:16595 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:17103 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:17961 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:18440 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:18604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:18752 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:19151 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:19212 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:19425 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:19480 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:19489 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:19623 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:19883 error Empty block statement no-empty - 7:20089 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:20204 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:20291 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:20642 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:21202 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:21411 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:22083 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:24506 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:24696 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:24733 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:24770 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:24802 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:24849 error Unexpected lexical declaration in case block no-case-declarations - 7:25323 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:25422 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:25517 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:25738 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:25741 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:25969 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:26672 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:26887 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:26975 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:27135 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:27366 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:27792 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:27896 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:29171 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:29572 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:32792 error Empty block statement no-empty - 7:32794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:33254 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:34275 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:34383 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:34387 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:35477 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:36018 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 7:36189 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:36330 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:36380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:36550 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:37059 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:37091 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:37110 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:37168 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:38100 error 'this.coreMouseService.activeProtocol' is assigned to itself no-self-assign - 7:39478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:39630 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:39774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:40458 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:41748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:42932 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:44038 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:44191 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:44193 error 't' is defined but never used @typescript-eslint/no-unused-vars - 7:44196 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:44317 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:44608 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:44728 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:44820 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:45071 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:45322 error Unexpected lexical declaration in case block no-case-declarations - 7:45572 error Unexpected lexical declaration in case block no-case-declarations - 7:45883 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:46008 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:46128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:46205 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:46472 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:46618 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:46701 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:47002 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:47354 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:47518 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:47713 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:49186 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:49638 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:49838 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:50222 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:50424 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:50759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:51022 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:51581 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:52110 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:53176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:54193 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:55668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:55832 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:56033 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:56557 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:57066 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:57146 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:57244 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:57457 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:57616 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:58342 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:58464 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:58588 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:58857 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:59059 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:59299 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:59409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:59628 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:60449 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:60959 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:61335 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:61499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:61884 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:62527 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:62754 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:62983 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:63293 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:63483 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:63532 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:64013 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:64381 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:64439 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:64968 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:65328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:65646 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:65709 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:65755 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:65836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:66220 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:66447 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:66944 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:67108 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:67320 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:67586 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:67797 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:68426 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:68510 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:69070 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:69653 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:70039 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:70257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:70665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:71035 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:71331 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:71478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:71627 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:72917 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:73081 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:73455 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:75029 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:75604 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:76638 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:76830 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:77099 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:77376 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:77748 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:78270 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:80295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:80783 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:80897 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:81088 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:81257 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:81492 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:81582 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:81682 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:83217 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:84290 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:84347 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:85360 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:85524 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:85761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:86035 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:86264 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:86534 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:86775 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:87047 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:87107 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:87425 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:88228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:88355 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:88626 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:88644 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:88739 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:89308 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:89364 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:89492 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:89660 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:89842 error Unexpected lexical declaration in case block no-case-declarations - 7:89895 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:90004 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:90107 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:90610 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:91508 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:91613 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:92097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:92201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:92306 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:92616 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:92700 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:92761 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:93392 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:93464 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:93658 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:93785 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:94140 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:95105 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:95234 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:95677 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:96603 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:96714 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:96808 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:97089 error Expected getter 'finalSelectionEnd' to always return a value getter-return - 7:98662 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:98826 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:99059 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:99529 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:99743 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:99817 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:99935 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:100714 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:101529 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:101693 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:101886 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:102126 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:102318 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:103158 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:104015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:104050 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:104273 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:104385 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:104548 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:104708 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:105399 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:105798 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:106234 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:106504 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:106665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:107035 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:107240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:107376 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:107587 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:107935 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:108099 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:108240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:109296 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:109460 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:109731 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:111430 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:111973 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:112090 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:112417 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:112565 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:113050 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:113119 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:113230 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:113519 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:113784 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:113883 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:114002 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:114166 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:114540 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:115240 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:115404 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:115712 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:116690 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:117132 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:117983 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:118114 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:118241 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:118361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:118603 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:119677 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:119774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:120024 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:120870 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:121167 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:121508 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:121865 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:122301 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:122448 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:122571 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:123039 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:123646 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:123779 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:124090 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:125175 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:125493 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:125624 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:125875 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:125960 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:126162 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:126679 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:126935 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:127169 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:127589 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:127803 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:127919 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:127960 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:128128 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:128259 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:128663 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:129000 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:129231 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:130014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:130178 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:131312 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:134236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:134380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:134864 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:135159 error Empty block statement no-empty - 7:135234 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:135374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:135947 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:136241 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:136907 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:137309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:137428 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:137847 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:138062 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:138289 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:138582 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:138632 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:139034 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:139879 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:139951 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:140034 error Empty block statement no-empty - 7:141385 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:141693 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:142073 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:142288 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:143076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:143792 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:146609 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:146613 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:146847 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:146851 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:147278 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:147512 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:148010 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:148389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:148620 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:148941 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:149275 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:149414 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:149830 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:149888 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:150334 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:150498 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:151580 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:151593 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:151867 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:154647 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:161690 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:162341 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:162668 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:162847 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:163255 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:163368 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:164138 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:164385 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:164496 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:164774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:165236 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:165525 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:167080 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:168981 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:169225 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:169759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:170130 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:170445 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:172405 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:172592 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:173564 error Unexpected lexical declaration in case block no-case-declarations - 7:173629 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:174653 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:175270 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:176158 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:176548 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:177189 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:177686 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:178185 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:178703 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:179588 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:179641 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:180701 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:180930 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:181089 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:181356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:181770 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:182254 error Expected a 'break' statement before 'case' no-fallthrough - 7:182272 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:182882 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:183040 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:183307 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:183962 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:185504 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:185625 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:185701 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:185876 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:186034 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:186188 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:186526 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:187876 error Unexpected lexical declaration in case block no-case-declarations - 7:188186 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:189489 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:189653 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:189797 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:190055 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:190252 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:190579 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:191345 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:191578 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:192312 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:192759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:192848 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:192917 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:192990 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:194308 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:194634 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:194769 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:195133 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:195374 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:195495 error 't' is defined but never used @typescript-eslint/no-unused-vars - 7:195997 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:196051 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:196143 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:196215 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:196490 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:196670 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:196913 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:197083 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:197195 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:197406 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:197535 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:197667 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:197747 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:197921 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:198154 error 'process' is not defined no-undef - 7:198243 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:198743 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:198854 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:198925 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:200045 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:200195 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:200232 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:200308 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:200364 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:200494 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:201176 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:201448 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:201540 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:201810 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:201944 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:202054 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:203562 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:204951 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:205070 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:205293 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:205364 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:205555 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:205732 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:205795 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:207502 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:207613 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:208117 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:208534 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:208706 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:208871 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:209149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:209367 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:209846 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:210143 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:210355 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:210775 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:211225 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:211328 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:211614 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:211666 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:212285 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:212433 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:212545 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:213303 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:213481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:213654 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:213727 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:213804 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:213970 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:214055 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:214280 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:214734 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:215753 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:215964 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:216139 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:216690 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:217038 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:217418 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:217888 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:218101 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:218228 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:218533 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:218578 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:218681 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:219014 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:219651 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:219806 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:219967 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:220041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:220380 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:220849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:221245 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:221395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:221680 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:221869 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:222332 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:222379 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:222402 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:222477 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:222626 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:223053 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:223482 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:223755 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:223997 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:224084 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:224173 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:224320 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:224836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:225097 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:225295 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:225505 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:226149 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:226287 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:226458 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:226647 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:226685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:228060 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:228151 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:228514 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:228922 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:229478 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:229757 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:229874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:229914 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:229980 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:230076 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:230239 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:230402 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:230560 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:230699 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:230975 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:231071 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:232013 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:232435 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:232622 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:232690 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:233010 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:233371 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:233677 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:233920 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:234001 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:234329 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:234468 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:234483 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:234518 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:234766 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:235661 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:237579 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:238279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:238372 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:238511 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:239062 error Expected a conditional expression and instead saw an assignment no-cond-assign - 7:239140 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:239148 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:239597 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:240147 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:240551 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:240979 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:241650 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:241759 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:241912 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:242064 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:242159 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:242288 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:242329 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:242560 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:243544 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:243597 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:243645 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:243717 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:243810 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:244201 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:244756 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:244862 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:246966 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:247241 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:247243 error 't' is defined but never used @typescript-eslint/no-unused-vars - 7:247245 error 'i' is defined but never used @typescript-eslint/no-unused-vars - 7:247275 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:247301 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:247303 error 't' is defined but never used @typescript-eslint/no-unused-vars - 7:247329 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:247559 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:248352 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:248599 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:248831 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:248969 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:249013 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:249253 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:249447 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:249585 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:249629 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:250277 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:250560 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:250789 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:251523 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:251724 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:251828 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:252121 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:252195 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:252269 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:252343 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:252395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:252676 error Unexpected lexical declaration in case block no-case-declarations - 7:252722 error Unexpected lexical declaration in case block no-case-declarations - 7:252853 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:253131 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:253180 error Unexpected lexical declaration in case block no-case-declarations - 7:253226 error Unexpected lexical declaration in case block no-case-declarations - 7:253345 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:253429 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:253644 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:253784 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:253990 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:254126 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:254298 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:254409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:254441 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:254616 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:254745 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:254786 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:254882 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:255094 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:255513 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:255628 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:255703 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:255758 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:256414 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:256493 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:256550 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:256594 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:256937 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:257386 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:258070 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:258151 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:258413 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:258745 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:259158 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:259475 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:259753 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:260041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:260130 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:260266 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:260666 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:261102 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:261258 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:262007 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:262665 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:263303 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:263467 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:263614 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:263752 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:264129 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:264224 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:264311 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:264556 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:264786 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:264846 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:264932 error 'i' is defined but never used @typescript-eslint/no-unused-vars - 7:265015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:265077 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:265238 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:265348 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:265389 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:265455 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:265518 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:265856 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:266020 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:266380 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 7:267018 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:267705 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:267953 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:269356 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:269520 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:269879 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:270459 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:270639 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:270911 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:271181 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:271409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:271893 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:271911 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:272251 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:272425 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:272999 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:273409 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:273467 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:273875 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:273940 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:274849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:275013 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:275394 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:275582 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 7:275722 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:275774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:275898 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:276064 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:276229 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:276393 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:276558 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:276714 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:277161 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:278323 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:278578 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:278677 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:278814 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:278907 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:279147 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:279623 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:279816 error Expected a 'break' statement before 'case' no-fallthrough - 7:280685 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:280849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:280982 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:281793 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:282015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:282219 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:282376 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:282678 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:282695 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:282843 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:283119 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:283434 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:283890 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:284206 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:284351 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:284636 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:284983 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:285110 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:285434 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:285638 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:285830 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:288081 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:288503 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:288858 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:289123 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:289220 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:289286 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:289439 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:289566 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 7:289657 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 15:24 error 'exports' is defined but never used @typescript-eslint/no-unused-vars - 16:6 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 16:88 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 16:341 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 26:24 error 'exports' is defined but never used @typescript-eslint/no-unused-vars - 27:6 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:128 error 'Buffer' is not defined no-undef - 27:252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:781 error '_wasmCtx' is not defined no-undef - 27:1246 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:2052 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:3340 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:3519 error 'Buffer' is not defined no-undef - 27:3712 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:3729 error 'A' is defined but never used @typescript-eslint/no-unused-vars - 27:3751 error 'A' is defined but never used @typescript-eslint/no-unused-vars - 27:4597 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:4849 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:6309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:6600 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:6779 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:6842 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:6912 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:7092 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:8029 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:8341 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:8553 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:8819 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:8882 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:9467 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:9774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:9934 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:10309 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:26874 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:27087 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:27813 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:28062 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:28273 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:28407 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:28718 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:29361 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:29480 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:30881 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:31031 error 'Buffer' is not defined no-undef - 27:31300 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:31399 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:31690 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:31781 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:31844 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:32318 error 'A' is defined but never used @typescript-eslint/no-unused-vars - 27:32367 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:33139 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:33362 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:33959 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:34120 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:34342 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:34512 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:34974 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:35586 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:35879 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:37213 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:37789 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:37906 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:38083 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:38214 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:38774 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:38878 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:39736 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:40088 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:40207 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:40371 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:40511 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:40794 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:41015 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:41252 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:41297 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:41499 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:41662 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:41815 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:41981 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:42099 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:42223 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:42458 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:42692 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:42889 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:42955 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:43038 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:43202 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:43348 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:43375 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:44004 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:44573 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:45273 error The update clause in this loop moves the variable in the wrong direction for-direction - 27:45429 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:46386 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:46836 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:46963 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:47279 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:47350 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:47500 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:47716 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:47785 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:48008 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:49041 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:49599 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:49779 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:50022 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:50192 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:50304 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:50655 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:50988 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:51161 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:51474 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:52481 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:52690 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:52811 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:53163 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:53395 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:53730 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:53848 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:53938 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:54254 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:54765 error Unexpected lexical declaration in case block no-case-declarations - 27:55027 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:55377 error Unexpected lexical declaration in case block no-case-declarations - 340:26 error 'puter' is not defined no-undef - 343:21 error 'puter' is not defined no-undef - 346:21 error 'puter' is not defined no-undef - 350:9 error 'puter' is not defined no-undef - 352:13 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/terminal/rollup.config.js - 44:43 error 'name' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/src/terminal/src/main.js - 86:22 error 'puter' is not defined no-undef - 89:17 error 'puter' is not defined no-undef - 92:17 error 'puter' is not defined no-undef - 96:5 error 'puter' is not defined no-undef - 98:9 error 'puter' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/src/useapi/main.js - 129:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/epoxy-tls/client/demo.js - 104:14 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 149:14 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 209:29 error '_' is defined but never used @typescript-eslint/no-unused-vars - 224:28 error '_' is defined but never used @typescript-eslint/no-unused-vars - 242:29 error '_' is defined but never used @typescript-eslint/no-unused-vars - 250:29 error '_' is defined but never used @typescript-eslint/no-unused-vars - 256:14 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/examples/nodejs.js - 4:10 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:10 error 'require' is not defined no-undef - 5:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:11 error 'require' is not defined no-undef - 12:21 error '__dirname' is not defined no-undef - 13:22 error '__dirname' is not defined no-undef - 15:1 error 'process' is not defined no-undef - 16:1 error 'process' is not defined no-undef - 17:1 error 'process' is not defined no-undef - 32:9 error 'process' is not defined no-undef - 36:1 error 'process' is not defined no-undef - 42:9 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/examples/nodejs_state.js - 4:10 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:10 error 'require' is not defined no-undef - 5:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:11 error 'require' is not defined no-undef - 14:21 error '__dirname' is not defined no-undef - 15:22 error '__dirname' is not defined no-undef - 17:1 error 'process' is not defined no-undef - 18:1 error 'process' is not defined no-undef - 19:1 error 'process' is not defined no-undef - 34:9 error 'process' is not defined no-undef - 40:1 error 'process' is not defined no-undef - 46:9 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/examples/worker.js - 1:1 error 'importScripts' is not defined no-undef - 3:20 error 'V86' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/gen/generate_analyzer.js - 4:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:16 error 'require' is not defined no-undef - 5:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 5:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:12 error 'require' is not defined no-undef - 6:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:14 error 'require' is not defined no-undef - 7:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:19 error 'require' is not defined no-undef - 8:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:18 error 'require' is not defined no-undef - 9:86 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:86 error 'require' is not defined no-undef - 11:27 error '__dirname' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/gen/generate_interpreter.js - 4:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:16 error 'require' is not defined no-undef - 5:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 5:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:12 error 'require' is not defined no-undef - 6:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:14 error 'require' is not defined no-undef - 7:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:19 error 'require' is not defined no-undef - 8:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:18 error 'require' is not defined no-undef - 9:86 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:86 error 'require' is not defined no-undef - 11:27 error '__dirname' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/gen/generate_jit.js - 4:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:16 error 'require' is not defined no-undef - 5:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 5:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:12 error 'require' is not defined no-undef - 6:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:14 error 'require' is not defined no-undef - 7:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:19 error 'require' is not defined no-undef - 8:18 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:18 error 'require' is not defined no-undef - 9:86 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:86 error 'require' is not defined no-undef - 11:27 error '__dirname' is not defined no-undef - 245:9 error Empty block statement no-empty - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/gen/rust_ast.js - 3:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:16 error 'require' is not defined no-undef - 81:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/gen/util.js - 3:7 error 'assert' is assigned a value but never used @typescript-eslint/no-unused-vars - 3:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:16 error 'require' is not defined no-undef - 4:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:12 error 'require' is not defined no-undef - 5:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:14 error 'require' is not defined no-undef - 6:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:17 error 'require' is not defined no-undef - 7:7 error 'child_process' is assigned a value but never used @typescript-eslint/no-unused-vars - 7:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:23 error 'require' is not defined no-undef - 48:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/gen/x86_table.js - 3:9 error 'hex' is assigned a value but never used @typescript-eslint/no-unused-vars - 3:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:17 error 'require' is not defined no-undef - 878:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/lib/9p-puter.js - 31:45 error 'process' is not defined no-undef - 32:14 error 'process' is not defined no-undef - 177:5 error 'EPERM' is assigned a value but never used @typescript-eslint/no-unused-vars - 178:5 error 'ENOENT' is assigned a value but never used @typescript-eslint/no-unused-vars - 179:5 error 'EEXIST' is assigned a value but never used @typescript-eslint/no-unused-vars - 180:5 error 'EINVAL' is assigned a value but never used @typescript-eslint/no-unused-vars - 181:5 error 'EOPNOTSUPP' is assigned a value but never used @typescript-eslint/no-unused-vars - 182:5 error 'ENOTEMPTY' is assigned a value but never used @typescript-eslint/no-unused-vars - 183:5 error 'EPROTO' is assigned a value but never used @typescript-eslint/no-unused-vars - 219:5 error 'P9_SETATTR_MODE' is assigned a value but never used @typescript-eslint/no-unused-vars - 220:5 error 'P9_SETATTR_UID' is assigned a value but never used @typescript-eslint/no-unused-vars - 221:5 error 'P9_SETATTR_GID' is assigned a value but never used @typescript-eslint/no-unused-vars - 223:5 error 'P9_SETATTR_ATIME' is assigned a value but never used @typescript-eslint/no-unused-vars - 224:5 error 'P9_SETATTR_MTIME' is assigned a value but never used @typescript-eslint/no-unused-vars - 225:5 error 'P9_SETATTR_CTIME' is assigned a value but never used @typescript-eslint/no-unused-vars - 226:5 error 'P9_SETATTR_ATIME_SET' is assigned a value but never used @typescript-eslint/no-unused-vars - 227:5 error 'P9_SETATTR_MTIME_SET' is assigned a value but never used @typescript-eslint/no-unused-vars - 229:5 error 'P9_STAT_MODE_DIR' is assigned a value but never used @typescript-eslint/no-unused-vars - 230:5 error 'P9_STAT_MODE_APPEND' is assigned a value but never used @typescript-eslint/no-unused-vars - 231:5 error 'P9_STAT_MODE_EXCL' is assigned a value but never used @typescript-eslint/no-unused-vars - 232:5 error 'P9_STAT_MODE_MOUNT' is assigned a value but never used @typescript-eslint/no-unused-vars - 233:5 error 'P9_STAT_MODE_AUTH' is assigned a value but never used @typescript-eslint/no-unused-vars - 234:5 error 'P9_STAT_MODE_TMP' is assigned a value but never used @typescript-eslint/no-unused-vars - 235:5 error 'P9_STAT_MODE_SYMLINK' is assigned a value but never used @typescript-eslint/no-unused-vars - 236:5 error 'P9_STAT_MODE_LINK' is assigned a value but never used @typescript-eslint/no-unused-vars - 237:5 error 'P9_STAT_MODE_DEVICE' is assigned a value but never used @typescript-eslint/no-unused-vars - 238:5 error 'P9_STAT_MODE_NAMED_PIPE' is assigned a value but never used @typescript-eslint/no-unused-vars - 239:5 error 'P9_STAT_MODE_SOCKET' is assigned a value but never used @typescript-eslint/no-unused-vars - 240:5 error 'P9_STAT_MODE_SETUID' is assigned a value but never used @typescript-eslint/no-unused-vars - 241:5 error 'P9_STAT_MODE_SETGID' is assigned a value but never used @typescript-eslint/no-unused-vars - 242:5 error 'P9_STAT_MODE_SETVTX' is assigned a value but never used @typescript-eslint/no-unused-vars - 244:7 error 'P9_LOCK_TYPE_RDLCK' is assigned a value but never used @typescript-eslint/no-unused-vars - 245:7 error 'P9_LOCK_TYPE_WRLCK' is assigned a value but never used @typescript-eslint/no-unused-vars - 246:7 error 'P9_LOCK_TYPE_UNLCK' is assigned a value but never used @typescript-eslint/no-unused-vars - 247:7 error 'P9_LOCK_TYPES' is assigned a value but never used @typescript-eslint/no-unused-vars - 249:7 error 'P9_LOCK_FLAGS_BLOCK' is assigned a value but never used @typescript-eslint/no-unused-vars - 250:7 error 'P9_LOCK_FLAGS_RECLAIM' is assigned a value but never used @typescript-eslint/no-unused-vars - 252:7 error 'P9_LOCK_SUCCESS' is assigned a value but never used @typescript-eslint/no-unused-vars - 253:7 error 'P9_LOCK_BLOCKED' is assigned a value but never used @typescript-eslint/no-unused-vars - 254:7 error 'P9_LOCK_ERROR' is assigned a value but never used @typescript-eslint/no-unused-vars - 255:7 error 'P9_LOCK_GRACE' is assigned a value but never used @typescript-eslint/no-unused-vars - 257:5 error 'FID_NONE' is assigned a value but never used @typescript-eslint/no-unused-vars - 333:23 error 'VirtIO' is not defined no-undef - 352:25 error 'VIRTIO_F_VERSION_1' is not defined no-undef - 353:25 error 'VIRTIO_F_RING_EVENT_IDX' is not defined no-undef - 354:25 error 'VIRTIO_F_RING_INDIRECT_DESC' is not defined no-undef - 366:33 error 'dbg_assert' is not defined no-undef - 392:36 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 394:30 error 'v86util' is not defined no-undef - 400:32 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 412:9 error 'message' is not defined no-undef - 437:41 error 'state' is defined but never used @typescript-eslint/no-unused-vars - 462:5 error 'dbg_assert' is not defined no-undef - 463:5 error 'marshall' is not defined no-undef - 465:9 error 'message' is not defined no-undef - 476:16 error 'marshall' is not defined no-undef - 481:5 error 'dbg_assert' is not defined no-undef - 488:9 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 500:18 error 'marshall' is not defined no-undef - 523:20 error 'marshall' is not defined no-undef - 530:17 error 'req' is already defined no-redeclare - 530:23 error 'marshall' is not defined no-undef - 535:13 error 'message' is not defined no-undef - 536:13 error 'message' is not defined no-undef - 543:17 error 'marshall' is not defined no-undef - 557:17 error 'req' is already defined no-redeclare - 557:23 error 'marshall' is not defined no-undef - 560:17 error 'fid' is already defined no-redeclare - 561:17 error 'existingPath' is assigned a value but never used @typescript-eslint/no-unused-vars - 565:13 error 'message' is not defined no-undef - 599:17 error 'req' is already defined no-redeclare - 599:23 error 'marshall' is not defined no-undef - 600:17 error 'fid' is already defined no-redeclare - 601:17 error 'path' is already defined no-redeclare - 602:17 error 'name' is already defined no-redeclare - 603:17 error 'newPath' is already defined no-redeclare - 607:17 error 'newtgt' is assigned a value but never used @typescript-eslint/no-unused-vars - 645:17 error 'req' is already defined no-redeclare - 645:23 error 'marshall' is not defined no-undef - 646:17 error 'fid' is already defined no-redeclare - 647:17 error 'filePath' is assigned a value but never used @typescript-eslint/no-unused-vars - 648:17 error 'name' is already defined no-redeclare - 649:17 error 'mode' is already defined no-redeclare - 652:17 error 'gid' is already defined no-redeclare - 653:13 error 'message' is not defined no-undef - 661:17 error 'req' is already defined no-redeclare - 661:23 error 'marshall' is not defined no-undef - 662:17 error 'fid' is already defined no-redeclare - 663:17 error 'path' is already defined no-redeclare - 665:13 error 'message' is not defined no-undef - 673:24 error 'marshall' is not defined no-undef - 688:17 error 'req' is already defined no-redeclare - 688:23 error 'marshall' is not defined no-undef - 689:17 error 'fid' is already defined no-redeclare - 690:17 error 'name' is already defined no-redeclare - 691:17 error 'mode' is already defined no-redeclare - 692:17 error 'gid' is already defined no-redeclare - 696:13 error 'message' is not defined no-undef - 702:17 error 'marshall' is not defined no-undef - 715:17 error 'req' is already defined no-redeclare - 715:23 error 'marshall' is not defined no-undef - 716:17 error 'fid' is already defined no-redeclare - 717:17 error 'name' is already defined no-redeclare - 719:17 error 'mode' is already defined no-redeclare - 720:17 error 'gid' is already defined no-redeclare - 727:13 error 'message' is not defined no-undef - 730:17 error 'marshall' is not defined no-undef - 743:13 error 'marshall' is not defined no-undef - 753:17 error 'req' is already defined no-redeclare - 753:23 error 'marshall' is not defined no-undef - 754:17 error 'fid' is already defined no-redeclare - 755:17 error 'path' is already defined no-redeclare - 757:13 error 'message' is not defined no-undef - 760:13 error Unexpected lexical declaration in case block no-case-declarations - 806:17 error 'marshall' is not defined no-undef - 829:17 error 'req' is already defined no-redeclare - 829:23 error 'marshall' is not defined no-undef - 836:17 error 'fid' is already defined no-redeclare - 837:17 error 'path' is already defined no-redeclare - 838:13 error Unexpected lexical declaration in case block no-case-declarations - 839:13 error 'message' is not defined no-undef - 845:25 error 'message' is not defined no-undef - 862:51 error 'reject' is defined but never used @typescript-eslint/no-unused-vars - 879:17 error 'req' is already defined no-redeclare - 879:23 error 'marshall' is not defined no-undef - 880:17 error 'fid' is already defined no-redeclare - 886:17 error 'req' is already defined no-redeclare - 886:23 error 'marshall' is not defined no-undef - 887:17 error 'fid' is already defined no-redeclare - 890:17 error 'path' is already defined no-redeclare - 916:39 error 'marshall' is not defined no-undef - 933:43 error 'marshall' is not defined no-undef - 945:47 error 'marshall' is not defined no-undef - 971:29 error 'marshall' is not defined no-undef - 992:17 error 'req' is already defined no-redeclare - 992:23 error 'marshall' is not defined no-undef - 993:17 error 'fid' is already defined no-redeclare - 994:17 error 'offset' is already defined no-redeclare - 995:17 error 'count' is already defined no-redeclare - 997:17 error 'path' is already defined no-redeclare - 999:13 error 'message' is not defined no-undef - 1001:13 error Unexpected lexical declaration in case block no-case-declarations - 1011:17 error 'marshall' is not defined no-undef - 1037:17 error 'req' is already defined no-redeclare - 1037:23 error 'marshall' is not defined no-undef - 1038:17 error 'fid' is already defined no-redeclare - 1039:17 error 'offset' is already defined no-redeclare - 1040:17 error 'count' is already defined no-redeclare - 1041:17 error 'path' is already defined no-redeclare - 1042:17 error 'fidata' is already defined no-redeclare - 1044:13 error 'message' is not defined no-undef - 1055:13 error 'marshall' is not defined no-undef - 1061:17 error 'req' is already defined no-redeclare - 1061:23 error 'marshall' is not defined no-undef - 1067:17 error 'newPath' is already defined no-redeclare - 1068:13 error 'message' is not defined no-undef - 1085:17 error 'req' is already defined no-redeclare - 1085:23 error 'marshall' is not defined no-undef - 1087:17 error 'name' is already defined no-redeclare - 1088:17 error 'flags' is already defined no-redeclare - 1089:17 error 'path' is already defined no-redeclare - 1091:13 error 'message' is not defined no-undef - 1108:27 error 'marshall' is not defined no-undef - 1109:13 error 'message' is not defined no-undef - 1115:20 error 'marshall' is not defined no-undef - 1122:17 error 'req' is already defined no-redeclare - 1122:23 error 'marshall' is not defined no-undef - 1123:17 error 'fid' is already defined no-redeclare - 1125:13 error 'message' is not defined no-undef - 1125:63 error 'hex8' is not defined no-undef - 1133:21 error 'marshall' is not defined no-undef - 1145:17 error 'req' is already defined no-redeclare - 1145:23 error 'marshall' is not defined no-undef - 1148:13 error 'message' is not defined no-undef - 1156:17 error 'req' is already defined no-redeclare - 1156:23 error 'marshall' is not defined no-undef - 1157:17 error 'fid' is already defined no-redeclare - 1160:13 error 'message' is not defined no-undef - 1164:17 error 'marshall' is not defined no-undef - 1173:24 error 'marshall' is not defined no-undef - 1174:17 error 'path' is already defined no-redeclare - 1176:17 error 'offset' is already defined no-redeclare - 1179:13 error 'message' is not defined no-undef - 1180:13 error Unexpected lexical declaration in case block no-case-declarations - 1184:21 error 'marshall' is not defined no-undef - 1200:35 error 'marshall' is not defined no-undef - 1216:17 error 'req' is already defined no-redeclare - 1216:23 error 'marshall' is not defined no-undef - 1217:13 error 'message' is not defined no-undef - 1218:17 error 'fid' is already defined no-redeclare - 1219:17 error 'fidata' is already defined no-redeclare - 1270:17 error 'req' is already defined no-redeclare - 1270:23 error 'marshall' is not defined no-undef - 1271:17 error 'fid' is already defined no-redeclare - 1272:17 error 'name' is already defined no-redeclare - 1274:17 error 'flags' is already defined no-redeclare - 1275:13 error 'message' is not defined no-undef - 1285:17 error 'req' is already defined no-redeclare - 1285:23 error 'marshall' is not defined no-undef - 1286:17 error 'fid' is already defined no-redeclare - 1287:17 error 'newfid' is assigned a value but never used @typescript-eslint/no-unused-vars - 1288:17 error 'name' is already defined no-redeclare - 1289:13 error 'message' is not defined no-undef - 1297:13 error 'message' is not defined no-undef - 1298:13 error 'message' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/lib/9p.js - 21:5 error 'EEXIST' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:5 error 'EINVAL' is assigned a value but never used @typescript-eslint/no-unused-vars - 25:5 error 'EPROTO' is assigned a value but never used @typescript-eslint/no-unused-vars - 37:5 error 'P9_STAT_MODE_DIR' is assigned a value but never used @typescript-eslint/no-unused-vars - 38:5 error 'P9_STAT_MODE_APPEND' is assigned a value but never used @typescript-eslint/no-unused-vars - 39:5 error 'P9_STAT_MODE_EXCL' is assigned a value but never used @typescript-eslint/no-unused-vars - 40:5 error 'P9_STAT_MODE_MOUNT' is assigned a value but never used @typescript-eslint/no-unused-vars - 41:5 error 'P9_STAT_MODE_AUTH' is assigned a value but never used @typescript-eslint/no-unused-vars - 42:5 error 'P9_STAT_MODE_TMP' is assigned a value but never used @typescript-eslint/no-unused-vars - 43:5 error 'P9_STAT_MODE_SYMLINK' is assigned a value but never used @typescript-eslint/no-unused-vars - 44:5 error 'P9_STAT_MODE_LINK' is assigned a value but never used @typescript-eslint/no-unused-vars - 45:5 error 'P9_STAT_MODE_DEVICE' is assigned a value but never used @typescript-eslint/no-unused-vars - 46:5 error 'P9_STAT_MODE_NAMED_PIPE' is assigned a value but never used @typescript-eslint/no-unused-vars - 47:5 error 'P9_STAT_MODE_SOCKET' is assigned a value but never used @typescript-eslint/no-unused-vars - 48:5 error 'P9_STAT_MODE_SETUID' is assigned a value but never used @typescript-eslint/no-unused-vars - 49:5 error 'P9_STAT_MODE_SETGID' is assigned a value but never used @typescript-eslint/no-unused-vars - 50:5 error 'P9_STAT_MODE_SETVTX' is assigned a value but never used @typescript-eslint/no-unused-vars - 52:7 error 'P9_LOCK_TYPE_RDLCK' is assigned a value but never used @typescript-eslint/no-unused-vars - 53:7 error 'P9_LOCK_TYPE_WRLCK' is assigned a value but never used @typescript-eslint/no-unused-vars - 57:7 error 'P9_LOCK_FLAGS_BLOCK' is assigned a value but never used @typescript-eslint/no-unused-vars - 58:7 error 'P9_LOCK_FLAGS_RECLAIM' is assigned a value but never used @typescript-eslint/no-unused-vars - 60:7 error 'P9_LOCK_SUCCESS' is assigned a value but never used @typescript-eslint/no-unused-vars - 61:7 error 'P9_LOCK_BLOCKED' is assigned a value but never used @typescript-eslint/no-unused-vars - 62:7 error 'P9_LOCK_ERROR' is assigned a value but never used @typescript-eslint/no-unused-vars - 63:7 error 'P9_LOCK_GRACE' is assigned a value but never used @typescript-eslint/no-unused-vars - 95:23 error 'VirtIO' is not defined no-undef - 114:17 error 'VIRTIO_F_VERSION_1' is not defined no-undef - 115:17 error 'VIRTIO_F_RING_EVENT_IDX' is not defined no-undef - 116:17 error 'VIRTIO_F_RING_INDIRECT_DESC' is not defined no-undef - 130:25 error 'dbg_assert' is not defined no-undef - 157:28 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 159:22 error 'v86util' is not defined no-undef - 165:28 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 232:5 error 'dbg_assert' is not defined no-undef - 233:5 error 'marshall' is not defined no-undef - 235:9 error 'message' is not defined no-undef - 244:16 error 'marshall' is not defined no-undef - 249:5 error 'dbg_assert' is not defined no-undef - 261:18 error 'marshall' is not defined no-undef - 283:20 error 'marshall' is not defined no-undef - 290:17 error 'req' is already defined no-redeclare - 290:23 error 'marshall' is not defined no-undef - 293:13 error 'message' is not defined no-undef - 296:13 error 'message' is not defined no-undef - 302:21 error 'message' is not defined no-undef - 306:21 error 'marshall' is not defined no-undef - 314:17 error 'req' is already defined no-redeclare - 314:23 error 'marshall' is not defined no-undef - 316:17 error 'fid' is already defined no-redeclare - 318:13 error 'message' is not defined no-undef - 320:17 error 'ret' is already defined no-redeclare - 329:21 error 'dbg_assert' is not defined no-undef - 341:17 error 'req' is already defined no-redeclare - 341:23 error 'marshall' is not defined no-undef - 342:17 error 'fid' is already defined no-redeclare - 343:17 error 'name' is already defined no-redeclare - 346:13 error 'message' is not defined no-undef - 347:17 error 'idx' is already defined no-redeclare - 348:17 error 'inode' is already defined no-redeclare - 351:13 error 'marshall' is not defined no-undef - 357:17 error 'req' is already defined no-redeclare - 357:23 error 'marshall' is not defined no-undef - 358:17 error 'fid' is already defined no-redeclare - 359:17 error 'name' is already defined no-redeclare - 360:17 error 'mode' is already defined no-redeclare - 363:17 error 'gid' is already defined no-redeclare - 364:13 error 'message' is not defined no-undef - 365:17 error 'idx' is already defined no-redeclare - 366:17 error 'inode' is already defined no-redeclare - 371:13 error 'marshall' is not defined no-undef - 378:17 error 'req' is already defined no-redeclare - 378:23 error 'marshall' is not defined no-undef - 379:17 error 'fid' is already defined no-redeclare - 380:17 error 'inode' is already defined no-redeclare - 381:13 error 'message' is not defined no-undef - 382:20 error 'marshall' is not defined no-undef - 389:17 error 'req' is already defined no-redeclare - 389:23 error 'marshall' is not defined no-undef - 390:17 error 'fid' is already defined no-redeclare - 391:17 error 'name' is already defined no-redeclare - 392:17 error 'mode' is already defined no-redeclare - 393:17 error 'gid' is already defined no-redeclare - 394:13 error 'message' is not defined no-undef - 395:17 error 'idx' is already defined no-redeclare - 396:17 error 'inode' is already defined no-redeclare - 397:33 error 'S_IFDIR' is not defined no-undef - 400:13 error 'marshall' is not defined no-undef - 406:17 error 'req' is already defined no-redeclare - 406:23 error 'marshall' is not defined no-undef - 407:17 error 'fid' is already defined no-redeclare - 408:17 error 'name' is already defined no-redeclare - 410:17 error 'mode' is already defined no-redeclare - 411:17 error 'gid' is already defined no-redeclare - 413:13 error 'message' is not defined no-undef - 414:17 error 'idx' is already defined no-redeclare - 418:17 error 'inode' is already defined no-redeclare - 421:33 error 'S_IFREG' is not defined no-undef - 422:13 error 'marshall' is not defined no-undef - 428:17 error 'req' is already defined no-redeclare - 428:23 error 'marshall' is not defined no-undef - 429:17 error 'fid' is already defined no-redeclare - 430:17 error 'flags' is already defined no-redeclare - 433:13 error 'message' is not defined no-undef - 437:17 error 'ret' is already defined no-redeclare - 439:13 error 'marshall' is not defined no-undef - 445:17 error 'req' is already defined no-redeclare - 445:23 error 'marshall' is not defined no-undef - 446:17 error 'fid' is already defined no-redeclare - 447:17 error 'lock_length' is already defined no-redeclare - 448:17 error 'lock_request' is already defined no-redeclare - 449:13 error 'message' is not defined no-undef - 453:17 error 'ret' is already defined no-redeclare - 463:20 error 'marshall' is not defined no-undef - 472:17 error 'req' is already defined no-redeclare - 472:23 error 'marshall' is not defined no-undef - 473:17 error 'fid' is already defined no-redeclare - 474:17 error 'inode' is already defined no-redeclare - 475:13 error 'message' is not defined no-undef - 476:43 error 'STATUS_UNLINKED' is not defined no-undef - 478:17 error 'message' is not defined no-undef - 505:13 error 'marshall' is not defined no-undef - 522:17 error 'req' is already defined no-redeclare - 522:23 error 'marshall' is not defined no-undef - 529:17 error 'fid' is already defined no-redeclare - 530:17 error 'inode' is already defined no-redeclare - 531:13 error 'message' is not defined no-undef - 565:17 error 'req' is already defined no-redeclare - 565:23 error 'marshall' is not defined no-undef - 566:17 error 'fid' is already defined no-redeclare - 573:17 error 'req' is already defined no-redeclare - 573:23 error 'marshall' is not defined no-undef - 574:17 error 'fid' is already defined no-redeclare - 577:17 error 'inode' is already defined no-redeclare - 578:27 error 'message' is not defined no-undef - 579:28 error 'message' is not defined no-undef - 580:43 error 'STATUS_UNLINKED' is not defined no-undef - 582:17 error 'message' is not defined no-undef - 591:17 error 'marshall' is not defined no-undef - 622:17 error 'marshall' is not defined no-undef - 629:17 error 'req' is already defined no-redeclare - 629:23 error 'marshall' is not defined no-undef - 630:17 error 'fid' is already defined no-redeclare - 631:17 error 'offset' is already defined no-redeclare - 632:17 error 'count' is already defined no-redeclare - 634:13 error Unexpected lexical declaration in case block no-case-declarations - 636:13 error 'message' is not defined no-undef - 652:13 error 'marshall' is not defined no-undef - 658:17 error 'req' is already defined no-redeclare - 658:23 error 'marshall' is not defined no-undef - 663:13 error 'message' is not defined no-undef - 664:17 error 'ret' is already defined no-redeclare - 673:21 error 'dbg_assert' is not defined no-undef - 679:16 error 'TRACK_FILENAMES' is not defined no-undef - 689:17 error 'req' is already defined no-redeclare - 689:23 error 'marshall' is not defined no-undef - 691:17 error 'name' is already defined no-redeclare - 692:17 error 'flags' is already defined no-redeclare - 693:13 error 'message' is not defined no-undef - 694:17 error 'fid' is already defined no-redeclare - 700:17 error 'ret' is already defined no-redeclare - 708:21 error 'dbg_assert' is not defined no-undef - 719:27 error 'marshall' is not defined no-undef - 720:13 error 'message' is not defined no-undef - 726:20 error 'marshall' is not defined no-undef - 733:17 error 'req' is already defined no-redeclare - 733:23 error 'marshall' is not defined no-undef - 734:17 error 'fid' is already defined no-redeclare - 736:13 error 'message' is not defined no-undef - 736:63 error 'hex8' is not defined no-undef - 738:17 error 'inode' is already defined no-redeclare - 739:13 error 'marshall' is not defined no-undef - 746:17 error 'req' is already defined no-redeclare - 746:23 error 'marshall' is not defined no-undef - 747:17 error 'oldtag' is assigned a value but never used @typescript-eslint/no-unused-vars - 748:13 error 'message' is not defined no-undef - 756:17 error 'req' is already defined no-redeclare - 756:23 error 'marshall' is not defined no-undef - 757:17 error 'fid' is already defined no-redeclare - 760:13 error 'message' is not defined no-undef - 764:17 error 'marshall' is not defined no-undef - 770:21 error 'i' is already defined no-redeclare - 773:24 error 'marshall' is not defined no-undef - 774:17 error 'idx' is already defined no-redeclare - 775:17 error 'offset' is already defined no-redeclare - 778:13 error 'message' is not defined no-undef - 779:21 error 'i' is already defined no-redeclare - 783:20 error 'message' is not defined no-undef - 786:27 error 'marshall' is not defined no-undef - 793:13 error 'marshall' is not defined no-undef - 799:17 error 'req' is already defined no-redeclare - 799:23 error 'marshall' is not defined no-undef - 800:13 error 'message' is not defined no-undef - 811:17 error 'req' is already defined no-redeclare - 811:23 error 'marshall' is not defined no-undef - 812:17 error 'fid' is already defined no-redeclare - 813:17 error 'name' is already defined no-redeclare - 815:17 error 'flags' is already defined no-redeclare - 816:13 error 'message' is not defined no-undef - 828:17 error 'req' is already defined no-redeclare - 828:23 error 'marshall' is not defined no-undef - 829:17 error 'fid' is already defined no-redeclare - 830:17 error 'newfid' is assigned a value but never used @typescript-eslint/no-unused-vars - 831:17 error 'name' is already defined no-redeclare - 832:13 error 'message' is not defined no-undef - 853:13 error 'message' is not defined no-undef - 854:13 error 'message' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/lib/filesystem.js - 8:5 error 'S_IRWXUGO' is assigned a value but never used @typescript-eslint/no-unused-vars - 13:5 error 'S_IFBLK' is assigned a value but never used @typescript-eslint/no-unused-vars - 15:5 error 'S_IFCHR' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:5 error 'O_RDONLY' is assigned a value but never used @typescript-eslint/no-unused-vars - 23:5 error 'O_WRONLY' is assigned a value but never used @typescript-eslint/no-unused-vars - 24:5 error 'O_RDWR' is assigned a value but never used @typescript-eslint/no-unused-vars - 25:5 error 'O_ACCMODE' is assigned a value but never used @typescript-eslint/no-unused-vars - 167:5 error 'dbg_assert' is not defined no-undef - 212:9 error 'dbg_assert' is not defined no-undef - 226:9 error 'dbg_log' is not defined no-undef - 226:39 error 'h' is not defined no-undef - 263:5 error 'dbg_assert' is not defined no-undef - 265:5 error 'dbg_assert' is not defined no-undef - 267:5 error 'dbg_assert' is not defined no-undef - 269:5 error 'dbg_assert' is not defined no-undef - 271:5 error 'dbg_assert' is not defined no-undef - 279:9 error 'dbg_assert' is not defined no-undef - 301:5 error 'dbg_assert' is not defined no-undef - 302:5 error 'dbg_assert' is not defined no-undef - 307:9 error 'dbg_assert' is not defined no-undef - 315:9 error 'dbg_assert' is not defined no-undef - 322:5 error 'dbg_assert' is not defined no-undef - 342:5 error 'message' is not defined no-undef - 343:5 error 'message' is not defined no-undef - 497:5 error 'dbg_assert' is not defined no-undef - 498:5 error 'dbg_assert' is not defined no-undef - 742:17 error 'ENOENT' is not defined no-undef - 781:9 error 'dbg_log' is not defined no-undef - 781:82 error 'LOG_9P' is not defined no-undef - 782:17 error 'EPERM' is not defined no-undef - 787:9 error 'dbg_log' is not defined no-undef - 788:49 error 'LOG_9P' is not defined no-undef - 789:17 error 'EPERM' is not defined no-undef - 951:9 error 'size' is assigned a value but never used @typescript-eslint/no-unused-vars - 978:5 error 'dbg_assert' is not defined no-undef - 983:5 error 'dbg_assert' is not defined no-undef - 1004:17 error 'EPERM' is not defined no-undef - 1014:13 error 'dbg_log' is not defined no-undef - 1014:92 error 'LOG_9P' is not defined no-undef - 1015:21 error 'EPERM' is not defined no-undef - 1022:9 error 'dbg_log' is not defined no-undef - 1022:81 error 'LOG_9P' is not defined no-undef - 1023:17 error 'EPERM' is not defined no-undef - 1034:17 error 'EPERM' is not defined no-undef - 1044:9 error 'dbg_assert' is not defined no-undef - 1054:17 error 'ENOTEMPTY' is not defined no-undef - 1090:5 error 'dbg_assert' is not defined no-undef - 1098:9 error 'dbg_assert' is not defined no-undef - 1117:5 error 'dbg_assert' is not defined no-undef - 1125:9 error 'dbg_assert' is not defined no-undef - 1156:5 error 'dbg_assert' is not defined no-undef - 1157:5 error 'dbg_assert' is not defined no-undef - 1253:9 error 'dbg_assert' is not defined no-undef - 1264:9 error 'dbg_assert' is not defined no-undef - 1269:9 error 'dbg_assert' is not defined no-undef - 1274:41 error 'id' is defined but never used @typescript-eslint/no-unused-vars - 1274:45 error 'action' is defined but never used @typescript-eslint/no-unused-vars - 1274:53 error 'info' is defined but never used @typescript-eslint/no-unused-vars - 1299:13 error 'message' is not defined no-undef - 1306:17 error 'message' is not defined no-undef - 1311:21 error 'message' is not defined no-undef - 1316:25 error 'message' is not defined no-undef - 1339:34 error 'texten' is not defined no-undef - 1348:19 error 'marshall' is not defined no-undef - 1351:29 error 'texten' is not defined no-undef - 1361:5 error 'dbg_assert' is not defined no-undef - 1362:5 error 'dbg_assert' is not defined no-undef - 1372:29 error 'marshall' is not defined no-undef - 1418:5 error 'dbg_assert' is not defined no-undef - 1441:5 error 'dbg_assert' is not defined no-undef - 1452:9 error 'dbg_assert' is not defined no-undef - 1553:5 error 'dbg_assert' is not defined no-undef - 1618:5 error 'dbg_assert' is not defined no-undef - 1619:5 error 'dbg_assert' is not defined no-undef - 1638:5 error 'dbg_assert' is not defined no-undef - 1653:5 error 'dbg_assert' is not defined no-undef - 1655:5 error 'dbg_assert' is not defined no-undef - 1669:5 error 'dbg_assert' is not defined no-undef - 1676:9 error 'dbg_log' is not defined no-undef - 1676:69 error 'LOG_9P' is not defined no-undef - 1677:17 error 'ENOENT' is not defined no-undef - 1681:9 error 'dbg_log' is not defined no-undef - 1681:71 error 'LOG_9P' is not defined no-undef - 1682:17 error 'EEXIST' is not defined no-undef - 1706:17 error 'P9_LOCK_TYPE_UNLCK' is not defined no-undef - 1753:22 error 'P9_LOCK_TYPE_UNLCK' is not defined no-undef - 1753:60 error 'P9_LOCK_TYPE_UNLCK' is not defined no-undef - 1754:22 error 'P9_LOCK_TYPE_WRLCK' is not defined no-undef - 1754:60 error 'P9_LOCK_TYPE_WRLCK' is not defined no-undef - 1790:5 error 'dbg_assert' is not defined no-undef - 1790:25 error 'P9_LOCK_TYPE_RDLCK' is not defined no-undef - 1791:18 error 'P9_LOCK_TYPE_WRLCK' is not defined no-undef - 1792:18 error 'P9_LOCK_TYPE_UNLCK' is not defined no-undef - 1794:5 error 'dbg_assert' is not defined no-undef - 1795:5 error 'dbg_assert' is not defined no-undef - 1851:25 error 'P9_LOCK_TYPE_UNLCK' is not defined no-undef - 1853:16 error 'P9_LOCK_BLOCKED' is not defined no-undef - 1861:9 error 'dbg_assert' is not defined no-undef - 1863:9 error 'dbg_assert' is not defined no-undef - 1863:36 error 'P9_LOCK_TYPE_RDLCK' is not defined no-undef - 1863:74 error 'P9_LOCK_TYPE_WRLCK' is not defined no-undef - 1865:9 error 'dbg_assert' is not defined no-undef - 1877:13 error 'dbg_assert' is not defined no-undef - 1892:20 error 'P9_LOCK_SUCCESS' is not defined no-undef - 1928:25 error 'P9_LOCK_TYPE_UNLCK' is not defined no-undef - 1968:12 error 'P9_LOCK_SUCCESS' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/lib/jor1k.js - 5:5 error 'VIRTIO_MAGIC_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:5 error 'VIRTIO_VERSION_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 7:5 error 'VIRTIO_DEVICE_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 8:5 error 'VIRTIO_VENDOR_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 9:5 error 'VIRTIO_HOSTFEATURES_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 10:5 error 'VIRTIO_HOSTFEATURESSEL_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 11:5 error 'VIRTIO_GUESTFEATURES_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 12:5 error 'VIRTIO_GUESTFEATURESSEL_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 13:5 error 'VIRTIO_GUEST_PAGE_SIZE_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 14:5 error 'VIRTIO_QUEUESEL_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 15:5 error 'VIRTIO_QUEUENUMMAX_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 16:5 error 'VIRTIO_QUEUENUM_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 17:5 error 'VIRTIO_QUEUEALIGN_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 18:5 error 'VIRTIO_QUEUEPFN_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 19:5 error 'VIRTIO_QUEUENOTIFY_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:5 error 'VIRTIO_INTERRUPTSTATUS_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:5 error 'VIRTIO_INTERRUPTACK_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:5 error 'VIRTIO_STATUS_REG' is assigned a value but never used @typescript-eslint/no-unused-vars - 25:5 error 'VRING_DESC_F_NEXT' is assigned a value but never used @typescript-eslint/no-unused-vars - 27:5 error 'VRING_DESC_F_WRITE' is assigned a value but never used @typescript-eslint/no-unused-vars - 29:5 error 'VRING_DESC_F_INDIRECT' is assigned a value but never used @typescript-eslint/no-unused-vars - 32:10 error 'hex8' is defined but never used @typescript-eslint/no-unused-vars - 34:12 error 'h' is not defined no-undef - 40:26 error 'log' is defined but never used @typescript-eslint/no-unused-vars - 42:5 error 'dbg_log' is not defined no-undef - 42:50 error 'LOG_9P' is not defined no-undef - 47:8 error 'DEBUG' is not defined no-undef - 92:5 error 'LoadBinaryResource' is assigned a value but never used @typescript-eslint/no-unused-vars - 95:9 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 95:9 error 'require' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/lib/marshall.js - 69:17 error 'message' is not defined no-undef - 91:21 error 'val' is already defined no-redeclare - 99:21 error 'val' is already defined no-redeclare - 115:17 error Unexpected lexical declaration in case block no-case-declarations - 124:17 error 'message' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/acpi.js - 40:38 error 'v86' is not defined no-undef - 46:9 error 'dbg_log' is not defined no-undef - 46:41 error 'LOG_ACPI' is not defined no-undef - 51:9 error 'dbg_log' is not defined no-undef - 51:45 error 'h' is not defined no-undef - 51:58 error 'LOG_ACPI' is not defined no-undef - 57:9 error 'dbg_log' is not defined no-undef - 57:41 error 'LOG_ACPI' is not defined no-undef - 62:9 error 'dbg_log' is not defined no-undef - 62:45 error 'h' is not defined no-undef - 62:55 error 'LOG_ACPI' is not defined no-undef - 69:9 error 'dbg_log' is not defined no-undef - 69:37 error 'LOG_ACPI' is not defined no-undef - 74:9 error 'dbg_log' is not defined no-undef - 74:41 error 'h' is not defined no-undef - 74:51 error 'LOG_ACPI' is not defined no-undef - 81:36 error 'v86' is not defined no-undef - 89:9 error 'dbg_log' is not defined no-undef - 89:31 error 'LOG_ACPI' is not defined no-undef - 94:9 error 'dbg_log' is not defined no-undef - 94:31 error 'LOG_ACPI' is not defined no-undef - 99:9 error 'dbg_log' is not defined no-undef - 99:31 error 'LOG_ACPI' is not defined no-undef - 104:9 error 'dbg_log' is not defined no-undef - 104:31 error 'LOG_ACPI' is not defined no-undef - 110:9 error 'dbg_log' is not defined no-undef - 110:35 error 'h' is not defined no-undef - 110:45 error 'LOG_ACPI' is not defined no-undef - 115:9 error 'dbg_log' is not defined no-undef - 115:35 error 'h' is not defined no-undef - 115:45 error 'LOG_ACPI' is not defined no-undef - 120:9 error 'dbg_log' is not defined no-undef - 120:35 error 'h' is not defined no-undef - 120:45 error 'LOG_ACPI' is not defined no-undef - 125:9 error 'dbg_log' is not defined no-undef - 125:35 error 'h' is not defined no-undef - 125:45 error 'LOG_ACPI' is not defined no-undef - 137:9 error 'dbg_log' is not defined no-undef - 137:35 error 'LOG_ACPI' is not defined no-undef - 168:9 error 'dbg_assert' is not defined no-undef - 181:13 error 'dbg_log' is not defined no-undef - 184:65 error 'LOG_ACPI' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/apic.js - 22:5 error 'APIC_TIMER_MODE_TSC' is assigned a value but never used @typescript-eslint/no-unused-vars - 57:22 error 'v86' is not defined no-undef - 59:22 error 'IOAPIC_CONFIG_MASKED' is not defined no-undef - 60:29 error 'IOAPIC_CONFIG_MASKED' is not defined no-undef - 61:21 error 'IOAPIC_CONFIG_MASKED' is not defined no-undef - 62:21 error 'IOAPIC_CONFIG_MASKED' is not defined no-undef - 63:22 error 'IOAPIC_CONFIG_MASKED' is not defined no-undef - 83:13 error 'dbg_log' is not defined no-undef - 83:55 error 'h' is not defined no-undef - 83:70 error 'LOG_APIC' is not defined no-undef - 90:13 error 'dbg_log' is not defined no-undef - 90:56 error 'h' is not defined no-undef - 90:75 error 'h' is not defined no-undef - 90:85 error 'LOG_APIC' is not defined no-undef - 91:13 error 'dbg_trace' is not defined no-undef - 92:13 error 'dbg_assert' is not defined no-undef - 106:13 error 'dbg_log' is not defined no-undef - 106:37 error 'LOG_APIC' is not defined no-undef - 111:13 error 'dbg_log' is not defined no-undef - 111:42 error 'LOG_APIC' is not defined no-undef - 115:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 115:33 error 'dbg_log' is not defined no-undef - 115:58 error 'LOG_APIC' is not defined no-undef - 119:13 error 'dbg_log' is not defined no-undef - 119:47 error 'LOG_APIC' is not defined no-undef - 123:13 error 'dbg_log' is not defined no-undef - 123:48 error 'LOG_APIC' is not defined no-undef - 138:13 error 'dbg_log' is not defined no-undef - 138:50 error 'h' is not defined no-undef - 138:79 error 'LOG_APIC' is not defined no-undef - 149:17 error 'index' is already defined no-redeclare - 150:13 error 'dbg_log' is not defined no-undef - 150:50 error 'h' is not defined no-undef - 150:79 error 'LOG_APIC' is not defined no-undef - 161:17 error 'index' is already defined no-redeclare - 162:13 error 'dbg_log' is not defined no-undef - 162:50 error 'h' is not defined no-undef - 162:79 error 'LOG_APIC' is not defined no-undef - 166:13 error 'dbg_log' is not defined no-undef - 166:38 error 'h' is not defined no-undef - 166:67 error 'LOG_APIC' is not defined no-undef - 170:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 170:33 error 'dbg_log' is not defined no-undef - 170:59 error 'LOG_APIC' is not defined no-undef - 174:13 error 'dbg_log' is not defined no-undef - 174:39 error 'LOG_APIC' is not defined no-undef - 178:13 error 'dbg_log' is not defined no-undef - 178:39 error 'LOG_APIC' is not defined no-undef - 182:13 error 'dbg_log' is not defined no-undef - 182:46 error 'LOG_APIC' is not defined no-undef - 186:13 error 'dbg_log' is not defined no-undef - 186:38 error 'LOG_APIC' is not defined no-undef - 190:13 error 'dbg_log' is not defined no-undef - 190:38 error 'LOG_APIC' is not defined no-undef - 194:13 error 'dbg_log' is not defined no-undef - 194:39 error 'LOG_APIC' is not defined no-undef - 199:13 error 'dbg_log' is not defined no-undef - 199:43 error 'LOG_APIC' is not defined no-undef - 203:13 error 'dbg_log' is not defined no-undef - 203:49 error 'LOG_APIC' is not defined no-undef - 207:13 error 'dbg_log' is not defined no-undef - 207:52 error 'h' is not defined no-undef - 207:90 error 'LOG_APIC' is not defined no-undef - 211:13 error 'dbg_log' is not defined no-undef - 211:36 error 'h' is not defined no-undef - 211:45 error 'LOG_APIC' is not defined no-undef - 212:13 error 'dbg_assert' is not defined no-undef - 224:13 error 'dbg_log' is not defined no-undef - 224:41 error 'h' is not defined no-undef - 224:60 error 'LOG_APIC' is not defined no-undef - 230:13 error 'dbg_log' is not defined no-undef - 230:46 error 'h' is not defined no-undef - 230:79 error 'LOG_APIC' is not defined no-undef - 234:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 234:33 error 'dbg_log' is not defined no-undef - 234:55 error 'h' is not defined no-undef - 234:75 error 'LOG_APIC' is not defined no-undef - 243:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 243:37 error 'dbg_log' is not defined no-undef - 243:55 error 'h' is not defined no-undef - 243:92 error 'h' is not defined no-undef - 243:108 error 'LOG_APIC' is not defined no-undef - 254:17 error 'dbg_log' is not defined no-undef - 254:48 error 'LOG_APIC' is not defined no-undef - 259:13 error 'dbg_log' is not defined no-undef - 259:49 error 'h' is not defined no-undef - 259:68 error 'LOG_APIC' is not defined no-undef - 264:13 error 'dbg_log' is not defined no-undef - 264:50 error 'h' is not defined no-undef - 264:69 error 'LOG_APIC' is not defined no-undef - 269:13 error 'dbg_log' is not defined no-undef - 269:47 error 'h' is not defined no-undef - 269:66 error 'LOG_APIC' is not defined no-undef - 275:13 error 'dbg_log' is not defined no-undef - 275:39 error 'h' is not defined no-undef - 275:58 error 'LOG_APIC' is not defined no-undef - 287:13 error 'dbg_log' is not defined no-undef - 287:43 error 'h' is not defined no-undef - 287:70 error 'h' is not defined no-undef - 289:124 error 'LOG_APIC' is not defined no-undef - 302:38 error 'IOAPIC_DELIVERY_FIXED' is not defined no-undef - 315:17 error 'dbg_assert' is not defined no-undef - 320:13 error 'dbg_log' is not defined no-undef - 320:43 error 'h' is not defined no-undef - 320:62 error 'LOG_APIC' is not defined no-undef - 325:13 error 'dbg_log' is not defined no-undef - 325:37 error 'h' is not defined no-undef - 325:56 error 'LOG_APIC' is not defined no-undef - 330:13 error 'dbg_log' is not defined no-undef - 330:44 error 'h' is not defined no-undef - 330:63 error 'LOG_APIC' is not defined no-undef - 335:13 error 'dbg_log' is not defined no-undef - 335:36 error 'h' is not defined no-undef - 335:55 error 'LOG_APIC' is not defined no-undef - 340:13 error 'dbg_log' is not defined no-undef - 340:36 error 'h' is not defined no-undef - 340:55 error 'LOG_APIC' is not defined no-undef - 345:13 error 'dbg_log' is not defined no-undef - 345:37 error 'h' is not defined no-undef - 345:56 error 'LOG_APIC' is not defined no-undef - 350:13 error 'dbg_log' is not defined no-undef - 350:41 error 'h' is not defined no-undef - 350:60 error 'LOG_APIC' is not defined no-undef - 358:13 error 'dbg_log' is not defined no-undef - 358:41 error 'h' is not defined no-undef - 358:60 error 'LOG_APIC' is not defined no-undef - 362:30 error 'v86' is not defined no-undef - 367:13 error 'dbg_log' is not defined no-undef - 367:41 error 'h' is not defined no-undef - 367:60 error 'LOG_APIC' is not defined no-undef - 368:13 error 'dbg_assert' is not defined no-undef - 372:13 error 'dbg_log' is not defined no-undef - 372:39 error 'h' is not defined no-undef - 372:58 error 'h' is not defined no-undef - 372:77 error 'LOG_APIC' is not defined no-undef - 373:13 error 'dbg_assert' is not defined no-undef - 384:18 error 'APIC_TIMER_FREQ' is not defined no-undef - 403:13 error 'dbg_assert' is not defined no-undef - 405:34 error 'IOAPIC_CONFIG_MASKED' is not defined no-undef - 407:53 error 'IOAPIC_DELIVERY_FIXED' is not defined no-undef - 413:13 error 'dbg_log' is not defined no-undef - 413:48 error 'LOG_APIC' is not defined no-undef - 415:34 error 'IOAPIC_CONFIG_MASKED' is not defined no-undef - 417:53 error 'IOAPIC_DELIVERY_FIXED' is not defined no-undef - 425:57 error 'destination' is defined but never used @typescript-eslint/no-unused-vars - 425:70 error 'destination_mode' is defined but never used @typescript-eslint/no-unused-vars - 433:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 433:25 error 'dbg_log' is not defined no-undef - 433:46 error 'h' is not defined no-undef - 433:101 error 'LOG_APIC' is not defined no-undef - 435:17 error 'IOAPIC_DELIVERY_INIT' is not defined no-undef - 441:17 error 'IOAPIC_DELIVERY_NMI' is not defined no-undef - 449:9 error 'dbg_assert' is not defined no-undef - 454:9 error 'dbg_log' is not defined no-undef - 454:61 error 'h' is not defined no-undef - 454:75 error 'LOG_APIC' is not defined no-undef - 475:5 error 'dbg_assert' is not defined no-undef - 476:5 error 'dbg_assert' is not defined no-undef - 483:5 error 'dbg_assert' is not defined no-undef - 484:5 error 'dbg_assert' is not defined no-undef - 501:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 501:29 error 'dbg_log' is not defined no-undef - 501:58 error 'h' is not defined no-undef - 501:85 error 'h' is not defined no-undef - 501:101 error 'LOG_APIC' is not defined no-undef - 507:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 507:29 error 'dbg_log' is not defined no-undef - 507:58 error 'h' is not defined no-undef - 507:89 error 'h' is not defined no-undef - 507:105 error 'LOG_APIC' is not defined no-undef - 528:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 528:29 error 'dbg_log' is not defined no-undef - 528:58 error 'h' is not defined no-undef - 528:85 error 'h' is not defined no-undef - 528:101 error 'LOG_APIC' is not defined no-undef - 534:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 534:29 error 'dbg_log' is not defined no-undef - 534:58 error 'h' is not defined no-undef - 534:89 error 'h' is not defined no-undef - 534:105 error 'LOG_APIC' is not defined no-undef - 541:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 541:25 error 'dbg_log' is not defined no-undef - 541:53 error 'h' is not defined no-undef - 541:69 error 'LOG_APIC' is not defined no-undef - 607:5 error 'dbg_assert' is not defined no-undef - 613:5 error 'dbg_assert' is not defined no-undef - 619:5 error 'dbg_assert' is not defined no-undef - 631:20 error 'v86util' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/dummy_screen.js - 6:10 error 'DummyScreenAdapter' is defined but never used @typescript-eslint/no-unused-vars - 9:9 error 'graphic_image_data' is defined but never used @typescript-eslint/no-unused-vars - 12:9 error 'cursor_row' is assigned a value but never used @typescript-eslint/no-unused-vars - 15:9 error 'cursor_col' is assigned a value but never used @typescript-eslint/no-unused-vars - 17:9 error 'graphical_mode_width' is assigned a value but never used @typescript-eslint/no-unused-vars - 18:9 error 'graphical_mode_height' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:9 error 'is_graphical' is assigned a value but never used @typescript-eslint/no-unused-vars - 35:45 error 'blinking' is defined but never used @typescript-eslint/no-unused-vars - 35:55 error 'bg_color' is defined but never used @typescript-eslint/no-unused-vars - 35:65 error 'fg_color' is defined but never used @typescript-eslint/no-unused-vars - 37:9 error 'dbg_assert' is not defined no-undef - 38:9 error 'dbg_assert' is not defined no-undef - 51:37 error 'height' is defined but never used @typescript-eslint/no-unused-vars - 51:45 error 'width_9px' is defined but never used @typescript-eslint/no-unused-vars - 51:56 error 'width_dbl' is defined but never used @typescript-eslint/no-unused-vars - 51:67 error 'copy_8th_col' is defined but never used @typescript-eslint/no-unused-vars - 51:81 error 'bitmap' is defined but never used @typescript-eslint/no-unused-vars - 51:89 error 'bitmap_changed' is defined but never used @typescript-eslint/no-unused-vars - 55:35 error 'page_a' is defined but never used @typescript-eslint/no-unused-vars - 55:43 error 'page_b' is defined but never used @typescript-eslint/no-unused-vars - 85:31 error 's_x' is defined but never used @typescript-eslint/no-unused-vars - 85:36 error 's_y' is defined but never used @typescript-eslint/no-unused-vars - 89:44 error 'start' is defined but never used @typescript-eslint/no-unused-vars - 89:51 error 'end' is defined but never used @typescript-eslint/no-unused-vars - 89:56 error 'max' is defined but never used @typescript-eslint/no-unused-vars - 99:35 error 'layers' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/fake_network.js - 21:7 error 'TCP_STATE_CLOSED' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:7 error 'TCP_STATE_LISTEN' is assigned a value but never used @typescript-eslint/no-unused-vars - 25:7 error 'TCP_STATE_CLOSE_WAIT' is assigned a value but never used @typescript-eslint/no-unused-vars - 26:7 error 'TCP_STATE_FIN_WAIT_2' is assigned a value but never used @typescript-eslint/no-unused-vars - 27:7 error 'TCP_STATE_LAST_ACK' is assigned a value but never used @typescript-eslint/no-unused-vars - 28:7 error 'TCP_STATE_CLOSING' is assigned a value but never used @typescript-eslint/no-unused-vars - 29:7 error 'TCP_STATE_TIME_WAIT' is assigned a value but never used @typescript-eslint/no-unused-vars - 30:7 error 'TCP_STATE_SYN_RECEIVED' is assigned a value but never used @typescript-eslint/no-unused-vars - 37:10 error 'siptolong' is defined but never used @typescript-eslint/no-unused-vars - 66:13 error 'dbg_log' is not defined no-undef - 66:51 error 'LOG_FETCH' is not defined no-undef - 72:9 error 'dbg_log' is not defined no-undef - 72:60 error 'LOG_FETCH' is not defined no-undef - 220:10 error 'handle_fake_networking' is defined but never used @typescript-eslint/no-unused-vars - 277:9 error 'dbg_log' is not defined no-undef - 280:9 error 'dbg_log' is not defined no-undef - 280:41 error 'h' is not defined no-undef - 280:55 error 'LOG_FETCH' is not defined no-undef - 302:9 error 'hlen' is assigned a value but never used @typescript-eslint/no-unused-vars - 303:9 error 'plen' is assigned a value but never used @typescript-eslint/no-unused-vars - 365:43 error 'dbg_log' is not defined no-undef - 365:101 error 'LOG_FETCH' is not defined no-undef - 535:9 error 'nscount' is assigned a value but never used @typescript-eslint/no-unused-vars - 536:9 error 'arcount' is assigned a value but never used @typescript-eslint/no-unused-vars - 634:9 error 'bootpo' is assigned a value but never used @typescript-eslint/no-unused-vars - 844:5 error 'dbg_assert' is not defined no-undef - 850:10 error 'fake_tcp_connect' is defined but never used @typescript-eslint/no-unused-vars - 971:9 error 'dbg_assert' is not defined no-undef - 972:9 error 'dbg_assert' is not defined no-undef - 987:9 error 'dbg_log' is not defined no-undef - 987:58 error 'LOG_FETCH' is not defined no-undef - 989:13 error 'dbg_log' is not defined no-undef - 989:65 error 'LOG_FETCH' is not defined no-undef - 1007:9 error 'dbg_log' is not defined no-undef - 1007:191 error 'LOG_FETCH' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/fetch_network.js - 43:24 error 'TCPConnection' is not defined no-undef - 44:22 error 'TCP_STATE_SYN_RECEIVED' is not defined no-undef - 93:9 error 'dbg_log' is not defined no-undef - 93:50 error 'LOG_FETCH' is not defined no-undef - 159:5 error 'handle_fake_networking' is not defined no-undef - 165:12 error 'fake_tcp_connect' is not defined no-undef - 176:44 error 'module' is not defined no-undef - 179:5 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/filestorage.js - 13:48 error 'sha256sum' is defined but never used @typescript-eslint/no-unused-vars - 13:59 error 'offset' is defined but never used @typescript-eslint/no-unused-vars - 13:67 error 'count' is defined but never used @typescript-eslint/no-unused-vars - 21:49 error 'sha256sum' is defined but never used @typescript-eslint/no-unused-vars - 21:60 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 28:51 error 'sha256sum' is defined but never used @typescript-eslint/no-unused-vars - 51:5 error 'dbg_assert' is not defined no-undef - 68:5 error 'dbg_assert' is not defined no-undef - 88:5 error 'dbg_assert' is not defined no-undef - 105:34 error 'reject' is defined but never used @typescript-eslint/no-unused-vars - 107:9 error 'v86util' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/keyboard.js - 17:10 error 'KeyboardAdapter' is defined but never used @typescript-eslint/no-unused-vars - 43:9 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 370:27 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 405:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/main.js - 14:46 error 'DEBUG' is not defined no-undef - 16:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 32:45 error 'v86util' is not defined no-undef - 37:17 error 'v86util' is not defined no-undef - 38:17 error 'v86util' is not defined no-undef - 109:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 109:18 error Empty block statement no-empty - 127:12 error 'DEBUG' is not defined no-undef - 132:12 error 'DEBUG' is not defined no-undef - 1331:12 error 'DEBUG' is not defined no-undef - 1369:25 error 'DEBUG' is not defined no-undef - 1431:24 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1460:20 error '_' is assigned a value but never used @typescript-eslint/no-unused-vars - 1460:84 error Unnecessary escape character: \. no-useless-escape - 1549:28 error 'LOG_NAMES' is not defined no-undef - 1551:26 error 'LOG_NAMES' is not defined no-undef - 1556:26 error 'LOG_NAMES' is not defined no-undef - 1564:16 error 'LOG_LEVEL' is not defined no-undef - 1570:33 error 'v86util' is not defined no-undef - 1573:33 error 'LOG_NAMES' is not defined no-undef - 1586:17 error 'LOG_LEVEL' is not defined no-undef - 1590:17 error 'LOG_LEVEL' is not defined no-undef - 1656:17 error 'DEBUG' is not defined no-undef - 1676:34 error 'v86util' is not defined no-undef - 1833:25 error 'biosfile' is already defined no-redeclare - 1833:36 error 'DEBUG' is not defined no-undef - 1834:25 error 'vgabiosfile' is already defined no-redeclare - 1834:39 error 'DEBUG' is not defined no-undef - 1847:30 error 'V86' is not defined no-undef - 1883:12 error 'DEBUG' is not defined no-undef - 1887:16 error 'DEBUG' is not defined no-undef - 1906:38 error 'print_stats' is not defined no-undef - 1909:25 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 2202:37 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2209:21 error 'download' is not defined no-undef - 2217:29 error 'dump_file' is not defined no-undef - 2242:54 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2259:13 error 'dump_file' is not defined no-undef - 2297:85 error 'hex_dump' is not defined no-undef - 2311:17 error 'dump_file' is not defined no-undef - 2321:13 error 'dump_file' is not defined no-undef - 2455:61 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2467:19 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 2467:22 error Empty block statement no-empty - 2536:34 error 'v86util' is not defined no-undef - 2577:17 error 'dump_file' is not defined no-undef - 2604:13 error 'dump_file' is not defined no-undef - 2604:23 error 'log_data' is not defined no-undef - 2615:49 error 'log_data' is not defined no-undef - 2615:74 error 'log_data' is not defined no-undef - 2620:28 error 'dump_file' is not defined no-undef - 2623:25 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/mouse.js - 8:10 error 'MouseAdapter' is defined but never used @typescript-eslint/no-unused-vars - 20:9 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 138:32 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 269:13 error 'dbg_log' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/network.js - 43:50 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 51:49 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 63:50 error 'e' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/print_stats.js - 251:61 error 'v86util' is not defined no-undef - 264:70 error 'v86util' is not defined no-undef - 286:44 error 'module' is not defined no-undef - 288:5 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/screen.js - 8:10 error 'ScreenAdapter' is defined but never used @typescript-eslint/no-unused-vars - 439:9 error 'dbg_assert' is not defined no-undef - 440:9 error 'dbg_assert' is not defined no-undef - 441:9 error 'dbg_assert' is not defined no-undef - 684:12 error 'DEBUG_SCREEN_LAYERS' is not defined no-undef - 891:17 error 'dbg_assert' is not defined no-undef - 923:12 error 'DEBUG_SCREEN_LAYERS' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/serial.js - 8:10 error 'SerialAdapter' is defined but never used @typescript-eslint/no-unused-vars - 10:9 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 84:21 error 'dbg_assert' is not defined no-undef - 125:25 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 203:10 error 'SerialRecordingAdapter' is defined but never used @typescript-eslint/no-unused-vars - 205:9 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 205:9 error 'serial' is assigned a value but never used @typescript-eslint/no-unused-vars - 253:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/speaker.js - 30:73 error 'webkitAudioContext' is not defined no-undef - 61:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 63:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 148:36 error 'MIXER_SRC_MASTER' is not defined no-undef - 152:13 error 'dbg_assert' is not defined no-undef - 198:5 error 'dbg_assert' is not defined no-undef - 214:9 error 'dbg_assert' is not defined no-undef - 231:9 error 'dbg_assert' is not defined no-undef - 246:19 error 'MIXER_CHANNEL_BOTH' is not defined no-undef - 251:14 error 'MIXER_CHANNEL_LEFT' is not defined no-undef - 254:14 error 'MIXER_CHANNEL_RIGHT' is not defined no-undef - 257:14 error 'MIXER_CHANNEL_BOTH' is not defined no-undef - 261:13 error 'dbg_assert' is not defined no-undef - 327:40 error 'MIXER_CHANNEL_BOTH' is not defined no-undef - 328:28 error 'MIXER_CHANNEL_LEFT' is not defined no-undef - 332:28 error 'MIXER_CHANNEL_RIGHT' is not defined no-undef - 342:40 error 'MIXER_CHANNEL_BOTH' is not defined no-undef - 343:28 error 'MIXER_CHANNEL_LEFT' is not defined no-undef - 347:28 error 'MIXER_CHANNEL_RIGHT' is not defined no-undef - 362:19 error 'MIXER_CHANNEL_BOTH' is not defined no-undef - 367:14 error 'MIXER_CHANNEL_LEFT' is not defined no-undef - 370:14 error 'MIXER_CHANNEL_RIGHT' is not defined no-undef - 373:14 error 'MIXER_CHANNEL_BOTH' is not defined no-undef - 377:13 error 'dbg_assert' is not defined no-undef - 405:68 error 'MIXER_SRC_PCSPEAKER' is not defined no-undef - 410:30 error 'MIXER_SRC_PCSPEAKER' is not defined no-undef - 415:33 error 'MIXER_SRC_PCSPEAKER' is not defined no-undef - 428:25 error 'OSCILLATOR_FREQ' is not defined no-undef - 551:68 error 'parameters' is defined but never used @typescript-eslint/no-unused-vars - 732:16 error 'DEBUG' is not defined no-undef - 751:8 error 'DEBUG' is not defined no-undef - 795:21 error 'dbg_log' is not defined no-undef - 807:64 error 'MIXER_SRC_DAC' is not defined no-undef - 815:41 error 'enabled' is defined but never used @typescript-eslint/no-unused-vars - 827:9 error 'dbg_assert' is not defined no-undef - 842:8 error 'DEBUG' is not defined no-undef - 855:8 error 'DEBUG' is not defined no-undef - 906:64 error 'MIXER_SRC_DAC' is not defined no-undef - 914:41 error 'enabled' is defined but never used @typescript-eslint/no-unused-vars - 927:9 error 'dbg_assert' is not defined no-undef - 933:8 error 'DEBUG' is not defined no-undef - 941:8 error 'DEBUG' is not defined no-undef - 995:9 error 'dbg_log' is not defined no-undef - 1103:5 error 'dump_file' is not defined no-undef - 1118:5 error 'dump_file' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/starter.js - 114:9 error 'LOG_LEVEL' is not defined no-undef - 121:40 error 'n' is defined but never used @typescript-eslint/no-unused-vars - 123:17 error 'Bus' is not defined no-undef - 124:11 error 'adapter_bus' is assigned a value but never used @typescript-eslint/no-unused-vars - 130:77 error 'WASM_TABLE_SIZE' is not defined no-undef - 130:95 error 'WASM_TABLE_OFFSET' is not defined no-undef - 136:31 error 'dbg_assert' is not defined no-undef - 137:22 error 'v86' is not defined no-undef - 138:45 error 'v86util' is not defined no-undef - 161:25 error 'v86util' is not defined no-undef - 162:13 error 'dbg_log' is not defined no-undef - 162:26 error 'LOG_CPU' is not defined no-undef - 165:25 error 'v86util' is not defined no-undef - 169:13 error 'dbg_trace' is not defined no-undef - 169:23 error 'LOG_CPU' is not defined no-undef - 188:31 error 'DEBUG' is not defined no-undef - 200:31 error '__dirname' is not defined no-undef - 201:40 error '__dirname' is not defined no-undef - 209:17 error 'v86util' is not defined no-undef - 218:31 error 'err' is defined but never used @typescript-eslint/no-unused-vars - 220:29 error 'v86util' is not defined no-undef - 251:45 error 'v86' is not defined no-undef - 287:23 error 'BOOT_ORDER_FD_FIRST' is not defined no-undef - 288:23 error 'BOOT_ORDER_HD_FIRST' is not defined no-undef - 288:45 error 'BOOT_ORDER_CD_FIRST' is not defined no-undef - 316:40 error 'FetchNetworkAdapter' is not defined no-undef - 320:40 error 'WispNetworkAdapter' is not defined no-undef - 324:40 error 'NetworkAdapter' is not defined no-undef - 340:37 error 'KeyboardAdapter' is not defined no-undef - 344:34 error 'MouseAdapter' is not defined no-undef - 349:35 error 'ScreenAdapter' is not defined no-undef - 353:35 error 'DummyScreenAdapter' is not defined no-undef - 360:35 error 'SerialAdapter' is not defined no-undef - 366:35 error 'SerialAdapterXtermJS' is not defined no-undef - 371:36 error 'SpeakerAdapter' is not defined no-undef - 418:17 error 'dbg_assert' is not defined no-undef - 467:27 error 'v86util' is not defined no-undef - 494:32 error 'MemoryFileStorage' is not defined no-undef - 498:32 error 'ServerFileStorageWrapper' is not defined no-undef - 500:41 error 'FS' is not defined no-undef - 504:13 error 'dbg_assert' is not defined no-undef - 513:13 error 'dbg_assert' is not defined no-undef - 524:9 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 539:42 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 548:13 error 'v86util' is not defined no-undef - 553:25 error 'dbg_assert' is not defined no-undef - 557:81 error 'v86util' is not defined no-undef - 608:21 error 'dbg_log' is not defined no-undef - 614:62 error 'v86util' is not defined no-undef - 615:63 error 'v86util' is not defined no-undef - 620:17 error 'dbg_log' is not defined no-undef - 625:13 error 'dbg_assert' is not defined no-undef - 630:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 662:5 error 'dbg_assert' is not defined no-undef - 746:17 error 'dbg_assert' is not defined no-undef - 830:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 831:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 832:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 833:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 834:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 835:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 891:5 error 'dbg_assert' is not defined no-undef - 903:5 error 'dbg_assert' is not defined no-undef - 943:9 error 'v86util' is not defined no-undef - 946:54 error 'v86util' is not defined no-undef - 952:23 error 'v86util' is not defined no-undef - 1077:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1082:13 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 1082:16 error Empty block statement no-empty - 1213:28 error 'MemoryFileStorage' is not defined no-undef - 1217:28 error 'ServerFileStorageWrapper' is not defined no-undef - 1219:23 error 'FS' is not defined no-undef - 1222:9 error 'dbg_assert' is not defined no-undef - 1228:17 error 'ENOENT' is not defined no-undef - 1232:22 error 'EEXIST' is not defined no-undef - 1238:9 error 'dbg_assert' is not defined no-undef - 1253:5 error 'dbg_assert' is not defined no-undef - 1287:5 error 'dbg_assert' is not defined no-undef - 1344:17 error 'dbg_assert' is not defined no-undef - 1359:9 error 'dbg_assert' is not defined no-undef - 1387:25 error 'col' is assigned a value but never used @typescript-eslint/no-unused-vars - 1387:30 error 'char' is assigned a value but never used @typescript-eslint/no-unused-vars - 1438:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 1439:31 error 'SerialAdapterXtermJS' is not defined no-undef - 1468:44 error 'module' is not defined no-undef - 1470:5 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/wisp_network.js - 70:13 error 'dbg_log' is not defined no-undef - 70:63 error 'LOG_NET' is not defined no-undef - 96:13 error 'dbg_log' is not defined no-undef - 96:64 error 'LOG_NET' is not defined no-undef - 100:13 error 'dbg_log' is not defined no-undef - 100:73 error 'LOG_NET' is not defined no-undef - 128:13 error Unexpected lexical declaration in case block no-case-declarations - 159:13 error 'dbg_log' is not defined no-undef - 159:79 error 'LOG_NET' is not defined no-undef - 181:5 error 'parse_eth' is not defined no-undef - 185:34 error 'ETHERTYPE_IPV4' is not defined no-undef - 187:20 error 'IPV4_PROTO_TCP' is not defined no-undef - 201:17 error 'dbg_log' is not defined no-undef - 201:55 error 'LOG_FETCH' is not defined no-undef - 203:34 error 'TCPConnection' is not defined no-undef - 205:30 error 'TCP_STATE_SYN_RECEIVED' is not defined no-undef - 229:34 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 239:13 error 'dbg_log' is not defined no-undef - 239:64 error 'LOG_FETCH' is not defined no-undef - 251:26 error 'make_packet' is not defined no-undef - 258:68 error 'ETHERTYPE_IPV4' is not defined no-undef - 259:9 error 'arp_whohas' is not defined no-undef - 266:38 error 'ETHERTYPE_IPV4' is not defined no-undef - 268:24 error 'IPV4_PROTO_UDP' is not defined no-undef - 275:26 error 'make_packet' is not defined no-undef - 281:9 error 'handle_fake_ntp' is not defined no-undef - 286:9 error 'handle_fake_dhcp' is not defined no-undef - 292:9 error 'handle_udp_echo' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/browser/worker_bus.js - 49:5 error 'dbg_assert' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/buffer.js - 5:5 error 'v86util' is not defined no-undef - 6:5 error 'v86util' is not defined no-undef - 7:5 error 'v86util' is not defined no-undef - 8:5 error 'v86util' is not defined no-undef - 9:5 error 'v86util' is not defined no-undef - 11:5 error 'v86util' is not defined no-undef - 24:9 error 'dbg_assert' is not defined no-undef - 34:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 45:9 error 'dbg_assert' is not defined no-undef - 57:9 error 'dbg_assert' is not defined no-undef - 121:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 135:17 error 'dbg_assert' is not defined no-undef - 137:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 169:21 error 'i' is already defined no-redeclare - 184:9 error 'dbg_assert' is not defined no-undef - 185:9 error 'dbg_assert' is not defined no-undef - 186:9 error 'dbg_assert' is not defined no-undef - 187:9 error 'dbg_assert' is not defined no-undef - 211:9 error 'v86util' is not defined no-undef - 241:9 error 'dbg_assert' is not defined no-undef - 242:9 error 'dbg_assert' is not defined no-undef - 243:9 error 'dbg_assert' is not defined no-undef - 244:9 error 'dbg_assert' is not defined no-undef - 261:17 error 'dbg_assert' is not defined no-undef - 347:13 error 'dbg_assert' is not defined no-undef - 369:13 error 'dbg_assert' is not defined no-undef - 388:43 error Unnecessary escape character: \. no-useless-escape - 418:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 421:9 error 'dbg_assert' is not defined no-undef - 422:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 432:9 error 'dbg_assert' is not defined no-undef - 433:9 error 'dbg_assert' is not defined no-undef - 434:9 error 'dbg_assert' is not defined no-undef - 435:9 error 'dbg_assert' is not defined no-undef - 456:13 error 'dbg_assert' is not defined no-undef - 487:21 error 'v86util' is not defined no-undef - 515:13 error 'v86util' is not defined no-undef - 518:21 error 'dbg_assert' is not defined no-undef - 596:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 625:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 635:9 error 'dbg_assert' is not defined no-undef - 636:9 error 'dbg_assert' is not defined no-undef - 637:9 error 'dbg_assert' is not defined no-undef - 683:13 error 'dbg_assert' is not defined no-undef - 701:9 error 'dbg_assert' is not defined no-undef - 710:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 710:13 error 'require' is not defined no-undef - 725:13 error 'determine_size' is already defined no-redeclare - 727:13 error 'v86util' is not defined no-undef - 757:24 error 'v86util' is not defined no-undef - 779:28 error 'v86util' is not defined no-undef - 783:28 error 'v86util' is not defined no-undef - 792:28 error 'v86util' is not defined no-undef - 796:28 error 'v86util' is not defined no-undef - 801:13 error 'dbg_log' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/bus.js - 60:53 error 'unused_transfer' is defined but never used @typescript-eslint/no-unused-vars - 89:5 error 'dbg_assert' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/config.js - 13:5 error 'LOG_TO_FILE' is assigned a value but never used @typescript-eslint/no-unused-vars - 19:5 error 'LOG_ALL_IO' is assigned a value but never used @typescript-eslint/no-unused-vars - 24:5 error 'DUMP_GENERATED_WASM' is assigned a value but never used @typescript-eslint/no-unused-vars - 29:5 error 'DUMP_UNCOMPILED_ASSEMBLY' is assigned a value but never used @typescript-eslint/no-unused-vars - 35:5 error 'TRACK_FILENAMES' is assigned a value but never used @typescript-eslint/no-unused-vars - 37:5 error 'LOG_LEVEL' is assigned a value but never used @typescript-eslint/no-unused-vars - 37:17 error 'LOG_ALL' is not defined no-undef - 37:28 error 'LOG_PS2' is not defined no-undef - 37:39 error 'LOG_PIT' is not defined no-undef - 37:50 error 'LOG_VIRTIO' is not defined no-undef - 37:64 error 'LOG_9P' is not defined no-undef - 37:74 error 'LOG_PIC' is not defined no-undef - 38:28 error 'LOG_DMA' is not defined no-undef - 38:39 error 'LOG_SERIAL' is not defined no-undef - 38:53 error 'LOG_NET' is not defined no-undef - 38:64 error 'LOG_FLOPPY' is not defined no-undef - 38:78 error 'LOG_DISK' is not defined no-undef - 38:90 error 'LOG_VGA' is not defined no-undef - 38:101 error 'LOG_SB16' is not defined no-undef - 44:5 error 'DEBUG_SCREEN_LAYERS' is assigned a value but never used @typescript-eslint/no-unused-vars - 53:5 error 'APIC_TIMER_FREQ' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/const.js - 4:15 error 'LOG_ALL' is assigned a value but never used @typescript-eslint/no-unused-vars - 5:15 error 'LOG_NONE' is assigned a value but never used @typescript-eslint/no-unused-vars - 7:15 error 'LOG_OTHER' is assigned a value but never used @typescript-eslint/no-unused-vars - 38:5 error 'LOG_NAMES' is assigned a value but never used @typescript-eslint/no-unused-vars - 68:15 error 'FLAG_CARRY' is assigned a value but never used @typescript-eslint/no-unused-vars - 69:15 error 'FLAG_PARITY' is assigned a value but never used @typescript-eslint/no-unused-vars - 70:15 error 'FLAG_ADJUST' is assigned a value but never used @typescript-eslint/no-unused-vars - 71:15 error 'FLAG_ZERO' is assigned a value but never used @typescript-eslint/no-unused-vars - 72:15 error 'FLAG_SIGN' is assigned a value but never used @typescript-eslint/no-unused-vars - 73:15 error 'FLAG_TRAP' is assigned a value but never used @typescript-eslint/no-unused-vars - 74:15 error 'FLAG_INTERRUPT' is assigned a value but never used @typescript-eslint/no-unused-vars - 75:15 error 'FLAG_DIRECTION' is assigned a value but never used @typescript-eslint/no-unused-vars - 76:15 error 'FLAG_OVERFLOW' is assigned a value but never used @typescript-eslint/no-unused-vars - 77:15 error 'FLAG_IOPL' is assigned a value but never used @typescript-eslint/no-unused-vars - 78:15 error 'FLAG_NT' is assigned a value but never used @typescript-eslint/no-unused-vars - 79:15 error 'FLAG_RF' is assigned a value but never used @typescript-eslint/no-unused-vars - 80:15 error 'FLAG_VM' is assigned a value but never used @typescript-eslint/no-unused-vars - 81:15 error 'FLAG_AC' is assigned a value but never used @typescript-eslint/no-unused-vars - 82:15 error 'FLAG_VIF' is assigned a value but never used @typescript-eslint/no-unused-vars - 83:15 error 'FLAG_VIP' is assigned a value but never used @typescript-eslint/no-unused-vars - 84:15 error 'FLAG_ID' is assigned a value but never used @typescript-eslint/no-unused-vars - 90:1 error 'FLAGS_DEFAULT' is assigned a value but never used @typescript-eslint/no-unused-vars - 93:15 error 'REG_EAX' is assigned a value but never used @typescript-eslint/no-unused-vars - 94:15 error 'REG_ECX' is assigned a value but never used @typescript-eslint/no-unused-vars - 95:15 error 'REG_EDX' is assigned a value but never used @typescript-eslint/no-unused-vars - 96:15 error 'REG_EBX' is assigned a value but never used @typescript-eslint/no-unused-vars - 97:15 error 'REG_ESP' is assigned a value but never used @typescript-eslint/no-unused-vars - 98:15 error 'REG_EBP' is assigned a value but never used @typescript-eslint/no-unused-vars - 99:15 error 'REG_ESI' is assigned a value but never used @typescript-eslint/no-unused-vars - 100:15 error 'REG_EDI' is assigned a value but never used @typescript-eslint/no-unused-vars - 102:15 error 'REG_ES' is assigned a value but never used @typescript-eslint/no-unused-vars - 103:15 error 'REG_CS' is assigned a value but never used @typescript-eslint/no-unused-vars - 104:15 error 'REG_SS' is assigned a value but never used @typescript-eslint/no-unused-vars - 105:15 error 'REG_DS' is assigned a value but never used @typescript-eslint/no-unused-vars - 106:15 error 'REG_FS' is assigned a value but never used @typescript-eslint/no-unused-vars - 107:15 error 'REG_GS' is assigned a value but never used @typescript-eslint/no-unused-vars - 109:15 error 'REG_LDTR' is assigned a value but never used @typescript-eslint/no-unused-vars - 120:5 error 'MMAP_BLOCK_SIZE' is assigned a value but never used @typescript-eslint/no-unused-vars - 122:5 error 'MMAP_MAX' is assigned a value but never used @typescript-eslint/no-unused-vars - 125:5 error 'CR0_PG' is assigned a value but never used @typescript-eslint/no-unused-vars - 127:5 error 'CR4_PAE' is assigned a value but never used @typescript-eslint/no-unused-vars - 132:19 error 'FW_CFG_SIGNATURE' is assigned a value but never used @typescript-eslint/no-unused-vars - 133:19 error 'FW_CFG_ID' is assigned a value but never used @typescript-eslint/no-unused-vars - 134:19 error 'FW_CFG_RAM_SIZE' is assigned a value but never used @typescript-eslint/no-unused-vars - 135:19 error 'FW_CFG_NB_CPUS' is assigned a value but never used @typescript-eslint/no-unused-vars - 136:19 error 'FW_CFG_MAX_CPUS' is assigned a value but never used @typescript-eslint/no-unused-vars - 137:19 error 'FW_CFG_NUMA' is assigned a value but never used @typescript-eslint/no-unused-vars - 138:19 error 'FW_CFG_FILE_DIR' is assigned a value but never used @typescript-eslint/no-unused-vars - 140:19 error 'FW_CFG_CUSTOM_START' is assigned a value but never used @typescript-eslint/no-unused-vars - 142:19 error 'FW_CFG_FILE_START' is assigned a value but never used @typescript-eslint/no-unused-vars - 144:19 error 'FW_CFG_SIGNATURE_QEMU' is assigned a value but never used @typescript-eslint/no-unused-vars - 149:5 error 'WASM_TABLE_SIZE' is assigned a value but never used @typescript-eslint/no-unused-vars - 152:5 error 'WASM_TABLE_OFFSET' is assigned a value but never used @typescript-eslint/no-unused-vars - 156:5 error 'MIXER_CHANNEL_LEFT' is assigned a value but never used @typescript-eslint/no-unused-vars - 158:5 error 'MIXER_CHANNEL_RIGHT' is assigned a value but never used @typescript-eslint/no-unused-vars - 160:5 error 'MIXER_CHANNEL_BOTH' is assigned a value but never used @typescript-eslint/no-unused-vars - 162:5 error 'MIXER_SRC_MASTER' is assigned a value but never used @typescript-eslint/no-unused-vars - 164:5 error 'MIXER_SRC_PCSPEAKER' is assigned a value but never used @typescript-eslint/no-unused-vars - 166:5 error 'MIXER_SRC_DAC' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/cpu.js - 21:24 error 'v86util' is not defined no-undef - 26:28 error 'v86util' is not defined no-undef - 27:28 error 'v86util' is not defined no-undef - 28:27 error 'v86util' is not defined no-undef - 29:33 error 'v86util' is not defined no-undef - 34:27 error 'v86util' is not defined no-undef - 36:22 error 'v86util' is not defined no-undef - 37:24 error 'v86util' is not defined no-undef - 42:22 error 'v86util' is not defined no-undef - 43:24 error 'v86util' is not defined no-undef - 45:24 error 'v86util' is not defined no-undef - 50:23 error 'v86util' is not defined no-undef - 52:15 error 'v86util' is not defined no-undef - 55:16 error 'v86util' is not defined no-undef - 58:18 error 'v86util' is not defined no-undef - 60:26 error 'v86util' is not defined no-undef - 65:19 error 'v86util' is not defined no-undef - 67:26 error 'v86util' is not defined no-undef - 68:21 error 'v86util' is not defined no-undef - 71:24 error 'v86util' is not defined no-undef - 73:25 error 'v86util' is not defined no-undef - 75:25 error 'v86util' is not defined no-undef - 77:21 error 'v86util' is not defined no-undef - 79:18 error 'v86util' is not defined no-undef - 85:26 error 'v86util' is not defined no-undef - 90:25 error 'v86util' is not defined no-undef - 91:21 error 'v86util' is not defined no-undef - 92:24 error 'v86util' is not defined no-undef - 94:24 error 'v86util' is not defined no-undef - 99:32 error 'v86util' is not defined no-undef - 100:24 error 'v86util' is not defined no-undef - 103:25 error 'v86util' is not defined no-undef - 105:25 error 'v86util' is not defined no-undef - 122:32 error 'v86util' is not defined no-undef - 125:18 error 'v86util' is not defined no-undef - 127:19 error 'v86util' is not defined no-undef - 129:28 error 'v86util' is not defined no-undef - 131:26 error 'v86util' is not defined no-undef - 134:29 error 'v86util' is not defined no-undef - 136:28 error 'v86util' is not defined no-undef - 138:19 error 'v86util' is not defined no-undef - 140:28 error 'v86util' is not defined no-undef - 142:23 error 'v86util' is not defined no-undef - 144:19 error 'v86util' is not defined no-undef - 146:28 error 'v86util' is not defined no-undef - 149:23 error 'v86util' is not defined no-undef - 151:18 error 'v86util' is not defined no-undef - 154:17 error 'v86util' is not defined no-undef - 157:17 error 'v86util' is not defined no-undef - 159:22 error 'v86util' is not defined no-undef - 161:41 error 'v86util' is not defined no-undef - 162:41 error 'v86util' is not defined no-undef - 176:8 error 'DEBUG' is not defined no-undef - 264:8 error 'DEBUG' is not defined no-undef - 310:9 error 'dbg_assert' is not defined no-undef - 319:5 error 'dbg_assert' is not defined no-undef - 319:38 error 'WASM_TABLE_SIZE' is not defined no-undef - 320:36 error 'WASM_TABLE_OFFSET' is not defined no-undef - 327:24 error 'WASM_TABLE_SIZE' is not defined no-undef - 329:19 error 'WASM_TABLE_OFFSET' is not defined no-undef - 480:35 error 'REG_CS' is not defined no-undef - 489:9 error 'dbg_assert' is not defined no-undef - 527:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 531:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 532:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 533:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 534:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 535:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 536:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 538:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 539:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 540:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 541:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 542:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 543:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 544:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 545:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 547:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 549:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 550:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 551:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 552:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 553:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 557:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 573:24 error 'v86util' is not defined no-undef - 624:5 error 'dbg_assert' is not defined no-undef - 650:24 error 'v86util' is not defined no-undef - 716:9 error 'dbg_log' is not defined no-undef - 716:55 error 'LOG_CPU' is not defined no-undef - 720:34 error 'MMAP_BLOCK_SIZE' is not defined no-undef - 721:9 error 'dbg_log' is not defined no-undef - 721:57 error 'LOG_CPU' is not defined no-undef - 724:27 error 'MMAP_BLOCK_SIZE' is not defined no-undef - 725:5 error 'dbg_assert' is not defined no-undef - 726:5 error 'dbg_assert' is not defined no-undef - 726:24 error 'MMAP_BLOCK_SIZE' is not defined no-undef - 734:17 error 'v86util' is not defined no-undef - 735:19 error 'v86util' is not defined no-undef - 753:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 759:18 error 'IO' is not defined no-undef - 769:28 error 'load_kernel' is not defined no-undef - 780:9 error 'dbg_log' is not defined no-undef - 805:13 error 'dbg_assert' is not defined no-undef - 814:9 error 'dbg_log' is not defined no-undef - 814:46 error 'h' is not defined no-undef - 833:22 error 'FW_CFG_SIGNATURE' is not defined no-undef - 836:33 error 'FW_CFG_SIGNATURE_QEMU' is not defined no-undef - 838:27 error 'FW_CFG_ID' is not defined no-undef - 842:27 error 'FW_CFG_RAM_SIZE' is not defined no-undef - 846:27 error 'FW_CFG_NB_CPUS' is not defined no-undef - 850:27 error 'FW_CFG_MAX_CPUS' is not defined no-undef - 854:27 error 'FW_CFG_NUMA' is not defined no-undef - 858:27 error 'FW_CFG_FILE_DIR' is not defined no-undef - 871:17 error 'dbg_assert' is not defined no-undef - 871:28 error 'FW_CFG_FILE_START' is not defined no-undef - 873:62 error 'FW_CFG_FILE_START' is not defined no-undef - 875:17 error 'dbg_assert' is not defined no-undef - 885:26 error 'FW_CFG_CUSTOM_START' is not defined no-undef - 885:57 error 'FW_CFG_FILE_START' is not defined no-undef - 889:26 error 'FW_CFG_FILE_START' is not defined no-undef - 889:55 error 'FW_CFG_FILE_START' is not defined no-undef - 891:31 error 'FW_CFG_FILE_START' is not defined no-undef - 896:13 error 'dbg_log' is not defined no-undef - 896:59 error 'h' is not defined no-undef - 901:8 error 'DEBUG' is not defined no-undef - 904:48 error 'out_byte' is defined but never used @typescript-eslint/no-unused-vars - 906:48 error 'out_byte' is defined but never used @typescript-eslint/no-unused-vars - 929:32 error 'PCI' is not defined no-undef - 933:39 error 'IOAPIC' is not defined no-undef - 934:37 error 'APIC' is not defined no-undef - 935:37 error 'ACPI' is not defined no-undef - 938:32 error 'RTC' is not defined no-undef - 941:32 error 'DMA' is not defined no-undef - 943:32 error 'VGAScreen' is not defined no-undef - 945:32 error 'PS2' is not defined no-undef - 947:34 error 'UART' is not defined no-undef - 951:38 error 'UART' is not defined no-undef - 955:38 error 'UART' is not defined no-undef - 959:38 error 'UART' is not defined no-undef - 962:32 error 'FloppyController' is not defined no-undef - 968:36 error 'IDEDevice' is not defined no-undef - 973:38 error 'IDEDevice' is not defined no-undef - 976:32 error 'PIT' is not defined no-undef - 980:36 error 'Ne2k' is not defined no-undef - 984:43 error 'VirtioNet' is not defined no-undef - 989:42 error 'Virtio9p' is not defined no-undef - 993:47 error 'VirtioConsole' is not defined no-undef - 996:12 error Unexpected constant condition no-constant-condition - 998:37 error 'SB16' is not defined no-undef - 1004:9 error 'dbg_log' is not defined no-undef - 1004:38 error 'LOG_CPU' is not defined no-undef - 1011:17 error 'dbg_log' is not defined no-undef - 1011:60 error 'LOG_CPU' is not defined no-undef - 1016:17 error 'dbg_log' is not defined no-undef - 1016:58 error 'LOG_CPU' is not defined no-undef - 1017:28 error 'REG_EAX' is not defined no-undef - 1022:8 error 'DEBUG' is not defined no-undef - 1032:9 error 'dbg_assert' is not defined no-undef - 1038:9 error 'dbg_log' is not defined no-undef - 1038:37 error 'LOG_CPU' is not defined no-undef - 1039:20 error 'REG_EAX' is not defined no-undef - 1047:5 error 'dbg_log' is not defined no-undef - 1047:74 error 'LOG_CPU' is not defined no-undef - 1066:13 error 'buf32' is already defined no-redeclare - 1079:17 error 'dbg_log' is not defined no-undef - 1079:60 error 'LOG_CPU' is not defined no-undef - 1088:9 error 'dbg_log' is not defined no-undef - 1088:52 error 'h' is not defined no-undef - 1088:71 error 'LOG_CPU' is not defined no-undef - 1091:9 error 'dbg_assert' is not defined no-undef - 1094:13 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 1128:42 error 'MMAP_MAX' is not defined no-undef - 1128:60 error 'MMAP_BLOCK_SIZE' is not defined no-undef - 1130:68 error 'MMAP_BLOCK_BITS' is not defined no-undef - 1142:74 error 'MMAP_BLOCK_BITS' is not defined no-undef - 1148:17 error 'dbg_assert' is not defined no-undef - 1159:17 error 'dbg_log' is not defined no-undef - 1159:70 error 'LOG_CPU' is not defined no-undef - 1167:17 error 'dbg_log' is not defined no-undef - 1167:37 error 'h' is not defined no-undef - 1168:36 error 'h' is not defined no-undef - 1169:40 error 'h' is not defined no-undef - 1170:39 error 'h' is not defined no-undef - 1171:37 error 'h' is not defined no-undef - 1173:17 error 'dbg_assert' is not defined no-undef - 1183:21 error 'dbg_assert' is not defined no-undef - 1184:25 error 'length' is already defined no-redeclare - 1195:17 error 'dbg_log' is not defined no-undef - 1195:61 error 'LOG_CPU' is not defined no-undef - 1197:29 error 'read_elf' is not defined no-undef - 1211:25 error 'dbg_assert' is not defined no-undef - 1221:29 error 'dbg_log' is not defined no-undef - 1221:109 error 'LOG_CPU' is not defined no-undef - 1233:29 error 'dbg_log' is not defined no-undef - 1233:82 error 'h' is not defined no-undef - 1233:128 error 'LOG_CPU' is not defined no-undef - 1247:25 error 'dbg_log' is not defined no-undef - 1247:132 error 'LOG_CPU' is not defined no-undef - 1252:25 error 'dbg_assert' is not defined no-undef - 1252:80 error 'h' is not defined no-undef - 1258:17 error 'dbg_assert' is not defined no-undef - 1271:17 error 'dbg_log' is not defined no-undef - 1280:17 error 'dbg_assert' is not defined no-undef - 1287:23 error 'REG_EBX' is not defined no-undef - 1290:28 error 'FLAGS_DEFAULT' is not defined no-undef - 1306:13 error 'dbg_log' is not defined no-undef - 1306:54 error 'LOG_CPU' is not defined no-undef - 1317:56 error 'h' is not defined no-undef - 1329:17 error 'dbg_log' is not defined no-undef - 1329:53 error 'h' is not defined no-undef - 1329:69 error 'h' is not defined no-undef - 1358:9 error 'dbg_assert' is not defined no-undef - 1377:5 error 'dbg_log' is not defined no-undef - 1377:43 error 'LOG_CPU' is not defined no-undef - 1382:45 error 'BOOT_ORDER_CD_FIRST' is not defined no-undef - 1392:20 error 'CMOS_BIOS_BOOTFLAG1' is not defined no-undef - 1395:20 error 'CMOS_BIOS_BOOTFLAG2' is not defined no-undef - 1398:20 error 'CMOS_MEM_BASE_LOW' is not defined no-undef - 1399:20 error 'CMOS_MEM_BASE_HIGH' is not defined no-undef - 1408:20 error 'CMOS_MEM_OLD_EXT_LOW' is not defined no-undef - 1409:20 error 'CMOS_MEM_OLD_EXT_HIGH' is not defined no-undef - 1410:20 error 'CMOS_MEM_EXTMEM_LOW' is not defined no-undef - 1411:20 error 'CMOS_MEM_EXTMEM_HIGH' is not defined no-undef - 1419:20 error 'CMOS_MEM_EXTMEM2_LOW' is not defined no-undef - 1420:20 error 'CMOS_MEM_EXTMEM2_HIGH' is not defined no-undef - 1423:20 error 'CMOS_MEM_HIGHMEM_LOW' is not defined no-undef - 1424:20 error 'CMOS_MEM_HIGHMEM_MID' is not defined no-undef - 1425:20 error 'CMOS_MEM_HIGHMEM_HIGH' is not defined no-undef - 1427:20 error 'CMOS_EQUIPMENT_INFO' is not defined no-undef - 1429:20 error 'CMOS_BIOS_SMP_COUNT' is not defined no-undef - 1442:9 error 'dbg_log' is not defined no-undef - 1446:5 error 'dbg_assert' is not defined no-undef - 1456:9 error 'dbg_assert' is not defined no-undef - 1478:22 error 'addr' is defined but never used @typescript-eslint/no-unused-vars - 1478:28 error 'value' is defined but never used @typescript-eslint/no-unused-vars - 1480:17 error 'dbg_assert' is not defined no-undef - 1485:9 error 'dbg_log' is not defined no-undef - 1507:5 error 'dbg_assert' is not defined no-undef - 1507:60 error 'WASM_TABLE_SIZE' is not defined no-undef - 1511:8 error 'DEBUG' is not defined no-undef - 1513:12 error 'DUMP_GENERATED_WASM' is not defined no-undef - 1525:21 error 'dbg_log' is not defined no-undef - 1525:62 error 'h' is not defined no-undef - 1525:89 error 'h' is not defined no-undef - 1529:17 error 'dbg_assert' is not defined no-undef - 1558:51 error 'WASM_TABLE_OFFSET' is not defined no-undef - 1572:51 error 'WASM_TABLE_OFFSET' is not defined no-undef - 1581:8 error 'DEBUG' is not defined no-undef - 1585:13 error Unexpected 'debugger' statement no-debugger - 1593:9 error 'DEBUG' is not defined no-undef - 1593:19 error 'DUMP_UNCOMPILED_ASSEMBLY' is not defined no-undef - 1606:13 error 'dbg_log' is not defined no-undef - 1606:54 error 'h' is not defined no-undef - 1606:81 error 'h' is not defined no-undef - 1612:9 error 'dbg_assert' is not defined no-undef - 1621:9 error 'dbg_log' is not defined no-undef - 1628:9 error 'DEBUG' is not defined no-undef - 1628:19 error 'DUMP_GENERATED_WASM' is not defined no-undef - 1637:5 error 'dbg_assert' is not defined no-undef - 1655:9 error 'dbg_log' is not defined no-undef - 1678:5 error 'dbg_assert' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/debug.js - 3:1 error 'CPU' is not defined no-undef - 5:9 error Unexpected aliasing of 'this' to local variable @typescript-eslint/no-this-alias - 11:13 error 'DEBUG' is not defined no-undef - 26:17 error 'dbg_log' is not defined no-undef - 26:40 error 'LOG_BIOS' is not defined no-undef - 52:13 error 'DEBUG' is not defined no-undef - 54:29 error 'REG_ESP' is not defined no-undef - 55:9 error 'dbg_log' is not defined no-undef - 69:21 error 'h' is not defined no-undef - 71:13 error 'dbg_log' is not defined no-undef - 71:28 error 'h' is not defined no-undef - 71:56 error 'h' is not defined no-undef - 77:13 error 'DEBUG' is not defined no-undef - 80:13 error 'vm' is assigned a value but never used @typescript-eslint/no-unused-vars - 80:34 error 'FLAG_VM' is not defined no-undef - 84:22 error 'h' is not defined no-undef - 84:33 error 'REG_CS' is not defined no-undef - 84:53 error 'h' is not defined no-undef - 85:22 error 'h' is not defined no-undef - 85:33 error 'REG_SS' is not defined no-undef - 85:53 error 'h' is not defined no-undef - 85:65 error 'REG_ES' is not defined no-undef - 87:35 error 'FLAG_INTERRUPT' is not defined no-undef - 90:14 error 'FLAG_CARRY' is not defined no-undef - 91:14 error 'FLAG_PARITY' is not defined no-undef - 92:14 error 'FLAG_ADJUST' is not defined no-undef - 93:14 error 'FLAG_ZERO' is not defined no-undef - 94:14 error 'FLAG_SIGN' is not defined no-undef - 95:14 error 'FLAG_TRAP' is not defined no-undef - 96:14 error 'FLAG_INTERRUPT' is not defined no-undef - 97:14 error 'FLAG_DIRECTION' is not defined no-undef - 98:14 error 'FLAG_OVERFLOW' is not defined no-undef - 117:79 error 'CR0_PG' is not defined no-undef - 118:43 error 'CR4_PAE' is not defined no-undef - 120:30 error 'h' is not defined no-undef - 121:28 error 'h' is not defined no-undef - 129:13 error 'DEBUG' is not defined no-undef - 131:9 error 'dbg_log' is not defined no-undef - 131:35 error 'LOG_CPU' is not defined no-undef - 136:13 error 'DEBUG' is not defined no-undef - 139:28 error 'REG_EAX' is not defined no-undef - 139:44 error 'REG_ECX' is not defined no-undef - 139:60 error 'REG_EDX' is not defined no-undef - 139:76 error 'REG_EBX' is not defined no-undef - 140:28 error 'REG_ESP' is not defined no-undef - 140:44 error 'REG_EBP' is not defined no-undef - 140:60 error 'REG_ESI' is not defined no-undef - 140:76 error 'REG_EDI' is not defined no-undef - 142:13 error 's' is assigned a value but never used @typescript-eslint/no-unused-vars - 142:25 error 'REG_CS' is not defined no-undef - 142:39 error 'REG_DS' is not defined no-undef - 142:53 error 'REG_ES' is not defined no-undef - 142:67 error 'REG_FS' is not defined no-undef - 142:81 error 'REG_GS' is not defined no-undef - 142:95 error 'REG_SS' is not defined no-undef - 148:44 error 'h' is not defined no-undef - 149:46 error 'h' is not defined no-undef - 155:28 error 'h' is not defined no-undef - 155:39 error 'REG_DS' is not defined no-undef - 155:62 error 'h' is not defined no-undef - 155:73 error 'REG_ES' is not defined no-undef - 155:96 error 'h' is not defined no-undef - 155:107 error 'REG_FS' is not defined no-undef - 156:28 error 'h' is not defined no-undef - 156:39 error 'REG_GS' is not defined no-undef - 156:62 error 'h' is not defined no-undef - 156:73 error 'REG_CS' is not defined no-undef - 156:96 error 'h' is not defined no-undef - 156:107 error 'REG_SS' is not defined no-undef - 163:13 error 'DEBUG' is not defined no-undef - 167:9 error 'dbg_log' is not defined no-undef - 167:27 error 'LOG_CPU' is not defined no-undef - 168:9 error 'dbg_log' is not defined no-undef - 168:27 error 'LOG_CPU' is not defined no-undef - 173:13 error 'DEBUG' is not defined no-undef - 175:9 error 'dbg_log' is not defined no-undef - 175:34 error 'h' is not defined no-undef - 178:9 error 'dbg_log' is not defined no-undef - 178:36 error 'h' is not defined no-undef - 178:57 error 'REG_LDTR' is not defined no-undef - 179:74 error 'REG_LDTR' is not defined no-undef - 179:105 error 'REG_LDTR' is not defined no-undef - 238:44 error 'h' is not defined no-undef - 246:17 error 'dbg_log' is not defined no-undef - 246:25 error 'h' is not defined no-undef - 246:46 error 'h' is not defined no-undef - 246:72 error 'h' is not defined no-undef - 255:13 error 'DEBUG' is not defined no-undef - 296:13 error 'dbg_log' is not defined no-undef - 296:21 error 'h' is not defined no-undef - 296:42 error 'h' is not defined no-undef - 297:21 error 'h' is not defined no-undef - 303:13 error 'DEBUG' is not defined no-undef - 336:34 error 'CR4_PAE' is not defined no-undef - 339:13 error 'dbg_log' is not defined no-undef - 352:13 error 'dbg_log' is not defined no-undef - 360:13 error 'DEBUG' is not defined no-undef - 387:17 error 'dbg_log' is not defined no-undef - 387:34 error 'h' is not defined no-undef - 388:21 error 'h' is not defined no-undef - 393:17 error 'dbg_log' is not defined no-undef - 393:34 error 'h' is not defined no-undef - 414:21 error 'dbg_log' is not defined no-undef - 414:36 error 'h' is not defined no-undef - 415:29 error 'h' is not defined no-undef - 415:87 error 'h' is not defined no-undef - 424:13 error 'DEBUG' is not defined no-undef - 443:13 error 'DEBUG' is not defined no-undef - 450:20 error 'h' is not defined no-undef - 455:25 error 'h' is not defined no-undef - 466:13 error 'dbg_log' is not defined no-undef - 472:13 error 'DEBUG' is not defined no-undef - 481:19 error 'h' is not defined no-undef - 490:13 error 'dbg_log' is not defined no-undef - 495:38 error 'interrupt_nr' is defined but never used @typescript-eslint/no-unused-vars - 565:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 565:26 error 'require' is not defined no-undef - 574:21 error 'dbg_log' is not defined no-undef - 590:17 error 'dbg_log' is not defined no-undef - 590:25 error 'h' is not defined no-undef - 591:21 error 'v86util' is not defined no-undef - 591:55 error 'h' is not defined no-undef - 594:13 error 'dbg_log' is not defined no-undef - 596:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 598:13 error 'dbg_log' is not defined no-undef - 598:77 error 'h' is not defined no-undef - 623:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 623:24 error 'require' is not defined no-undef - 632:17 error 'dbg_log' is not defined no-undef - 647:13 error 'dbg_log' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/dma.js - 141:5 error 'dbg_log' is not defined no-undef - 141:50 error 'h' is not defined no-undef - 141:64 error 'LOG_DMA' is not defined no-undef - 152:5 error 'dbg_log' is not defined no-undef - 152:50 error 'h' is not defined no-undef - 152:82 error 'LOG_DMA' is not defined no-undef - 158:5 error 'dbg_log' is not defined no-undef - 158:49 error 'h' is not defined no-undef - 158:63 error 'LOG_DMA' is not defined no-undef - 169:5 error 'dbg_log' is not defined no-undef - 169:49 error 'h' is not defined no-undef - 169:80 error 'LOG_DMA' is not defined no-undef - 175:5 error 'dbg_log' is not defined no-undef - 175:51 error 'h' is not defined no-undef - 175:65 error 'LOG_DMA' is not defined no-undef - 181:5 error 'dbg_log' is not defined no-undef - 181:46 error 'LOG_DMA' is not defined no-undef - 187:5 error 'dbg_log' is not defined no-undef - 187:49 error 'h' is not defined no-undef - 187:63 error 'LOG_DMA' is not defined no-undef - 193:5 error 'dbg_log' is not defined no-undef - 193:44 error 'LOG_DMA' is not defined no-undef - 201:5 error 'dbg_log' is not defined no-undef - 201:70 error 'LOG_DMA' is not defined no-undef - 207:5 error 'dbg_log' is not defined no-undef - 207:43 error 'h' is not defined no-undef - 207:57 error 'LOG_DMA' is not defined no-undef - 221:5 error 'dbg_log' is not defined no-undef - 221:42 error 'h' is not defined no-undef - 221:52 error 'LOG_DMA' is not defined no-undef - 228:5 error 'dbg_log' is not defined no-undef - 228:49 error 'h' is not defined no-undef - 228:63 error 'LOG_DMA' is not defined no-undef - 232:38 error 'data_byte' is defined but never used @typescript-eslint/no-unused-vars - 234:5 error 'dbg_log' is not defined no-undef - 234:31 error 'LOG_DMA' is not defined no-undef - 254:13 error 'dbg_log' is not defined no-undef - 254:58 error 'LOG_DMA' is not defined no-undef - 272:5 error 'dbg_log' is not defined no-undef - 272:45 error 'LOG_DMA' is not defined no-undef - 273:5 error 'dbg_log' is not defined no-undef - 273:21 error 'h' is not defined no-undef - 273:41 error 'h' is not defined no-undef - 273:56 error 'LOG_DMA' is not defined no-undef - 277:9 error 'dbg_log' is not defined no-undef - 277:58 error 'h' is not defined no-undef - 277:73 error 'h' is not defined no-undef - 277:88 error 'LOG_DMA' is not defined no-undef - 282:9 error 'dbg_log' is not defined no-undef - 282:47 error 'LOG_DMA' is not defined no-undef - 310:5 error 'dbg_log' is not defined no-undef - 310:45 error 'LOG_DMA' is not defined no-undef - 311:5 error 'dbg_log' is not defined no-undef - 311:21 error 'h' is not defined no-undef - 311:41 error 'h' is not defined no-undef - 311:56 error 'LOG_DMA' is not defined no-undef - 315:9 error 'dbg_log' is not defined no-undef - 315:55 error 'LOG_DMA' is not defined no-undef - 322:9 error 'dbg_log' is not defined no-undef - 322:61 error 'LOG_DMA' is not defined no-undef - 328:9 error 'dbg_log' is not defined no-undef - 328:48 error 'LOG_DMA' is not defined no-undef - 339:13 error 'dbg_log' is not defined no-undef - 339:37 error 'LOG_DMA' is not defined no-undef - 350:25 error 'dbg_log' is not defined no-undef - 350:62 error 'LOG_DMA' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/elf.js - 15:14 error 'offset' is defined but never used @typescript-eslint/no-unused-vars - 98:10 error 'read_elf' is defined but never used @typescript-eslint/no-unused-vars - 105:8 error 'DEBUG' is not defined no-undef - 109:13 error 'dbg_log' is not defined no-undef - 129:29 error 'ph_offset' is assigned a value but never used @typescript-eslint/no-unused-vars - 134:30 error 'sh_offset' is assigned a value but never used @typescript-eslint/no-unused-vars - 139:8 error 'DEBUG' is not defined no-undef - 139:17 error 'LOG_LEVEL' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/externs.js - 3:5 error 'global' is assigned a value but never used @typescript-eslint/no-unused-vars - 4:5 error 'process' is assigned a value but never used @typescript-eslint/no-unused-vars - 10:5 error 'registerProcessor' is assigned a value but never used @typescript-eslint/no-unused-vars - 10:34 error 'name' is defined but never used @typescript-eslint/no-unused-vars - 10:40 error 'processor' is defined but never used @typescript-eslint/no-unused-vars - 13:5 error 'sampleRate' is assigned a value but never used @typescript-eslint/no-unused-vars - 15:5 error 'WabtModule' is assigned a value but never used @typescript-eslint/no-unused-vars - 16:24 error 'buf' is defined but never used @typescript-eslint/no-unused-vars - 16:29 error 'opt' is defined but never used @typescript-eslint/no-unused-vars - 21:5 error 'cs' is assigned a value but never used @typescript-eslint/no-unused-vars - 29:7 error 'Buffer' is assigned a value but never used @typescript-eslint/no-unused-vars - 30:28 error 'length' is defined but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/floppy.js - 53:41 error 'CMOS_FLOPPY_DRIVE_TYPE' is not defined no-undef - 60:5 error 'dbg_assert' is not defined no-undef - 110:9 error 'dbg_assert' is not defined no-undef - 113:25 error 'v86util' is not defined no-undef - 115:9 error 'dbg_log' is not defined no-undef - 125:37 error 'CMOS_FLOPPY_DRIVE_TYPE' is not defined no-undef - 181:5 error 'dbg_log' is not defined no-undef - 181:25 error 'LOG_FLOPPY' is not defined no-undef - 189:5 error 'dbg_log' is not defined no-undef - 189:25 error 'LOG_FLOPPY' is not defined no-undef - 208:5 error 'dbg_log' is not defined no-undef - 208:25 error 'LOG_FLOPPY' is not defined no-undef - 216:9 error 'dbg_log' is not defined no-undef - 216:73 error 'LOG_FLOPPY' is not defined no-undef - 222:9 error 'dbg_log' is not defined no-undef - 222:36 error 'LOG_FLOPPY' is not defined no-undef - 229:5 error 'dbg_log' is not defined no-undef - 229:39 error 'h' is not defined no-undef - 229:48 error 'LOG_FLOPPY' is not defined no-undef - 233:9 error 'dbg_log' is not defined no-undef - 233:30 error 'LOG_FLOPPY' is not defined no-undef - 241:5 error 'dbg_log' is not defined no-undef - 241:28 error 'h' is not defined no-undef - 241:41 error 'LOG_FLOPPY' is not defined no-undef - 251:16 error 'DEBUG' is not defined no-undef - 255:28 error 'h' is not defined no-undef - 256:17 error 'dbg_log' is not defined no-undef - 256:30 error 'LOG_FLOPPY' is not defined no-undef - 313:17 error 'dbg_log' is not defined no-undef - 313:96 error 'LOG_FLOPPY' is not defined no-undef - 321:17 error 'dbg_assert' is not defined no-undef - 321:74 error 'h' is not defined no-undef - 330:5 error 'dbg_log' is not defined no-undef - 330:30 error 'LOG_FLOPPY' is not defined no-undef - 343:5 error 'dbg_log' is not defined no-undef - 343:32 error 'h' is not defined no-undef - 343:47 error 'LOG_FLOPPY' is not defined no-undef - 344:5 error 'dbg_log' is not defined no-undef - 344:49 error 'LOG_FLOPPY' is not defined no-undef - 345:5 error 'dbg_log' is not defined no-undef - 345:44 error 'LOG_FLOPPY' is not defined no-undef - 346:5 error 'dbg_log' is not defined no-undef - 346:45 error 'LOG_FLOPPY' is not defined no-undef - 349:9 error 'dbg_log' is not defined no-undef - 349:47 error 'LOG_FLOPPY' is not defined no-undef - 351:5 error 'dbg_log' is not defined no-undef - 351:24 error 'h' is not defined no-undef - 351:34 error 'LOG_FLOPPY' is not defined no-undef - 356:58 error 'args' is defined but never used @typescript-eslint/no-unused-vars - 358:5 error 'dbg_log' is not defined no-undef - 358:35 error 'LOG_FLOPPY' is not defined no-undef - 377:5 error 'dbg_log' is not defined no-undef - 377:21 error 'LOG_FLOPPY' is not defined no-undef - 380:9 error 'dbg_log' is not defined no-undef - 380:32 error 'LOG_FLOPPY' is not defined no-undef - 414:5 error 'dbg_log' is not defined no-undef - 414:33 error 'LOG_FLOPPY' is not defined no-undef - 421:5 error 'dbg_log' is not defined no-undef - 421:46 error 'LOG_FLOPPY' is not defined no-undef - 440:5 error 'dbg_log' is not defined no-undef - 440:56 error 'LOG_FLOPPY' is not defined no-undef - 441:5 error 'dbg_log' is not defined no-undef - 441:23 error 'h' is not defined no-undef - 441:53 error 'h' is not defined no-undef - 441:82 error 'LOG_FLOPPY' is not defined no-undef - 442:5 error 'dbg_log' is not defined no-undef - 442:55 error 'LOG_FLOPPY' is not defined no-undef - 446:9 error 'dbg_log' is not defined no-undef - 446:71 error 'LOG_FLOPPY' is not defined no-undef - 471:9 error 'dbg_log' is not defined no-undef - 471:48 error 'LOG_FLOPPY' is not defined no-undef - 516:5 error 'dbg_log' is not defined no-undef - 516:77 error 'LOG_FLOPPY' is not defined no-undef - 521:5 error 'dbg_log' is not defined no-undef - 521:72 error 'LOG_FLOPPY' is not defined no-undef - 526:5 error 'dbg_log' is not defined no-undef - 526:46 error 'LOG_FLOPPY' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/ide.js - 41:9 error 'dbg_assert' is not defined no-undef - 41:68 error 'LOG_DISK' is not defined no-undef - 100:9 error 'dbg_log' is not defined no-undef - 100:30 error 'LOG_DISK' is not defined no-undef - 120:9 error 'dbg_log' is not defined no-undef - 120:34 error 'h' is not defined no-undef - 121:70 error 'LOG_DISK' is not defined no-undef - 126:9 error 'dbg_log' is not defined no-undef - 126:38 error 'h' is not defined no-undef - 126:82 error 'LOG_DISK' is not defined no-undef - 131:9 error 'dbg_log' is not defined no-undef - 131:35 error 'h' is not defined no-undef - 131:76 error 'LOG_DISK' is not defined no-undef - 137:9 error 'dbg_log' is not defined no-undef - 137:32 error 'h' is not defined no-undef - 137:79 error 'LOG_DISK' is not defined no-undef - 142:9 error 'dbg_log' is not defined no-undef - 142:32 error 'h' is not defined no-undef - 142:80 error 'LOG_DISK' is not defined no-undef - 147:9 error 'dbg_log' is not defined no-undef - 147:29 error 'LOG_DISK' is not defined no-undef - 164:9 error 'dbg_log' is not defined no-undef - 164:37 error 'h' is not defined no-undef - 164:46 error 'LOG_DISK' is not defined no-undef - 170:9 error 'dbg_log' is not defined no-undef - 170:37 error 'h' is not defined no-undef - 170:46 error 'LOG_DISK' is not defined no-undef - 176:9 error 'dbg_log' is not defined no-undef - 176:34 error 'h' is not defined no-undef - 176:43 error 'LOG_DISK' is not defined no-undef - 183:9 error 'dbg_log' is not defined no-undef - 183:38 error 'h' is not defined no-undef - 183:47 error 'LOG_DISK' is not defined no-undef - 189:9 error 'dbg_log' is not defined no-undef - 189:39 error 'h' is not defined no-undef - 189:48 error 'LOG_DISK' is not defined no-undef - 196:13 error 'mode' is assigned a value but never used @typescript-eslint/no-unused-vars - 198:9 error 'dbg_log' is not defined no-undef - 198:33 error 'h' is not defined no-undef - 198:45 error 'LOG_DISK' is not defined no-undef - 202:13 error 'dbg_log' is not defined no-undef - 202:30 error 'LOG_DISK' is not defined no-undef - 227:9 error 'dbg_log' is not defined no-undef - 227:30 error 'LOG_DISK' is not defined no-undef - 244:9 error 'dbg_log' is not defined no-undef - 244:33 error 'LOG_DISK' is not defined no-undef - 247:9 error 'dbg_log' is not defined no-undef - 247:33 error 'LOG_DISK' is not defined no-undef - 252:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 252:5 error 'DEBUG' is not defined no-undef - 260:9 error 'dbg_log' is not defined no-undef - 260:39 error 'h' is not defined no-undef - 260:50 error 'LOG_DISK' is not defined no-undef - 271:5 error 'dbg_log' is not defined no-undef - 271:38 error 'h' is not defined no-undef - 272:52 error 'LOG_DISK' is not defined no-undef - 276:9 error 'dbg_log' is not defined no-undef - 276:43 error 'LOG_DISK' is not defined no-undef - 289:5 error 'dbg_log' is not defined no-undef - 289:35 error 'h' is not defined no-undef - 289:57 error 'LOG_DISK' is not defined no-undef - 295:5 error 'dbg_log' is not defined no-undef - 295:35 error 'h' is not defined no-undef - 295:47 error 'LOG_DISK' is not defined no-undef - 301:5 error 'dbg_log' is not defined no-undef - 301:35 error 'h' is not defined no-undef - 301:55 error 'LOG_DISK' is not defined no-undef - 307:5 error 'dbg_log' is not defined no-undef - 307:34 error 'h' is not defined no-undef - 307:44 error 'LOG_DISK' is not defined no-undef - 318:5 error 'dbg_log' is not defined no-undef - 318:36 error 'h' is not defined no-undef - 318:57 error 'LOG_DISK' is not defined no-undef - 324:5 error 'dbg_log' is not defined no-undef - 324:37 error 'h' is not defined no-undef - 324:47 error 'LOG_DISK' is not defined no-undef - 332:5 error 'dbg_log' is not defined no-undef - 332:38 error 'h' is not defined no-undef - 332:48 error 'LOG_DISK' is not defined no-undef - 367:13 error 'dbg_log' is not defined no-undef - 368:21 error 'h' is not defined no-undef - 368:64 error 'LOG_DISK' is not defined no-undef - 369:13 error 'dbg_assert' is not defined no-undef - 377:9 error 'dbg_log' is not defined no-undef - 377:29 error 'LOG_DISK' is not defined no-undef - 465:13 error 'dbg_log' is not defined no-undef - 465:72 error 'LOG_DISK' is not defined no-undef - 487:13 error 'dbg_log' is not defined no-undef - 487:90 error 'LOG_DISK' is not defined no-undef - 502:24 error 'CMOS_BIOS_DISKTRANSFLAG' is not defined no-undef - 503:27 error 'CMOS_BIOS_DISKTRANSFLAG' is not defined no-undef - 504:24 error 'CMOS_DISK_DATA' is not defined no-undef - 504:54 error 'CMOS_DISK_DATA' is not defined no-undef - 506:19 error 'CMOS_DISK_DRIVE1_CYL' is not defined no-undef - 619:5 error 'dbg_log' is not defined no-undef - 619:31 error 'h' is not defined no-undef - 619:80 error 'LOG_DISK' is not defined no-undef - 623:9 error 'dbg_log' is not defined no-undef - 623:37 error 'LOG_DISK' is not defined no-undef - 636:13 error 'dbg_log' is not defined no-undef - 636:41 error 'LOG_DISK' is not defined no-undef - 665:17 error 'last_sector' is already defined no-redeclare - 721:13 error 'dbg_log' is not defined no-undef - 721:51 error 'LOG_DISK' is not defined no-undef - 743:13 error 'dbg_log' is not defined no-undef - 743:57 error 'h' is not defined no-undef - 743:83 error 'LOG_DISK' is not defined no-undef - 760:13 error 'dbg_log' is not defined no-undef - 760:44 error 'LOG_DISK' is not defined no-undef - 766:13 error 'dbg_log' is not defined no-undef - 766:56 error 'LOG_DISK' is not defined no-undef - 773:13 error 'dbg_log' is not defined no-undef - 773:46 error 'LOG_DISK' is not defined no-undef - 779:13 error 'dbg_log' is not defined no-undef - 779:43 error 'LOG_DISK' is not defined no-undef - 785:13 error 'dbg_log' is not defined no-undef - 785:40 error 'LOG_DISK' is not defined no-undef - 791:13 error 'dbg_log' is not defined no-undef - 791:44 error 'LOG_DISK' is not defined no-undef - 808:13 error 'dbg_log' is not defined no-undef - 808:40 error 'LOG_DISK' is not defined no-undef - 814:13 error 'dbg_log' is not defined no-undef - 814:40 error 'h' is not defined no-undef - 814:66 error 'LOG_DISK' is not defined no-undef - 826:13 error 'dbg_log' is not defined no-undef - 826:45 error 'LOG_DISK' is not defined no-undef - 832:13 error 'dbg_log' is not defined no-undef - 832:55 error 'LOG_DISK' is not defined no-undef - 838:13 error 'dbg_assert' is not defined no-undef - 838:56 error 'h' is not defined no-undef - 838:64 error 'LOG_DISK' is not defined no-undef - 848:5 error 'dbg_log' is not defined no-undef - 848:33 error 'h' is not defined no-undef - 849:53 error 'LOG_DISK' is not defined no-undef - 857:13 error 'dbg_log' is not defined no-undef - 857:40 error 'LOG_DISK' is not defined no-undef - 880:13 error 'dbg_log' is not defined no-undef - 880:35 error 'h' is not defined no-undef - 880:77 error 'LOG_DISK' is not defined no-undef - 950:17 error 'length' is already defined no-redeclare - 953:13 error 'dbg_log' is not defined no-undef - 953:57 error 'LOG_DISK' is not defined no-undef - 959:17 error 'length' is already defined no-redeclare - 964:13 error 'dbg_log' is not defined no-undef - 964:36 error 'h' is not defined no-undef - 967:27 error 'h' is not defined no-undef - 967:44 error 'LOG_DISK' is not defined no-undef - 1005:17 error 'dbg_assert' is not defined no-undef - 1013:17 error 'length' is already defined no-redeclare - 1034:13 error 'dbg_log' is not defined no-undef - 1034:55 error 'h' is not defined no-undef - 1034:72 error 'LOG_DISK' is not defined no-undef - 1042:17 error 'length' is already defined no-redeclare - 1044:13 error 'dbg_log' is not defined no-undef - 1044:38 error 'h' is not defined no-undef - 1044:74 error 'LOG_DISK' is not defined no-undef - 1065:13 error 'dbg_log' is not defined no-undef - 1065:55 error 'h' is not defined no-undef - 1065:72 error 'LOG_DISK' is not defined no-undef - 1070:13 error 'dbg_log' is not defined no-undef - 1070:55 error 'h' is not defined no-undef - 1070:72 error 'LOG_DISK' is not defined no-undef - 1080:13 error 'dbg_log' is not defined no-undef - 1080:55 error 'h' is not defined no-undef - 1080:72 error 'LOG_DISK' is not defined no-undef - 1081:13 error 'dbg_assert' is not defined no-undef - 1102:5 error 'dbg_assert' is not defined no-undef - 1106:5 error 'dbg_assert' is not defined no-undef - 1126:5 error 'dbg_log' is not defined no-undef - 1126:30 error 'h' is not defined no-undef - 1127:28 error 'h' is not defined no-undef - 1128:29 error 'h' is not defined no-undef - 1129:25 error 'h' is not defined no-undef - 1129:35 error 'LOG_DISK' is not defined no-undef - 1133:5 error 'dbg_log' is not defined no-undef - 1133:13 error 'h' is not defined no-undef - 1133:46 error 'h' is not defined no-undef - 1133:71 error 'LOG_DISK' is not defined no-undef - 1146:9 error 'dbg_assert' is not defined no-undef - 1146:62 error 'h' is not defined no-undef - 1147:38 error 'h' is not defined no-undef - 1147:65 error 'LOG_DISK' is not defined no-undef - 1168:13 error 'dbg_log' is not defined no-undef - 1168:46 error 'LOG_DISK' is not defined no-undef - 1200:5 error 'dbg_log' is not defined no-undef - 1200:34 error 'h' is not defined no-undef - 1201:28 error 'h' is not defined no-undef - 1202:29 error 'h' is not defined no-undef - 1203:25 error 'h' is not defined no-undef - 1203:35 error 'LOG_DISK' is not defined no-undef - 1207:9 error 'dbg_assert' is not defined no-undef - 1207:62 error 'h' is not defined no-undef - 1208:38 error 'h' is not defined no-undef - 1208:65 error 'LOG_DISK' is not defined no-undef - 1220:13 error 'dbg_log' is not defined no-undef - 1235:9 error 'dbg_log' is not defined no-undef - 1235:49 error 'LOG_DISK' is not defined no-undef - 1241:9 error 'dbg_log' is not defined no-undef - 1241:46 error 'LOG_DISK' is not defined no-undef - 1245:5 error 'dbg_log' is not defined no-undef - 1245:59 error 'LOG_DISK' is not defined no-undef - 1262:9 error 'dbg_log' is not defined no-undef - 1262:36 error 'h' is not defined no-undef - 1262:58 error 'h' is not defined no-undef - 1262:83 error 'h' is not defined no-undef - 1262:104 error 'LOG_DISK' is not defined no-undef - 1270:13 error 'dbg_log' is not defined no-undef - 1271:34 error 'h' is not defined no-undef - 1272:39 error 'h' is not defined no-undef - 1273:31 error 'h' is not defined no-undef - 1273:56 error 'LOG_DISK' is not defined no-undef - 1279:5 error 'dbg_log' is not defined no-undef - 1279:37 error 'LOG_DISK' is not defined no-undef - 1291:9 error 'dbg_assert' is not defined no-undef - 1292:9 error 'dbg_assert' is not defined no-undef - 1292:54 error 'h' is not defined no-undef - 1300:17 error 'result' is already defined no-redeclare - 1304:17 error 'result' is already defined no-redeclare - 1312:13 error 'dbg_log' is not defined no-undef - 1312:36 error 'h' is not defined no-undef - 1313:35 error 'h' is not defined no-undef - 1314:35 error 'h' is not defined no-undef - 1314:56 error 'LOG_DISK' is not defined no-undef - 1326:9 error 'dbg_log' is not defined no-undef - 1326:36 error 'LOG_DISK' is not defined no-undef - 1335:5 error 'dbg_log' is not defined no-undef - 1335:31 error 'h' is not defined no-undef - 1335:76 error 'h' is not defined no-undef - 1336:23 error 'h' is not defined no-undef - 1336:55 error 'h' is not defined no-undef - 1336:76 error 'LOG_DISK' is not defined no-undef - 1363:13 error 'dbg_log' is not defined no-undef - 1363:35 error 'h' is not defined no-undef - 1363:53 error 'LOG_DISK' is not defined no-undef - 1379:17 error 'dbg_assert' is not defined no-undef - 1383:17 error 'dbg_assert' is not defined no-undef - 1384:21 error 'sector_count' is already defined no-redeclare - 1396:5 error 'dbg_assert' is not defined no-undef - 1400:9 error 'dbg_log' is not defined no-undef - 1400:52 error 'h' is not defined no-undef - 1400:74 error 'h' is not defined no-undef - 1401:27 error 'h' is not defined no-undef - 1401:49 error 'LOG_DISK' is not defined no-undef - 1408:13 error 'dbg_log' is not defined no-undef - 1408:37 error 'h' is not defined no-undef - 1408:65 error 'h' is not defined no-undef - 1409:31 error 'h' is not defined no-undef - 1409:53 error 'LOG_DISK' is not defined no-undef - 1427:9 error 'dbg_assert' is not defined no-undef - 1458:9 error 'dbg_log' is not defined no-undef - 1458:45 error 'h' is not defined no-undef - 1459:35 error 'h' is not defined no-undef - 1459:56 error 'LOG_DISK' is not defined no-undef - 1467:13 error 'dbg_assert' is not defined no-undef - 1470:42 error 'h' is not defined no-undef - 1483:5 error 'dbg_log' is not defined no-undef - 1483:80 error 'LOG_DISK' is not defined no-undef - 1496:13 error 'new_sector' is already defined no-redeclare - 1504:13 error 'new_sector' is already defined no-redeclare - 1512:9 error 'dbg_assert' is not defined no-undef - 1527:5 error 'dbg_log' is not defined no-undef - 1527:31 error 'h' is not defined no-undef - 1529:23 error 'h' is not defined no-undef - 1530:28 error 'h' is not defined no-undef - 1531:29 error 'h' is not defined no-undef - 1531:44 error 'LOG_DISK' is not defined no-undef - 1535:9 error 'dbg_assert' is not defined no-undef - 1535:56 error 'LOG_DISK' is not defined no-undef - 1548:13 error 'dbg_log' is not defined no-undef - 1548:47 error 'LOG_DISK' is not defined no-undef - 1571:5 error 'dbg_log' is not defined no-undef - 1571:35 error 'h' is not defined no-undef - 1572:28 error 'h' is not defined no-undef - 1573:29 error 'h' is not defined no-undef - 1573:44 error 'LOG_DISK' is not defined no-undef - 1577:9 error 'dbg_assert' is not defined no-undef - 1577:56 error 'LOG_DISK' is not defined no-undef - 1599:5 error 'dbg_assert' is not defined no-undef - 1608:9 error 'dbg_log' is not defined no-undef - 1608:58 error 'LOG_DISK' is not defined no-undef - 1612:9 error 'dbg_assert' is not defined no-undef - 1622:17 error 'dbg_log' is not defined no-undef - 1622:49 error 'LOG_DISK' is not defined no-undef - 1625:13 error 'dbg_log' is not defined no-undef - 1625:49 error 'h' is not defined no-undef - 1626:37 error 'h' is not defined no-undef - 1626:51 error 'LOG_DISK' is not defined no-undef - 1634:9 error 'dbg_assert' is not defined no-undef - 1659:5 error 'dbg_log' is not defined no-undef - 1659:32 error 'h' is not defined no-undef - 1661:28 error 'h' is not defined no-undef - 1662:29 error 'h' is not defined no-undef - 1662:44 error 'LOG_DISK' is not defined no-undef - 1666:9 error 'dbg_assert' is not defined no-undef - 1666:57 error 'LOG_DISK' is not defined no-undef - 1689:5 error 'dbg_log' is not defined no-undef - 1689:36 error 'h' is not defined no-undef - 1690:28 error 'h' is not defined no-undef - 1691:29 error 'h' is not defined no-undef - 1691:44 error 'LOG_DISK' is not defined no-undef - 1695:9 error 'dbg_assert' is not defined no-undef - 1695:61 error 'LOG_DISK' is not defined no-undef - 1720:5 error 'dbg_log' is not defined no-undef - 1720:29 error 'h' is not defined no-undef - 1720:47 error 'LOG_DISK' is not defined no-undef - 1732:13 error 'dbg_log' is not defined no-undef - 1732:45 error 'LOG_DISK' is not defined no-undef - 1735:9 error 'dbg_log' is not defined no-undef - 1735:46 error 'h' is not defined no-undef - 1735:76 error 'h' is not defined no-undef - 1735:90 error 'LOG_DISK' is not defined no-undef - 1738:9 error 'dbg_assert' is not defined no-undef - 1752:5 error 'dbg_assert' is not defined no-undef - 1756:9 error 'dbg_log' is not defined no-undef - 1756:40 error 'LOG_DISK' is not defined no-undef - 1773:5 error 'dbg_log' is not defined no-undef - 1773:56 error 'LOG_DISK' is not defined no-undef - 1821:13 error 'count' is already defined no-redeclare - 1984:13 error 'dbg_assert' is not defined no-undef - 1989:9 error 'dbg_assert' is not defined no-undef - 2071:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/io.js - 25:13 error 'i' is already defined no-redeclare - 25:26 error 'MMAP_BLOCK_BITS' is not defined no-undef - 32:37 error 'MMAP_MAX' is not defined no-undef - 35:13 error 'dbg_log' is not defined no-undef - 35:64 error 'h' is not defined no-undef - 35:82 error 'LOG_IO' is not defined no-undef - 40:13 error 'dbg_log' is not defined no-undef - 40:63 error 'h' is not defined no-undef - 40:94 error 'h' is not defined no-undef - 40:107 error 'LOG_IO' is not defined no-undef - 43:13 error 'dbg_log' is not defined no-undef - 43:64 error 'h' is not defined no-undef - 43:82 error 'LOG_IO' is not defined no-undef - 47:13 error 'dbg_log' is not defined no-undef - 47:63 error 'h' is not defined no-undef - 47:94 error 'h' is not defined no-undef - 47:113 error 'LOG_IO' is not defined no-undef - 82:42 error 'x' is defined but never used @typescript-eslint/no-unused-vars - 96:5 error 'dbg_assert' is not defined no-undef - 97:5 error 'dbg_assert' is not defined no-undef - 98:5 error 'dbg_assert' is not defined no-undef - 99:5 error 'dbg_assert' is not defined no-undef - 100:5 error 'dbg_assert' is not defined no-undef - 101:5 error 'dbg_assert' is not defined no-undef - 103:8 error 'DEBUG' is not defined no-undef - 106:13 error 'dbg_assert' is not defined no-undef - 106:61 error 'h' is not defined no-undef - 129:5 error 'dbg_assert' is not defined no-undef - 130:5 error 'dbg_assert' is not defined no-undef - 131:5 error 'dbg_assert' is not defined no-undef - 132:5 error 'dbg_assert' is not defined no-undef - 133:5 error 'dbg_assert' is not defined no-undef - 134:5 error 'dbg_assert' is not defined no-undef - 136:8 error 'DEBUG' is not defined no-undef - 139:13 error 'dbg_assert' is not defined no-undef - 139:62 error 'h' is not defined no-undef - 171:5 error 'dbg_assert' is not defined no-undef - 215:5 error 'dbg_assert' is not defined no-undef - 251:33 error 'MMAP_BLOCK_BITS' is not defined no-undef - 260:33 error 'MMAP_BLOCK_BITS' is not defined no-undef - 279:5 error 'dbg_log' is not defined no-undef - 279:37 error 'h' is not defined no-undef - 279:67 error 'h' is not defined no-undef - 279:79 error 'LOG_IO' is not defined no-undef - 281:5 error 'dbg_assert' is not defined no-undef - 281:24 error 'MMAP_BLOCK_SIZE' is not defined no-undef - 282:5 error 'dbg_assert' is not defined no-undef - 282:32 error 'MMAP_BLOCK_SIZE' is not defined no-undef - 290:33 error 'MMAP_BLOCK_BITS' is not defined no-undef - 299:17 error 'MMAP_BLOCK_SIZE' is not defined no-undef - 308:50 error 'LOG_ALL_IO' is not defined no-undef - 310:9 error 'dbg_log' is not defined no-undef - 311:31 error 'h' is not defined no-undef - 311:58 error 'h' is not defined no-undef - 312:13 error 'LOG_IO' is not defined no-undef - 322:51 error 'LOG_ALL_IO' is not defined no-undef - 324:9 error 'dbg_log' is not defined no-undef - 325:32 error 'h' is not defined no-undef - 325:59 error 'h' is not defined no-undef - 326:13 error 'LOG_IO' is not defined no-undef - 336:51 error 'LOG_ALL_IO' is not defined no-undef - 338:9 error 'dbg_log' is not defined no-undef - 339:32 error 'h' is not defined no-undef - 339:59 error 'h' is not defined no-undef - 340:13 error 'LOG_IO' is not defined no-undef - 350:49 error 'LOG_ALL_IO' is not defined no-undef - 352:9 error 'dbg_log' is not defined no-undef - 353:31 error 'h' is not defined no-undef - 354:13 error 'LOG_IO' is not defined no-undef - 358:5 error 'dbg_assert' is not defined no-undef - 359:5 error 'dbg_assert' is not defined no-undef - 359:83 error 'h' is not defined no-undef - 367:51 error 'LOG_ALL_IO' is not defined no-undef - 369:9 error 'dbg_log' is not defined no-undef - 370:32 error 'h' is not defined no-undef - 371:13 error 'LOG_IO' is not defined no-undef - 375:5 error 'dbg_assert' is not defined no-undef - 376:5 error 'dbg_assert' is not defined no-undef - 376:86 error 'h' is not defined no-undef - 384:51 error 'LOG_ALL_IO' is not defined no-undef - 386:9 error 'dbg_log' is not defined no-undef - 387:32 error 'h' is not defined no-undef - 388:13 error 'LOG_IO' is not defined no-undef - 392:5 error 'dbg_assert' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/ioapic.js - 43:5 error 'IOAPIC_DELIVERY_NMI' is assigned a value but never used @typescript-eslint/no-unused-vars - 46:5 error 'IOAPIC_DELIVERY_INIT' is assigned a value but never used @typescript-eslint/no-unused-vars - 75:5 error 'dbg_assert' is not defined no-undef - 75:16 error 'MMAP_BLOCK_SIZE' is not defined no-undef - 76:42 error 'MMAP_BLOCK_SIZE' is not defined no-undef - 84:17 error 'dbg_log' is not defined no-undef - 84:61 error 'h' is not defined no-undef - 84:79 error 'LOG_APIC' is not defined no-undef - 89:17 error 'dbg_log' is not defined no-undef - 89:63 error 'h' is not defined no-undef - 89:78 error 'LOG_APIC' is not defined no-undef - 90:17 error 'dbg_assert' is not defined no-undef - 94:16 error 'value' is defined but never used @typescript-eslint/no-unused-vars - 96:13 error 'dbg_assert' is not defined no-undef - 96:68 error 'h' is not defined no-undef - 112:17 error 'dbg_log' is not defined no-undef - 112:63 error 'h' is not defined no-undef - 112:78 error 'LOG_APIC' is not defined no-undef - 113:17 error 'dbg_assert' is not defined no-undef - 131:17 error 'dbg_log' is not defined no-undef - 131:64 error 'h' is not defined no-undef - 131:89 error 'h' is not defined no-undef - 131:108 error 'LOG_APIC' is not defined no-undef - 132:17 error 'dbg_assert' is not defined no-undef - 145:13 error 'dbg_log' is not defined no-undef - 145:51 error 'h' is not defined no-undef - 145:57 error 'LOG_APIC' is not defined no-undef - 181:17 error 'dbg_log' is not defined no-undef - 181:79 error 'LOG_APIC' is not defined no-undef - 192:13 error 'dbg_assert' is not defined no-undef - 203:9 error 'dbg_assert' is not defined no-undef - 203:44 error 'LOG_APIC' is not defined no-undef - 211:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 211:9 error 'APIC_LOG_VERBOSE' is not defined no-undef - 211:29 error 'dbg_log' is not defined no-undef - 211:58 error 'LOG_APIC' is not defined no-undef - 233:9 error 'dbg_assert' is not defined no-undef - 233:44 error 'LOG_APIC' is not defined no-undef - 255:9 error 'dbg_log' is not defined no-undef - 255:35 error 'LOG_APIC' is not defined no-undef - 260:9 error 'dbg_log' is not defined no-undef - 260:40 error 'LOG_APIC' is not defined no-undef - 265:9 error 'dbg_log' is not defined no-undef - 265:47 error 'LOG_APIC' is not defined no-undef - 276:13 error 'dbg_log' is not defined no-undef - 276:54 error 'h' is not defined no-undef - 276:72 error 'h' is not defined no-undef - 276:85 error 'LOG_APIC' is not defined no-undef - 280:17 error 'value' is already defined no-redeclare - 281:13 error 'dbg_log' is not defined no-undef - 281:49 error 'h' is not defined no-undef - 281:67 error 'h' is not defined no-undef - 281:80 error 'LOG_APIC' is not defined no-undef - 287:9 error 'dbg_log' is not defined no-undef - 287:60 error 'h' is not defined no-undef - 287:68 error 'LOG_APIC' is not defined no-undef - 288:9 error 'dbg_assert' is not defined no-undef - 303:9 error 'dbg_log' is not defined no-undef - 303:42 error 'LOG_APIC' is not defined no-undef - 313:13 error 'dbg_log' is not defined no-undef - 313:44 error 'h' is not defined no-undef - 313:74 error 'h' is not defined no-undef - 313:94 error 'h' is not defined no-undef - 313:114 error 'LOG_APIC' is not defined no-undef - 326:13 error 'dbg_log' is not defined no-undef - 326:39 error 'h' is not defined no-undef - 327:31 error 'h' is not defined no-undef - 328:34 error 'h' is not defined no-undef - 329:40 error 'DELIVERY_MODES' is not defined no-undef - 330:36 error 'DESTINATION_MODES' is not defined no-undef - 332:46 error 'LOG_APIC' is not defined no-undef - 339:9 error 'dbg_log' is not defined no-undef - 339:61 error 'h' is not defined no-undef - 339:77 error 'h' is not defined no-undef - 339:96 error 'LOG_APIC' is not defined no-undef - 340:9 error 'dbg_assert' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/kernel.js - 40:10 error 'load_kernel' is defined but never used @typescript-eslint/no-unused-vars - 42:5 error 'dbg_log' is not defined no-undef - 58:11 error 'syssize' is assigned a value but never used @typescript-eslint/no-unused-vars - 60:11 error 'vidmode' is assigned a value but never used @typescript-eslint/no-unused-vars - 65:9 error 'dbg_log' is not defined no-undef - 65:37 error 'h' is not defined no-undef - 75:9 error 'dbg_log' is not defined no-undef - 75:37 error 'h' is not defined no-undef - 80:5 error 'dbg_assert' is not defined no-undef - 83:5 error 'dbg_assert' is not defined no-undef - 99:5 error 'dbg_log' is not defined no-undef - 99:48 error 'h' is not defined no-undef - 100:5 error 'dbg_log' is not defined no-undef - 100:24 error 'h' is not defined no-undef - 100:48 error 'h' is not defined no-undef - 101:5 error 'dbg_log' is not defined no-undef - 101:31 error 'h' is not defined no-undef - 102:5 error 'dbg_log' is not defined no-undef - 102:34 error 'h' is not defined no-undef - 103:5 error 'dbg_log' is not defined no-undef - 103:35 error 'h' is not defined no-undef - 104:5 error 'dbg_log' is not defined no-undef - 105:5 error 'dbg_log' is not defined no-undef - 105:32 error 'h' is not defined no-undef - 106:5 error 'dbg_log' is not defined no-undef - 106:30 error 'h' is not defined no-undef - 107:5 error 'dbg_log' is not defined no-undef - 107:33 error 'h' is not defined no-undef - 107:64 error 'h' is not defined no-undef - 108:5 error 'dbg_log' is not defined no-undef - 108:31 error 'h' is not defined no-undef - 108:60 error 'h' is not defined no-undef - 109:5 error 'dbg_log' is not defined no-undef - 109:28 error 'h' is not defined no-undef - 132:5 error 'dbg_log' is not defined no-undef - 132:31 error 'h' is not defined no-undef - 135:5 error 'dbg_assert' is not defined no-undef - 138:5 error 'dbg_log' is not defined no-undef - 138:31 error 'h' is not defined no-undef - 147:5 error 'dbg_log' is not defined no-undef - 147:41 error 'h' is not defined no-undef - 160:9 error 'dbg_assert' is not defined no-undef - 168:5 error 'dbg_assert' is not defined no-undef - 217:5 error 'dbg_assert' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/lib.js - 37:5 error 'dbg_assert' is not defined no-undef - 40:45 error 'receiver' is defined but never used @typescript-eslint/no-unused-vars - 48:17 error 'dbg_assert' is not defined no-undef - 52:52 error 'receiver' is defined but never used @typescript-eslint/no-unused-vars - 54:17 error 'dbg_assert' is not defined no-undef - 67:10 error 'h' is defined but never used @typescript-eslint/no-unused-vars - 75:13 error 'str' is already defined no-redeclare - 81:10 error 'hex_dump' is defined but never used @typescript-eslint/no-unused-vars - 146:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 146:20 error 'require' is not defined no-undef - 155:5 error 'dbg_assert' is not defined no-undef - 169:13 error 'dbg_assert' is not defined no-undef - 195:9 error 'dbg_assert' is not defined no-undef - 214:17 error 't' is already defined no-redeclare - 229:5 error 'dbg_assert' is not defined no-undef - 233:4 error 'DEBUG' is not defined no-undef - 235:5 error 'dbg_assert' is not defined no-undef - 236:5 error 'dbg_assert' is not defined no-undef - 237:5 error 'dbg_assert' is not defined no-undef - 238:5 error 'dbg_assert' is not defined no-undef - 239:5 error 'dbg_assert' is not defined no-undef - 241:5 error 'dbg_assert' is not defined no-undef - 242:5 error 'dbg_assert' is not defined no-undef - 243:5 error 'dbg_assert' is not defined no-undef - 244:5 error 'dbg_assert' is not defined no-undef - 245:5 error 'dbg_assert' is not defined no-undef - 246:5 error 'dbg_assert' is not defined no-undef - 255:10 error 'ByteQueue' is defined but never used @typescript-eslint/no-unused-vars - 261:5 error 'dbg_assert' is not defined no-undef - 334:5 error 'dbg_assert' is not defined no-undef - 454:10 error 'dump_file' is defined but never used @typescript-eslint/no-unused-vars - 503:9 error 'dbg_assert' is not defined no-undef - 590:28 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 612:17 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 645:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 645:16 error 'require' is not defined no-undef - 649:9 error 'dbg_assert' is not defined no-undef - 656:30 error 'Buffer' is not defined no-undef - 662:25 error 'dbg_assert' is not defined no-undef - 663:25 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/log.js - 7:8 error 'LOG_TO_FILE' is not defined no-undef - 23:9 error 'DEBUG' is not defined no-undef - 29:21 error 'LOG_NAMES' is not defined no-undef - 43:13 error 'DEBUG' is not defined no-undef - 47:20 error 'LOG_LEVEL' is not defined no-undef - 50:33 error 'v86util' is not defined no-undef - 63:28 error 'v86util' is not defined no-undef - 64:28 error 'v86util' is not defined no-undef - 65:28 error 'v86util' is not defined no-undef - 66:28 error 'v86util' is not defined no-undef - 93:10 error 'dbg_trace' is defined but never used @typescript-eslint/no-unused-vars - 95:9 error 'DEBUG' is not defined no-undef - 105:10 error 'dbg_assert' is defined but never used @typescript-eslint/no-unused-vars - 105:32 error 'level' is defined but never used @typescript-eslint/no-unused-vars - 107:9 error 'DEBUG' is not defined no-undef - 118:5 error Unexpected 'debugger' statement no-debugger - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/main.js - 22:20 error 'CPU' is not defined no-undef - 22:43 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 103:13 error 'global' is not defined no-undef - 145:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 215:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 215:29 error 'require' is not defined no-undef - 218:40 error 'process' is not defined no-undef - 222:17 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/memory.js - 4:1 error 'CPU' is not defined no-undef - 6:50 error 'MMAP_BLOCK_BITS' is not defined no-undef - 7:5 error 'dbg_assert' is not defined no-undef - 11:1 error 'CPU' is not defined no-undef - 13:5 error 'dbg_assert' is not defined no-undef - 14:37 error 'MMAP_BLOCK_BITS' is not defined no-undef - 17:1 error 'CPU' is not defined no-undef - 19:45 error 'MMAP_BLOCK_BITS' is not defined no-undef - 21:5 error 'dbg_assert' is not defined no-undef - 25:1 error 'CPU' is not defined no-undef - 27:46 error 'MMAP_BLOCK_BITS' is not defined no-undef - 29:5 error 'dbg_assert' is not defined no-undef - 34:1 error 'CPU' is not defined no-undef - 36:33 error 'MMAP_BLOCK_BITS' is not defined no-undef - 41:1 error 'CPU' is not defined no-undef - 43:33 error 'MMAP_BLOCK_BITS' is not defined no-undef - 48:1 error 'CPU' is not defined no-undef - 50:33 error 'MMAP_BLOCK_BITS' is not defined no-undef - 52:5 error 'dbg_assert' is not defined no-undef - 52:48 error 'MMAP_BLOCK_BITS' is not defined no-undef - 59:1 error 'CPU' is not defined no-undef - 61:33 error 'MMAP_BLOCK_BITS' is not defined no-undef - 63:5 error 'dbg_assert' is not defined no-undef - 63:49 error 'MMAP_BLOCK_BITS' is not defined no-undef - 76:1 error 'CPU' is not defined no-undef - 78:5 error 'dbg_assert' is not defined no-undef - 82:9 error 'dbg_assert' is not defined no-undef - 83:9 error 'dbg_assert' is not defined no-undef - 90:1 error 'CPU' is not defined no-undef - 94:9 error 'dbg_assert' is not defined no-undef - 95:9 error 'dbg_assert' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/ne2k.js - 11:19 error 'EN0_CLDALO' is assigned a value but never used @typescript-eslint/no-unused-vars - 13:19 error 'EN0_CLDAHI' is assigned a value but never used @typescript-eslint/no-unused-vars - 18:19 error 'EN0_NCR' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:19 error 'EN0_FIFO' is assigned a value but never used @typescript-eslint/no-unused-vars - 23:19 error 'EN0_CRDALO' is assigned a value but never used @typescript-eslint/no-unused-vars - 25:19 error 'EN0_CRDAHI' is assigned a value but never used @typescript-eslint/no-unused-vars - 44:19 error 'ENISR_RX_ERR' is assigned a value but never used @typescript-eslint/no-unused-vars - 45:19 error 'ENISR_TX_ERR' is assigned a value but never used @typescript-eslint/no-unused-vars - 46:19 error 'ENISR_OVER' is assigned a value but never used @typescript-eslint/no-unused-vars - 47:19 error 'ENISR_COUNTERS' is assigned a value but never used @typescript-eslint/no-unused-vars - 50:19 error 'ENISR_ALL' is assigned a value but never used @typescript-eslint/no-unused-vars - 72:9 error 'dbg_log' is not defined no-undef - 72:57 error 'LOG_NET' is not defined no-undef - 89:9 error 'dbg_log' is not defined no-undef - 89:52 error 'LOG_NET' is not defined no-undef - 109:13 error 'dbg_log' is not defined no-undef - 109:74 error 'LOG_NET' is not defined no-undef - 114:9 error 'dbg_assert' is not defined no-undef - 125:13 error 'dbg_log' is not defined no-undef - 125:100 error 'h' is not defined no-undef - 125:116 error 'LOG_NET' is not defined no-undef - 135:21 error 'dbg_log' is not defined no-undef - 135:66 error 'h' is not defined no-undef - 146:21 error 'dbg_log' is not defined no-undef - 146:59 error 'LOG_NET' is not defined no-undef - 179:25 error 'dbg_log' is not defined no-undef - 179:73 error 'LOG_NET' is not defined no-undef - 204:9 error 'dbg_log' is not defined no-undef - 204:144 error 'LOG_NET' is not defined no-undef - 213:13 error 'dbg_log' is not defined no-undef - 213:47 error 'LOG_NET' is not defined no-undef - 260:17 error 'dbg_log' is not defined no-undef - 260:76 error 'h' is not defined no-undef - 260:134 error 'h' is not defined no-undef - 260:240 error 'h' is not defined no-undef - 264:17 error 'dbg_log' is not defined no-undef - 264:76 error 'h' is not defined no-undef - 264:134 error 'h' is not defined no-undef - 264:240 error 'h' is not defined no-undef - 268:9 error Empty block statement no-empty - 272:13 error 'dbg_log' is not defined no-undef - 272:72 error 'h' is not defined no-undef - 272:130 error 'h' is not defined no-undef - 277:15 error 'arp_packet' is assigned a value but never used @typescript-eslint/no-unused-vars - 278:9 error 'dbg_log' is not defined no-undef - 278:68 error 'h' is not defined no-undef - 280:5 error 'dbg_log' is not defined no-undef - 280:13 error 'hex_dump' is not defined no-undef - 377:5 error 'dbg_log' is not defined no-undef - 377:45 error 'LOG_NET' is not defined no-undef - 391:9 error 'dbg_log' is not defined no-undef - 391:29 error 'LOG_NET' is not defined no-undef - 398:9 error 'dbg_log' is not defined no-undef - 398:37 error 'h' is not defined no-undef - 398:95 error 'h' is not defined no-undef - 398:112 error 'LOG_NET' is not defined no-undef - 431:13 error 'dbg_log' is not defined no-undef - 431:52 error 'h' is not defined no-undef - 431:72 error 'LOG_NET' is not defined no-undef - 440:13 error 'dbg_log' is not defined no-undef - 440:34 error 'LOG_NET' is not defined no-undef - 445:13 error 'dbg_log' is not defined no-undef - 445:47 error 'LOG_NET' is not defined no-undef - 455:13 error 'dbg_log' is not defined no-undef - 455:34 error 'LOG_NET' is not defined no-undef - 460:13 error 'dbg_log' is not defined no-undef - 460:48 error 'LOG_NET' is not defined no-undef - 465:9 error 'dbg_log' is not defined no-undef - 465:58 error 'LOG_NET' is not defined no-undef - 476:13 error 'dbg_log' is not defined no-undef - 476:34 error 'LOG_NET' is not defined no-undef - 481:13 error 'dbg_log' is not defined no-undef - 481:47 error 'LOG_NET' is not defined no-undef - 488:13 error 'pg' is assigned a value but never used @typescript-eslint/no-unused-vars - 489:9 error 'dbg_log' is not defined no-undef - 489:31 error 'LOG_NET' is not defined no-undef - 496:13 error 'pg' is assigned a value but never used @typescript-eslint/no-unused-vars - 497:9 error 'dbg_log' is not defined no-undef - 497:35 error 'h' is not defined no-undef - 497:52 error 'LOG_NET' is not defined no-undef - 510:13 error 'dbg_log' is not defined no-undef - 510:45 error 'LOG_NET' is not defined no-undef - 519:13 error 'dbg_log' is not defined no-undef - 520:13 error 'dbg_assert' is not defined no-undef - 530:13 error 'dbg_log' is not defined no-undef - 530:38 error 'h' is not defined no-undef - 530:55 error 'LOG_NET' is not defined no-undef - 535:13 error 'dbg_log' is not defined no-undef - 535:35 error 'h' is not defined no-undef - 535:49 error 'LOG_NET' is not defined no-undef - 540:13 error 'dbg_log' is not defined no-undef - 540:64 error 'h' is not defined no-undef - 540:78 error 'LOG_NET' is not defined no-undef - 544:13 error 'dbg_log' is not defined no-undef - 544:49 error 'h' is not defined no-undef - 544:63 error 'LOG_NET' is not defined no-undef - 545:13 error 'dbg_assert' is not defined no-undef - 559:13 error 'dbg_log' is not defined no-undef - 559:45 error 'LOG_NET' is not defined no-undef - 568:13 error 'dbg_log' is not defined no-undef - 568:45 error 'LOG_NET' is not defined no-undef - 569:13 error 'dbg_assert' is not defined no-undef - 579:13 error 'dbg_log' is not defined no-undef - 579:37 error 'h' is not defined no-undef - 579:54 error 'LOG_NET' is not defined no-undef - 583:17 error 'dbg_log' is not defined no-undef - 583:58 error 'h' is not defined no-undef - 583:72 error 'LOG_NET' is not defined no-undef - 589:13 error 'dbg_log' is not defined no-undef - 589:35 error 'h' is not defined no-undef - 589:49 error 'LOG_NET' is not defined no-undef - 594:13 error 'dbg_log' is not defined no-undef - 594:49 error 'h' is not defined no-undef - 594:63 error 'LOG_NET' is not defined no-undef - 595:13 error 'dbg_assert' is not defined no-undef - 604:13 error 'dbg_log' is not defined no-undef - 604:36 error 'h' is not defined no-undef - 604:52 error 'LOG_NET' is not defined no-undef - 609:13 error 'dbg_log' is not defined no-undef - 609:38 error 'h' is not defined no-undef - 609:56 error 'LOG_NET' is not defined no-undef - 614:13 error 'dbg_assert' is not defined no-undef - 625:13 error 'dbg_log' is not defined no-undef - 625:37 error 'h' is not defined no-undef - 625:54 error 'LOG_NET' is not defined no-undef - 631:13 error 'dbg_log' is not defined no-undef - 631:39 error 'h' is not defined no-undef - 631:56 error 'LOG_NET' is not defined no-undef - 636:13 error 'dbg_assert' is not defined no-undef - 646:13 error 'dbg_log' is not defined no-undef - 646:43 error 'h' is not defined no-undef - 646:60 error 'LOG_NET' is not defined no-undef - 650:13 error 'dbg_log' is not defined no-undef - 650:63 error 'h' is not defined no-undef - 650:80 error 'LOG_NET' is not defined no-undef - 659:13 error 'dbg_log' is not defined no-undef - 659:52 error 'h' is not defined no-undef - 659:69 error 'LOG_NET' is not defined no-undef - 664:13 error 'dbg_log' is not defined no-undef - 664:63 error 'h' is not defined no-undef - 664:80 error 'LOG_NET' is not defined no-undef - 673:13 error 'dbg_log' is not defined no-undef - 673:36 error 'LOG_NET' is not defined no-undef - 678:13 error 'dbg_log' is not defined no-undef - 678:34 error 'LOG_NET' is not defined no-undef - 683:13 error 'dbg_assert' is not defined no-undef - 693:13 error 'dbg_log' is not defined no-undef - 693:55 error 'h' is not defined no-undef - 693:72 error 'LOG_NET' is not defined no-undef - 698:13 error 'dbg_log' is not defined no-undef - 698:63 error 'h' is not defined no-undef - 698:80 error 'LOG_NET' is not defined no-undef - 707:13 error 'dbg_log' is not defined no-undef - 707:36 error 'LOG_NET' is not defined no-undef - 712:13 error 'dbg_log' is not defined no-undef - 712:34 error 'LOG_NET' is not defined no-undef - 717:13 error 'dbg_assert' is not defined no-undef - 727:13 error 'dbg_log' is not defined no-undef - 727:56 error 'h' is not defined no-undef - 727:73 error 'LOG_NET' is not defined no-undef - 732:13 error 'dbg_log' is not defined no-undef - 732:63 error 'h' is not defined no-undef - 732:80 error 'LOG_NET' is not defined no-undef - 741:13 error 'dbg_log' is not defined no-undef - 741:54 error 'LOG_NET' is not defined no-undef - 746:13 error 'dbg_log' is not defined no-undef - 746:34 error 'LOG_NET' is not defined no-undef - 751:13 error 'dbg_log' is not defined no-undef - 751:60 error 'LOG_NET' is not defined no-undef - 752:13 error 'dbg_assert' is not defined no-undef - 762:13 error 'dbg_log' is not defined no-undef - 762:58 error 'h' is not defined no-undef - 762:75 error 'LOG_NET' is not defined no-undef - 767:13 error 'dbg_log' is not defined no-undef - 767:63 error 'h' is not defined no-undef - 767:80 error 'LOG_NET' is not defined no-undef - 776:13 error 'dbg_log' is not defined no-undef - 776:55 error 'LOG_NET' is not defined no-undef - 781:13 error 'dbg_log' is not defined no-undef - 781:34 error 'LOG_NET' is not defined no-undef - 786:13 error 'dbg_log' is not defined no-undef - 786:60 error 'LOG_NET' is not defined no-undef - 787:13 error 'dbg_assert' is not defined no-undef - 797:13 error 'dbg_log' is not defined no-undef - 797:58 error 'h' is not defined no-undef - 797:75 error 'LOG_NET' is not defined no-undef - 802:13 error 'dbg_log' is not defined no-undef - 802:63 error 'h' is not defined no-undef - 802:80 error 'LOG_NET' is not defined no-undef - 811:13 error 'dbg_log' is not defined no-undef - 811:57 error 'h' is not defined no-undef - 811:85 error 'h' is not defined no-undef - 811:101 error 'LOG_NET' is not defined no-undef - 817:13 error 'dbg_log' is not defined no-undef - 817:63 error 'h' is not defined no-undef - 817:80 error 'LOG_NET' is not defined no-undef - 826:13 error 'dbg_log' is not defined no-undef - 826:41 error 'h' is not defined no-undef - 826:62 error 'LOG_NET' is not defined no-undef - 831:13 error 'dbg_log' is not defined no-undef - 831:45 error 'LOG_NET' is not defined no-undef - 836:13 error 'dbg_log' is not defined no-undef - 836:61 error 'LOG_NET' is not defined no-undef - 841:13 error 'dbg_log' is not defined no-undef - 841:45 error 'LOG_NET' is not defined no-undef - 842:13 error 'dbg_assert' is not defined no-undef - 852:13 error 'dbg_log' is not defined no-undef - 852:42 error 'h' is not defined no-undef - 852:59 error 'LOG_NET' is not defined no-undef - 857:13 error 'dbg_log' is not defined no-undef - 857:35 error 'h' is not defined no-undef - 857:49 error 'LOG_NET' is not defined no-undef - 862:13 error 'dbg_log' is not defined no-undef - 862:49 error 'h' is not defined no-undef - 862:63 error 'LOG_NET' is not defined no-undef - 863:13 error 'dbg_assert' is not defined no-undef - 876:13 error 'dbg_log' is not defined no-undef - 876:45 error 'LOG_NET' is not defined no-undef - 881:13 error 'dbg_log' is not defined no-undef - 881:45 error 'LOG_NET' is not defined no-undef - 882:13 error 'dbg_assert' is not defined no-undef - 892:13 error 'dbg_log' is not defined no-undef - 892:38 error 'h' is not defined no-undef - 892:55 error 'LOG_NET' is not defined no-undef - 897:13 error 'dbg_log' is not defined no-undef - 897:35 error 'h' is not defined no-undef - 897:49 error 'LOG_NET' is not defined no-undef - 902:13 error 'dbg_log' is not defined no-undef - 902:49 error 'h' is not defined no-undef - 902:63 error 'LOG_NET' is not defined no-undef - 903:13 error 'dbg_assert' is not defined no-undef - 912:13 error 'dbg_log' is not defined no-undef - 912:88 error 'LOG_NET' is not defined no-undef - 917:13 error 'dbg_log' is not defined no-undef - 917:45 error 'LOG_NET' is not defined no-undef - 922:13 error 'dbg_log' is not defined no-undef - 922:61 error 'LOG_NET' is not defined no-undef - 927:13 error 'dbg_log' is not defined no-undef - 927:45 error 'LOG_NET' is not defined no-undef - 928:13 error 'dbg_assert' is not defined no-undef - 938:13 error 'dbg_log' is not defined no-undef - 938:42 error 'h' is not defined no-undef - 938:59 error 'LOG_NET' is not defined no-undef - 943:13 error 'dbg_log' is not defined no-undef - 943:35 error 'h' is not defined no-undef - 943:49 error 'LOG_NET' is not defined no-undef - 948:13 error 'dbg_log' is not defined no-undef - 948:65 error 'h' is not defined no-undef - 948:79 error 'LOG_NET' is not defined no-undef - 952:13 error 'dbg_log' is not defined no-undef - 952:49 error 'h' is not defined no-undef - 952:63 error 'LOG_NET' is not defined no-undef - 953:13 error 'dbg_assert' is not defined no-undef - 962:13 error 'dbg_assert' is not defined no-undef - 967:13 error 'dbg_log' is not defined no-undef - 967:45 error 'LOG_NET' is not defined no-undef - 972:13 error 'dbg_log' is not defined no-undef - 972:61 error 'LOG_NET' is not defined no-undef - 977:13 error 'dbg_log' is not defined no-undef - 977:45 error 'LOG_NET' is not defined no-undef - 978:13 error 'dbg_assert' is not defined no-undef - 988:13 error 'dbg_log' is not defined no-undef - 988:43 error 'h' is not defined no-undef - 988:60 error 'LOG_NET' is not defined no-undef - 993:13 error 'dbg_log' is not defined no-undef - 993:35 error 'h' is not defined no-undef - 993:49 error 'LOG_NET' is not defined no-undef - 998:13 error 'dbg_log' is not defined no-undef - 998:65 error 'h' is not defined no-undef - 998:79 error 'LOG_NET' is not defined no-undef - 1002:13 error 'dbg_log' is not defined no-undef - 1002:49 error 'h' is not defined no-undef - 1002:63 error 'LOG_NET' is not defined no-undef - 1003:13 error 'dbg_assert' is not defined no-undef - 1016:13 error 'dbg_log' is not defined no-undef - 1016:34 error 'LOG_NET' is not defined no-undef - 1021:13 error 'dbg_log' is not defined no-undef - 1021:60 error 'LOG_NET' is not defined no-undef - 1022:13 error 'dbg_assert' is not defined no-undef - 1032:13 error 'dbg_log' is not defined no-undef - 1032:54 error 'h' is not defined no-undef - 1032:71 error 'LOG_NET' is not defined no-undef - 1037:13 error 'dbg_log' is not defined no-undef - 1037:64 error 'h' is not defined no-undef - 1037:78 error 'LOG_NET' is not defined no-undef - 1109:9 error 'dbg_log' is not defined no-undef - 1111:50 error 'LOG_NET' is not defined no-undef - 1118:5 error 'dbg_log' is not defined no-undef - 1118:31 error 'h' is not defined no-undef - 1118:46 error 'LOG_NET' is not defined no-undef - 1139:9 error 'dbg_log' is not defined no-undef - 1139:44 error 'h' is not defined no-undef - 1140:44 error 'h' is not defined no-undef - 1141:44 error 'h' is not defined no-undef - 1141:61 error 'LOG_NET' is not defined no-undef - 1192:9 error 'dbg_log' is not defined no-undef - 1192:43 error 'h' is not defined no-undef - 1193:43 error 'h' is not defined no-undef - 1194:43 error 'h' is not defined no-undef - 1194:60 error 'LOG_NET' is not defined no-undef - 1272:5 error Empty block statement no-empty - 1305:9 error 'dbg_log' is not defined no-undef - 1305:58 error 'h' is not defined no-undef - 1305:87 error 'h' is not defined no-undef - 1306:25 error 'h' is not defined no-undef - 1306:54 error 'h' is not defined no-undef - 1306:81 error 'h' is not defined no-undef - 1306:116 error 'h' is not defined no-undef - 1306:130 error 'LOG_NET' is not defined no-undef - 1314:9 error 'dbg_assert' is not defined no-undef - 1317:9 error 'dbg_assert' is not defined no-undef - 1321:9 error 'dbg_log' is not defined no-undef - 1321:30 error 'h' is not defined no-undef - 1321:38 error 'LOG_NET' is not defined no-undef - 1346:5 error 'dbg_log' is not defined no-undef - 1346:29 error 'h' is not defined no-undef - 1346:51 error 'h' is not defined no-undef - 1346:80 error 'h' is not defined no-undef - 1346:89 error 'LOG_NET' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/pci.js - 122:17 error 'dbg_log' is not defined no-undef - 229:17 error 'dbg_log' is not defined no-undef - 234:17 error 'dbg_log' is not defined no-undef - 235:73 error 'h' is not defined no-undef - 282:27 error 'h' is not defined no-undef - 283:27 error 'h' is not defined no-undef - 284:28 error 'h' is not defined no-undef - 302:27 error 'h' is not defined no-undef - 302:69 error 'h' is not defined no-undef - 311:9 error 'dbg_log' is not defined no-undef - 311:27 error 'LOG_PCI' is not defined no-undef - 333:5 error 'dbg_assert' is not defined no-undef - 334:66 error 'h' is not defined no-undef - 336:5 error 'dbg_log' is not defined no-undef - 336:33 error 'h' is not defined no-undef - 336:83 error 'h' is not defined no-undef - 337:25 error 'h' is not defined no-undef - 337:40 error 'LOG_PCI' is not defined no-undef - 344:5 error 'dbg_assert' is not defined no-undef - 360:9 error 'dbg_log' is not defined no-undef - 360:77 error 'h' is not defined no-undef - 364:5 error 'dbg_assert' is not defined no-undef - 365:60 error 'h' is not defined no-undef - 367:5 error 'dbg_log' is not defined no-undef - 367:33 error 'h' is not defined no-undef - 367:83 error 'h' is not defined no-undef - 368:25 error 'h' is not defined no-undef - 368:40 error 'LOG_PCI' is not defined no-undef - 375:5 error 'dbg_assert' is not defined no-undef - 393:9 error 'dbg_log' is not defined no-undef - 394:17 error 'h' is not defined no-undef - 394:46 error 'h' is not defined no-undef - 394:90 error 'LOG_PCI' is not defined no-undef - 398:13 error 'dbg_assert' is not defined no-undef - 422:25 error 'dbg_log' is not defined no-undef - 422:88 error 'LOG_PCI' is not defined no-undef - 433:17 error 'dbg_assert' is not defined no-undef - 437:17 error 'dbg_log' is not defined no-undef - 437:50 error 'h' is not defined no-undef - 438:34 error 'h' is not defined no-undef - 438:72 error 'LOG_PCI' is not defined no-undef - 448:9 error 'dbg_log' is not defined no-undef - 448:43 error 'h' is not defined no-undef - 448:70 error 'LOG_PCI' is not defined no-undef - 452:9 error 'dbg_log' is not defined no-undef - 452:48 error 'h' is not defined no-undef - 453:29 error 'h' is not defined no-undef - 453:50 error 'LOG_PCI' is not defined no-undef - 473:9 error 'dbg_log' is not defined no-undef - 473:36 error 'h' is not defined no-undef - 473:86 error 'h' is not defined no-undef - 474:29 error 'h' is not defined no-undef - 474:50 error 'LOG_PCI' is not defined no-undef - 478:9 error 'dbg_log' is not defined no-undef - 478:36 error 'h' is not defined no-undef - 478:86 error 'h' is not defined no-undef - 479:29 error 'h' is not defined no-undef - 479:50 error 'LOG_PCI' is not defined no-undef - 486:5 error 'dbg_assert' is not defined no-undef - 487:5 error 'dbg_assert' is not defined no-undef - 488:5 error 'dbg_assert' is not defined no-undef - 492:5 error 'dbg_log' is not defined no-undef - 492:35 error 'h' is not defined no-undef - 492:76 error 'LOG_PCI' is not defined no-undef - 494:5 error 'dbg_assert' is not defined no-undef - 495:5 error 'dbg_assert' is not defined no-undef - 496:5 error 'dbg_assert' is not defined no-undef - 527:13 error 'dbg_assert' is not defined no-undef - 543:5 error 'dbg_log' is not defined no-undef - 543:37 error 'h' is not defined no-undef - 543:56 error 'h' is not defined no-undef - 543:83 error 'LOG_PCI' is not defined no-undef - 564:13 error 'dbg_log' is not defined no-undef - 564:71 error 'h' is not defined no-undef - 564:87 error 'LOG_PCI' is not defined no-undef - 569:9 error 'dbg_assert' is not defined no-undef - 585:13 error 'dbg_log' is not defined no-undef - 585:75 error 'h' is not defined no-undef - 585:89 error 'LOG_PCI' is not defined no-undef - 593:5 error 'dbg_assert' is not defined no-undef - 608:5 error 'dbg_assert' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/pit.js - 40:19 error 'v86' is not defined no-undef - 115:13 error 'dbg_log' is not defined no-undef - 115:81 error 'LOG_PIT' is not defined no-undef - 159:5 error 'dbg_log' is not defined no-undef - 159:116 error 'LOG_PIT' is not defined no-undef - 165:9 error 'dbg_log' is not defined no-undef - 165:99 error 'LOG_PIT' is not defined no-undef - 183:9 error 'dbg_log' is not defined no-undef - 218:47 error 'v86' is not defined no-undef - 255:38 error 'v86' is not defined no-undef - 257:9 error 'dbg_log' is not defined no-undef - 257:46 error 'h' is not defined no-undef - 258:90 error 'LOG_PIT' is not defined no-undef - 276:9 error 'dbg_log' is not defined no-undef - 276:41 error 'LOG_PIT' is not defined no-undef - 281:9 error 'dbg_log' is not defined no-undef - 281:44 error 'LOG_PIT' is not defined no-undef - 289:47 error 'v86' is not defined no-undef - 290:9 error 'dbg_log' is not defined no-undef - 290:36 error 'LOG_PIT' is not defined no-undef - 302:5 error 'dbg_log' is not defined no-undef - 303:64 error 'LOG_PIT' is not defined no-undef - 327:5 error Empty block statement no-empty - 335:9 error 'dbg_log' is not defined no-undef - 335:50 error 'h' is not defined no-undef - 335:59 error 'LOG_PIT' is not defined no-undef - 351:5 error 'dbg_log' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/ps2.js - 62:27 error 'ByteQueue' is not defined no-undef - 93:29 error 'ByteQueue' is not defined no-undef - 243:9 error 'dbg_log' is not defined no-undef - 243:30 error 'LOG_PS2' is not defined no-undef - 260:9 error 'dbg_log' is not defined no-undef - 260:33 error 'LOG_PS2' is not defined no-undef - 274:9 error 'dbg_log' is not defined no-undef - 274:39 error 'h' is not defined no-undef - 274:48 error 'LOG_PS2' is not defined no-undef - 301:17 error 'now' is assigned a value but never used @typescript-eslint/no-unused-vars - 372:9 error 'dbg_log' is not defined no-undef - 372:65 error 'LOG_PS2' is not defined no-undef - 410:9 error 'dbg_log' is not defined no-undef - 410:40 error 'LOG_PS2' is not defined no-undef - 418:9 error 'dbg_log' is not defined no-undef - 418:44 error 'h' is not defined no-undef - 418:70 error 'LOG_PS2' is not defined no-undef - 424:9 error 'dbg_log' is not defined no-undef - 424:44 error 'h' is not defined no-undef - 424:70 error 'LOG_PS2' is not defined no-undef - 450:5 error 'dbg_log' is not defined no-undef - 450:32 error 'h' is not defined no-undef - 450:48 error 'LOG_PS2' is not defined no-undef - 457:5 error 'dbg_log' is not defined no-undef - 457:33 error 'h' is not defined no-undef - 457:48 error 'LOG_PS2' is not defined no-undef - 468:9 error 'dbg_log' is not defined no-undef - 468:50 error 'h' is not defined no-undef - 468:76 error 'LOG_PS2' is not defined no-undef - 522:9 error 'dbg_log' is not defined no-undef - 522:41 error 'h' is not defined no-undef - 522:74 error 'h' is not defined no-undef - 522:92 error 'LOG_PS2' is not defined no-undef - 526:13 error 'dbg_log' is not defined no-undef - 526:58 error 'LOG_PS2' is not defined no-undef - 541:13 error 'dbg_log' is not defined no-undef - 541:59 error 'LOG_PS2' is not defined no-undef - 546:13 error 'dbg_log' is not defined no-undef - 546:55 error 'LOG_PS2' is not defined no-undef - 583:9 error 'dbg_log' is not defined no-undef - 583:51 error 'h' is not defined no-undef - 583:66 error 'LOG_PS2' is not defined no-undef - 599:13 error 'dbg_log' is not defined no-undef - 599:36 error 'LOG_PS2' is not defined no-undef - 604:13 error 'dbg_log' is not defined no-undef - 604:36 error 'LOG_PS2' is not defined no-undef - 617:13 error 'dbg_log' is not defined no-undef - 617:60 error 'LOG_PS2' is not defined no-undef - 622:13 error 'dbg_log' is not defined no-undef - 622:39 error 'h' is not defined no-undef - 622:57 error 'LOG_PS2' is not defined no-undef - 654:13 error 'dbg_log' is not defined no-undef - 654:36 error 'LOG_PS2' is not defined no-undef - 675:13 error 'dbg_log' is not defined no-undef - 675:55 error 'h' is not defined no-undef - 675:70 error 'LOG_PS2' is not defined no-undef - 689:9 error 'dbg_log' is not defined no-undef - 689:51 error 'h' is not defined no-undef - 689:66 error 'LOG_PS2' is not defined no-undef - 716:13 error 'dbg_log' is not defined no-undef - 716:44 error 'LOG_PS2' is not defined no-undef - 721:13 error 'dbg_log' is not defined no-undef - 721:45 error 'LOG_PS2' is not defined no-undef - 735:13 error 'dbg_log' is not defined no-undef - 735:58 error 'h' is not defined no-undef - 735:73 error 'LOG_PS2' is not defined no-undef - 744:5 error 'dbg_log' is not defined no-undef - 744:33 error 'h' is not defined no-undef - 744:48 error 'LOG_PS2' is not defined no-undef - 768:9 error 'dbg_log' is not defined no-undef - 768:40 error 'LOG_PS2' is not defined no-undef - 773:9 error 'dbg_log' is not defined no-undef - 773:39 error 'LOG_PS2' is not defined no-undef - 798:9 error 'dbg_log' is not defined no-undef - 798:37 error 'LOG_PS2' is not defined no-undef - 803:9 error 'dbg_log' is not defined no-undef - 803:36 error 'LOG_PS2' is not defined no-undef - 807:9 error 'dbg_log' is not defined no-undef - 811:9 error 'dbg_log' is not defined no-undef - 811:59 error 'h' is not defined no-undef - 811:74 error 'LOG_PS2' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/rtc.js - 17:19 error 'CMOS_RESET_CODE' is assigned a value but never used @typescript-eslint/no-unused-vars - 19:19 error 'CMOS_FLOPPY_DRIVE_TYPE' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:19 error 'CMOS_DISK_DATA' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:19 error 'CMOS_EQUIPMENT_INFO' is assigned a value but never used @typescript-eslint/no-unused-vars - 22:19 error 'CMOS_MEM_BASE_LOW' is assigned a value but never used @typescript-eslint/no-unused-vars - 23:19 error 'CMOS_MEM_BASE_HIGH' is assigned a value but never used @typescript-eslint/no-unused-vars - 24:19 error 'CMOS_MEM_OLD_EXT_LOW' is assigned a value but never used @typescript-eslint/no-unused-vars - 25:19 error 'CMOS_MEM_OLD_EXT_HIGH' is assigned a value but never used @typescript-eslint/no-unused-vars - 26:19 error 'CMOS_DISK_DRIVE1_TYPE' is assigned a value but never used @typescript-eslint/no-unused-vars - 27:19 error 'CMOS_DISK_DRIVE2_TYPE' is assigned a value but never used @typescript-eslint/no-unused-vars - 28:19 error 'CMOS_DISK_DRIVE1_CYL' is assigned a value but never used @typescript-eslint/no-unused-vars - 29:19 error 'CMOS_DISK_DRIVE2_CYL' is assigned a value but never used @typescript-eslint/no-unused-vars - 30:19 error 'CMOS_MEM_EXTMEM_LOW' is assigned a value but never used @typescript-eslint/no-unused-vars - 31:19 error 'CMOS_MEM_EXTMEM_HIGH' is assigned a value but never used @typescript-eslint/no-unused-vars - 33:19 error 'CMOS_MEM_EXTMEM2_LOW' is assigned a value but never used @typescript-eslint/no-unused-vars - 34:19 error 'CMOS_MEM_EXTMEM2_HIGH' is assigned a value but never used @typescript-eslint/no-unused-vars - 36:19 error 'CMOS_BIOS_BOOTFLAG1' is assigned a value but never used @typescript-eslint/no-unused-vars - 37:19 error 'CMOS_BIOS_DISKTRANSFLAG' is assigned a value but never used @typescript-eslint/no-unused-vars - 38:19 error 'CMOS_BIOS_BOOTFLAG2' is assigned a value but never used @typescript-eslint/no-unused-vars - 39:19 error 'CMOS_MEM_HIGHMEM_LOW' is assigned a value but never used @typescript-eslint/no-unused-vars - 40:19 error 'CMOS_MEM_HIGHMEM_MID' is assigned a value but never used @typescript-eslint/no-unused-vars - 41:19 error 'CMOS_MEM_HIGHMEM_HIGH' is assigned a value but never used @typescript-eslint/no-unused-vars - 42:19 error 'CMOS_BIOS_SMP_COUNT' is assigned a value but never used @typescript-eslint/no-unused-vars - 45:7 error 'BOOT_ORDER_CD_FIRST' is assigned a value but never used @typescript-eslint/no-unused-vars - 46:7 error 'BOOT_ORDER_HD_FIRST' is assigned a value but never used @typescript-eslint/no-unused-vars - 47:7 error 'BOOT_ORDER_FD_FIRST' is assigned a value but never used @typescript-eslint/no-unused-vars - 129:38 error 'legacy_mode' is defined but never used @typescript-eslint/no-unused-vars - 188:5 error 'dbg_assert' is not defined no-undef - 189:5 error 'dbg_assert' is not defined no-undef - 190:5 error 'dbg_assert' is not defined no-undef - 236:13 error 'dbg_log' is not defined no-undef - 236:39 error 'h' is not defined no-undef - 236:101 error 'LOG_RTC' is not defined no-undef - 239:13 error 'dbg_log' is not defined no-undef - 239:39 error 'h' is not defined no-undef - 239:101 error 'LOG_RTC' is not defined no-undef - 242:13 error 'dbg_log' is not defined no-undef - 242:37 error 'h' is not defined no-undef - 242:97 error 'LOG_RTC' is not defined no-undef - 246:13 error 'dbg_log' is not defined no-undef - 246:36 error 'h' is not defined no-undef - 246:98 error 'LOG_RTC' is not defined no-undef - 249:13 error 'dbg_log' is not defined no-undef - 249:45 error 'h' is not defined no-undef - 249:104 error 'LOG_RTC' is not defined no-undef - 252:13 error 'dbg_log' is not defined no-undef - 252:38 error 'h' is not defined no-undef - 252:102 error 'LOG_RTC' is not defined no-undef - 255:13 error 'dbg_log' is not defined no-undef - 255:37 error 'h' is not defined no-undef - 255:106 error 'LOG_RTC' is not defined no-undef - 259:16 error 'v86' is not defined no-undef - 278:13 error 'dbg_log' is not defined no-undef - 278:40 error 'LOG_RTC' is not defined no-undef - 292:13 error 'dbg_log' is not defined no-undef - 292:40 error 'h' is not defined no-undef - 292:113 error 'LOG_RTC' is not defined no-undef - 296:13 error 'dbg_log' is not defined no-undef - 296:47 error 'h' is not defined no-undef - 296:57 error 'LOG_RTC' is not defined no-undef - 309:13 error 'dbg_log' is not defined no-undef - 309:48 error 'h' is not defined no-undef - 309:107 error 'LOG_RTC' is not defined no-undef - 332:17 error 'dbg_log' is not defined no-undef - 334:56 error 'LOG_RTC' is not defined no-undef - 339:36 error 'dbg_log' is not defined no-undef - 339:80 error 'LOG_RTC' is not defined no-undef - 341:13 error 'dbg_log' is not defined no-undef - 341:33 error 'h' is not defined no-undef - 341:52 error 'LOG_RTC' is not defined no-undef - 351:13 error 'dbg_log' is not defined no-undef - 351:43 error 'h' is not defined no-undef - 351:71 error 'h' is not defined no-undef - 351:85 error 'LOG_RTC' is not defined no-undef - 362:5 error 'dbg_assert' is not defined no-undef - 372:5 error 'dbg_log' is not defined no-undef - 372:23 error 'h' is not defined no-undef - 372:43 error 'h' is not defined no-undef - 372:53 error 'LOG_RTC' is not defined no-undef - 373:5 error 'dbg_assert' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/sb16.js - 75:15 error 'SB_IRQ_MIDI' is assigned a value but never used @typescript-eslint/no-unused-vars - 76:15 error 'SB_IRQ_MPU' is assigned a value but never used @typescript-eslint/no-unused-vars - 104:29 error 'ByteQueue' is not defined no-undef - 105:28 error 'ByteQueue' is not defined no-undef - 133:11 error 'FloatQueue' is not defined no-undef - 134:11 error 'FloatQueue' is not defined no-undef - 153:31 error 'v86util' is not defined no-undef - 168:32 error 'ByteQueue' is not defined no-undef - 402:31 error 'v86util' is not defined no-undef - 420:5 error 'dbg_log' is not defined no-undef - 420:63 error 'LOG_SB16' is not defined no-undef - 426:5 error 'dbg_log' is not defined no-undef - 426:58 error 'LOG_SB16' is not defined no-undef - 432:5 error 'dbg_log' is not defined no-undef - 432:72 error 'LOG_SB16' is not defined no-undef - 438:5 error 'dbg_log' is not defined no-undef - 438:64 error 'LOG_SB16' is not defined no-undef - 445:5 error 'dbg_log' is not defined no-undef - 445:45 error 'LOG_SB16' is not defined no-undef - 452:5 error 'dbg_log' is not defined no-undef - 452:42 error 'LOG_SB16' is not defined no-undef - 458:5 error 'dbg_log' is not defined no-undef - 458:39 error 'LOG_SB16' is not defined no-undef - 464:5 error 'dbg_log' is not defined no-undef - 464:39 error 'LOG_SB16' is not defined no-undef - 470:5 error 'dbg_log' is not defined no-undef - 470:63 error 'LOG_SB16' is not defined no-undef - 476:5 error 'dbg_log' is not defined no-undef - 476:58 error 'LOG_SB16' is not defined no-undef - 484:5 error 'dbg_log' is not defined no-undef - 484:36 error 'LOG_SB16' is not defined no-undef - 489:5 error 'dbg_log' is not defined no-undef - 489:57 error 'h' is not defined no-undef - 489:151 error 'LOG_SB16' is not defined no-undef - 495:5 error 'dbg_log' is not defined no-undef - 495:39 error 'LOG_SB16' is not defined no-undef - 503:5 error 'dbg_log' is not defined no-undef - 503:46 error 'LOG_SB16' is not defined no-undef - 510:5 error 'dbg_log' is not defined no-undef - 510:39 error 'LOG_SB16' is not defined no-undef - 519:5 error 'dbg_log' is not defined no-undef - 519:61 error 'LOG_SB16' is not defined no-undef - 531:5 error 'dbg_log' is not defined no-undef - 531:40 error 'LOG_SB16' is not defined no-undef - 540:5 error 'dbg_log' is not defined no-undef - 540:69 error 'h' is not defined no-undef - 540:79 error 'LOG_SB16' is not defined no-undef - 547:5 error 'dbg_log' is not defined no-undef - 547:66 error 'h' is not defined no-undef - 547:76 error 'LOG_SB16' is not defined no-undef - 559:5 error 'dbg_log' is not defined no-undef - 559:69 error 'h' is not defined no-undef - 559:79 error 'LOG_SB16' is not defined no-undef - 566:5 error 'dbg_log' is not defined no-undef - 566:65 error 'h' is not defined no-undef - 566:75 error 'LOG_SB16' is not defined no-undef - 578:5 error 'dbg_log' is not defined no-undef - 578:45 error 'h' is not defined no-undef - 578:55 error 'LOG_SB16' is not defined no-undef - 585:5 error 'dbg_log' is not defined no-undef - 585:42 error 'h' is not defined no-undef - 585:52 error 'LOG_SB16' is not defined no-undef - 593:5 error 'dbg_log' is not defined no-undef - 593:37 error 'h' is not defined no-undef - 593:51 error 'LOG_SB16' is not defined no-undef - 597:9 error 'dbg_log' is not defined no-undef - 597:39 error 'LOG_SB16' is not defined no-undef - 602:9 error 'dbg_log' is not defined no-undef - 602:30 error 'LOG_SB16' is not defined no-undef - 611:41 error 'value' is defined but never used @typescript-eslint/no-unused-vars - 613:5 error 'dbg_log' is not defined no-undef - 613:40 error 'LOG_SB16' is not defined no-undef - 616:41 error 'value' is defined but never used @typescript-eslint/no-unused-vars - 618:5 error 'dbg_log' is not defined no-undef - 618:66 error 'LOG_SB16' is not defined no-undef - 621:41 error 'value' is defined but never used @typescript-eslint/no-unused-vars - 623:5 error 'dbg_log' is not defined no-undef - 623:62 error 'LOG_SB16' is not defined no-undef - 626:41 error 'value' is defined but never used @typescript-eslint/no-unused-vars - 628:5 error 'dbg_log' is not defined no-undef - 628:58 error 'LOG_SB16' is not defined no-undef - 631:41 error 'value' is defined but never used @typescript-eslint/no-unused-vars - 633:5 error 'dbg_log' is not defined no-undef - 633:40 error 'LOG_SB16' is not defined no-undef - 640:5 error 'dbg_log' is not defined no-undef - 640:46 error 'LOG_SB16' is not defined no-undef - 645:9 error 'dbg_log' is not defined no-undef - 645:43 error 'h' is not defined no-undef - 645:53 error 'LOG_SB16' is not defined no-undef - 653:9 error 'dbg_log' is not defined no-undef - 653:39 error 'h' is not defined no-undef - 653:49 error 'LOG_SB16' is not defined no-undef - 664:41 error 'value' is defined but never used @typescript-eslint/no-unused-vars - 666:5 error 'dbg_log' is not defined no-undef - 666:40 error 'LOG_SB16' is not defined no-undef - 669:41 error 'value' is defined but never used @typescript-eslint/no-unused-vars - 671:5 error 'dbg_log' is not defined no-undef - 671:62 error 'LOG_SB16' is not defined no-undef - 674:41 error 'value' is defined but never used @typescript-eslint/no-unused-vars - 676:5 error 'dbg_log' is not defined no-undef - 676:40 error 'LOG_SB16' is not defined no-undef - 683:5 error 'dbg_log' is not defined no-undef - 683:35 error 'LOG_SB16' is not defined no-undef - 689:5 error 'dbg_log' is not defined no-undef - 689:22 error 'h' is not defined no-undef - 689:57 error 'LOG_SB16' is not defined no-undef - 695:5 error 'dbg_log' is not defined no-undef - 695:56 error 'h' is not defined no-undef - 695:66 error 'LOG_SB16' is not defined no-undef - 701:5 error 'dbg_log' is not defined no-undef - 701:37 error 'LOG_SB16' is not defined no-undef - 713:5 error 'dbg_log' is not defined no-undef - 713:42 error 'h' is not defined no-undef - 713:52 error 'LOG_SB16' is not defined no-undef - 743:5 error 'dbg_log' is not defined no-undef - 743:37 error 'h' is not defined no-undef - 743:54 error 'LOG_SB16' is not defined no-undef - 1099:5 error 'dbg_log' is not defined no-undef - 1099:60 error 'LOG_SB16' is not defined no-undef - 1120:9 error 'dbg_log' is not defined no-undef - 1120:58 error 'h' is not defined no-undef - 1120:82 error 'h' is not defined no-undef - 1120:91 error 'LOG_SB16' is not defined no-undef - 1134:9 error 'dbg_log' is not defined no-undef - 1134:59 error 'h' is not defined no-undef - 1134:83 error 'h' is not defined no-undef - 1134:92 error 'LOG_SB16' is not defined no-undef - 1140:5 error 'dbg_log' is not defined no-undef - 1140:44 error 'h' is not defined no-undef - 1140:75 error 'LOG_SB16' is not defined no-undef - 1146:5 error 'dbg_log' is not defined no-undef - 1146:45 error 'h' is not defined no-undef - 1146:88 error 'h' is not defined no-undef - 1146:97 error 'LOG_SB16' is not defined no-undef - 1308:29 error 'MIXER_SRC_MASTER' is not defined no-undef - 1308:47 error 'MIXER_CHANNEL_LEFT' is not defined no-undef - 1310:29 error 'MIXER_SRC_MASTER' is not defined no-undef - 1310:47 error 'MIXER_CHANNEL_RIGHT' is not defined no-undef - 1312:29 error 'MIXER_SRC_DAC' is not defined no-undef - 1312:44 error 'MIXER_CHANNEL_LEFT' is not defined no-undef - 1314:29 error 'MIXER_SRC_DAC' is not defined no-undef - 1314:44 error 'MIXER_CHANNEL_RIGHT' is not defined no-undef - 1335:36 error 'MIXER_SRC_PCSPEAKER' is not defined no-undef - 1335:57 error 'MIXER_CHANNEL_BOTH' is not defined no-undef - 1499:5 error 'dbg_log' is not defined no-undef - 1499:69 error 'h' is not defined no-undef - 1499:93 error 'h' is not defined no-undef - 1499:102 error 'LOG_SB16' is not defined no-undef - 1554:52 error 'address' is defined but never used @typescript-eslint/no-unused-vars - 1566:52 error 'address' is defined but never used @typescript-eslint/no-unused-vars - 1599:36 error 'bits' is defined but never used @typescript-eslint/no-unused-vars - 1599:42 error 'register' is defined but never used @typescript-eslint/no-unused-vars - 1599:52 error 'address' is defined but never used @typescript-eslint/no-unused-vars - 1607:9 error 'operator' is assigned a value but never used @typescript-eslint/no-unused-vars - 1617:9 error 'operator' is assigned a value but never used @typescript-eslint/no-unused-vars - 1624:9 error 'operator' is assigned a value but never used @typescript-eslint/no-unused-vars - 1631:9 error 'operator' is assigned a value but never used @typescript-eslint/no-unused-vars - 1638:9 error 'channel' is assigned a value but never used @typescript-eslint/no-unused-vars - 1642:49 error 'bits' is defined but never used @typescript-eslint/no-unused-vars - 1642:55 error 'register' is defined but never used @typescript-eslint/no-unused-vars - 1642:65 error 'address' is defined but never used @typescript-eslint/no-unused-vars - 1649:36 error 'bits' is defined but never used @typescript-eslint/no-unused-vars - 1649:42 error 'register' is defined but never used @typescript-eslint/no-unused-vars - 1649:52 error 'address' is defined but never used @typescript-eslint/no-unused-vars - 1661:49 error 'bits' is defined but never used @typescript-eslint/no-unused-vars - 1661:55 error 'register' is defined but never used @typescript-eslint/no-unused-vars - 1661:65 error 'address' is defined but never used @typescript-eslint/no-unused-vars - 1671:9 error 'operator' is assigned a value but never used @typescript-eslint/no-unused-vars - 1706:5 error 'dbg_log' is not defined no-undef - 1706:35 error 'LOG_SB16' is not defined no-undef - 1751:5 error 'dbg_log' is not defined no-undef - 1751:43 error 'LOG_SB16' is not defined no-undef - 1758:9 error 'dbg_log' is not defined no-undef - 1758:82 error 'LOG_SB16' is not defined no-undef - 1835:5 error 'dbg_log' is not defined no-undef - 1835:26 error 'LOG_SB16' is not defined no-undef - 1842:5 error 'dbg_log' is not defined no-undef - 1842:26 error 'LOG_SB16' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/state.js - 48:9 error 'dbg_assert' is not defined no-undef - 60:9 error 'dbg_assert' is not defined no-undef - 70:9 error 'dbg_assert' is not defined no-undef - 78:8 error 'DEBUG' is not defined no-undef - 90:9 error 'dbg_assert' is not defined no-undef - 102:9 error 'dbg_assert' is not defined no-undef - 117:5 error 'dbg_assert' is not defined no-undef - 120:5 error 'dbg_assert' is not defined no-undef - 126:1 error 'CPU' is not defined no-undef - 180:13 error 'i' is already defined no-redeclare - 183:9 error 'dbg_assert' is not defined no-undef - 187:5 error 'dbg_log' is not defined no-undef - 188:5 error 'dbg_log' is not defined no-undef - 193:1 error 'CPU' is not defined no-undef - 210:59 error 'h' is not defined no-undef - 275:21 error 'dbg_assert' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/uart.js - 22:18 error 'UART_IIR_RLSI' is assigned a value but never used @typescript-eslint/no-unused-vars - 102:13 error 'dbg_log' is not defined no-undef - 102:47 error 'h' is not defined no-undef - 102:56 error 'LOG_SERIAL' is not defined no-undef - 167:13 error 'dbg_log' is not defined no-undef - 167:37 error 'h' is not defined no-undef - 167:56 error 'LOG_SERIAL' is not defined no-undef - 178:13 error 'dbg_log' is not defined no-undef - 178:44 error 'h' is not defined no-undef - 178:57 error 'LOG_SERIAL' is not defined no-undef - 195:17 error 'dbg_log' is not defined no-undef - 195:45 error 'LOG_SERIAL' is not defined no-undef - 200:17 error 'dbg_log' is not defined no-undef - 200:42 error 'h' is not defined no-undef - 200:51 error 'LOG_SERIAL' is not defined no-undef - 229:9 error 'dbg_log' is not defined no-undef - 229:53 error 'h' is not defined no-undef - 229:66 error 'LOG_SERIAL' is not defined no-undef - 241:9 error 'dbg_log' is not defined no-undef - 241:36 error 'h' is not defined no-undef - 241:49 error 'LOG_SERIAL' is not defined no-undef - 247:9 error 'dbg_log' is not defined no-undef - 247:41 error 'h' is not defined no-undef - 247:63 error 'LOG_SERIAL' is not defined no-undef - 252:9 error 'dbg_log' is not defined no-undef - 252:36 error 'h' is not defined no-undef - 252:49 error 'LOG_SERIAL' is not defined no-undef - 263:9 error 'dbg_log' is not defined no-undef - 263:37 error 'h' is not defined no-undef - 263:50 error 'LOG_SERIAL' is not defined no-undef - 269:9 error 'dbg_log' is not defined no-undef - 269:40 error 'h' is not defined no-undef - 269:53 error 'LOG_SERIAL' is not defined no-undef - 272:48 error 'out_byte' is defined but never used @typescript-eslint/no-unused-vars - 274:9 error 'dbg_log' is not defined no-undef - 274:39 error 'LOG_SERIAL' is not defined no-undef - 279:9 error 'dbg_log' is not defined no-undef - 279:41 error 'h' is not defined no-undef - 279:63 error 'LOG_SERIAL' is not defined no-undef - 286:9 error 'dbg_log' is not defined no-undef - 286:42 error 'h' is not defined no-undef - 286:55 error 'LOG_SERIAL' is not defined no-undef - 371:5 error 'dbg_log' is not defined no-undef - 371:25 error 'h' is not defined no-undef - 371:34 error 'LOG_SERIAL' is not defined no-undef - 394:5 error 'dbg_log' is not defined no-undef - 394:24 error 'h' is not defined no-undef - 394:37 error 'LOG_SERIAL' is not defined no-undef - 400:8 error 'DEBUG' is not defined no-undef - 407:64 error Unexpected control character(s) in regular expression: \x00, \x08, \x0b, \x1f no-control-regex - 408:13 error 'dbg_log' is not defined no-undef - 416:5 error 'dbg_log' is not defined no-undef - 416:32 error 'h' is not defined no-undef - 416:43 error 'LOG_SERIAL' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/vga.js - 219:32 error 'v86util' is not defined no-undef - 221:5 error 'dbg_log' is not defined no-undef - 221:67 error 'LOG_VGA' is not defined no-undef - 340:48 error 'dbg_log' is not defined no-undef - 340:68 error 'LOG_VGA' is not defined no-undef - 359:24 error 'v86util' is not defined no-undef - 464:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 519:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 569:9 error 'dbg_log' is not defined no-undef - 569:58 error 'h' is not defined no-undef - 569:67 error 'LOG_VGA' is not defined no-undef - 643:9 error 'dbg_log' is not defined no-undef - 643:59 error 'h' is not defined no-undef - 643:82 error 'h' is not defined no-undef - 643:92 error 'LOG_VGA' is not defined no-undef - 892:5 error 'dbg_assert' is not defined no-undef - 944:5 error 'dbg_assert' is not defined no-undef - 952:5 error 'dbg_log' is not defined no-undef - 952:32 error 'LOG_VGA' is not defined no-undef - 974:5 error 'dbg_log' is not defined no-undef - 974:32 error 'LOG_VGA' is not defined no-undef - 1136:5 error 'dbg_assert' is not defined no-undef - 1146:5 error 'dbg_assert' is not defined no-undef - 1327:13 error 'x' is already defined no-redeclare - 1327:35 error 'y' is already defined no-redeclare - 1372:9 error 'dbg_log' is not defined no-undef - 1372:59 error 'h' is not defined no-undef - 1372:69 error 'LOG_VGA' is not defined no-undef - 1374:9 error 'dbg_log' is not defined no-undef - 1374:46 error 'h' is not defined no-undef - 1374:82 error 'LOG_VGA' is not defined no-undef - 1388:13 error 'dbg_log' is not defined no-undef - 1388:44 error 'h' is not defined no-undef - 1388:90 error 'h' is not defined no-undef - 1388:100 error 'LOG_VGA' is not defined no-undef - 1400:17 error 'dbg_log' is not defined no-undef - 1400:60 error 'h' is not defined no-undef - 1400:70 error 'LOG_VGA' is not defined no-undef - 1428:17 error 'dbg_log' is not defined no-undef - 1428:56 error 'h' is not defined no-undef - 1428:66 error 'LOG_VGA' is not defined no-undef - 1438:17 error 'dbg_log' is not defined no-undef - 1438:56 error 'h' is not defined no-undef - 1438:66 error 'LOG_VGA' is not defined no-undef - 1446:17 error 'dbg_log' is not defined no-undef - 1446:50 error 'h' is not defined no-undef - 1446:60 error 'LOG_VGA' is not defined no-undef - 1456:17 error 'dbg_log' is not defined no-undef - 1456:63 error 'h' is not defined no-undef - 1456:107 error 'h' is not defined no-undef - 1456:117 error 'LOG_VGA' is not defined no-undef - 1465:5 error 'dbg_log' is not defined no-undef - 1465:25 error 'LOG_VGA' is not defined no-undef - 1471:5 error 'dbg_log' is not defined no-undef - 1471:27 error 'LOG_VGA' is not defined no-undef - 1479:9 error 'dbg_log' is not defined no-undef - 1479:51 error 'h' is not defined no-undef - 1480:22 error 'h' is not defined no-undef - 1480:72 error 'LOG_VGA' is not defined no-undef - 1487:13 error 'dbg_log' is not defined no-undef - 1487:53 error 'h' is not defined no-undef - 1487:77 error 'LOG_VGA' is not defined no-undef - 1490:13 error 'dbg_log' is not defined no-undef - 1490:57 error 'h' is not defined no-undef - 1490:85 error 'LOG_VGA' is not defined no-undef - 1493:13 error 'dbg_log' is not defined no-undef - 1493:57 error 'h' is not defined no-undef - 1493:85 error 'LOG_VGA' is not defined no-undef - 1496:13 error 'dbg_log' is not defined no-undef - 1496:51 error 'h' is not defined no-undef - 1496:73 error 'LOG_VGA' is not defined no-undef - 1499:13 error 'dbg_log' is not defined no-undef - 1499:58 error 'h' is not defined no-undef - 1499:94 error 'LOG_VGA' is not defined no-undef - 1507:5 error 'dbg_log' is not defined no-undef - 1507:56 error 'h' is not defined no-undef - 1507:66 error 'LOG_VGA' is not defined no-undef - 1532:13 error 'dbg_log' is not defined no-undef - 1532:41 error 'h' is not defined no-undef - 1532:51 error 'LOG_VGA' is not defined no-undef - 1543:13 error 'dbg_log' is not defined no-undef - 1543:44 error 'h' is not defined no-undef - 1543:54 error 'LOG_VGA' is not defined no-undef - 1553:13 error 'dbg_log' is not defined no-undef - 1553:48 error 'h' is not defined no-undef - 1553:58 error 'LOG_VGA' is not defined no-undef - 1562:13 error 'dbg_log' is not defined no-undef - 1562:49 error 'h' is not defined no-undef - 1562:59 error 'LOG_VGA' is not defined no-undef - 1566:13 error 'dbg_log' is not defined no-undef - 1566:48 error 'h' is not defined no-undef - 1566:81 error 'h' is not defined no-undef - 1566:91 error 'LOG_VGA' is not defined no-undef - 1572:5 error 'dbg_log' is not defined no-undef - 1572:39 error 'h' is not defined no-undef - 1572:64 error 'LOG_VGA' is not defined no-undef - 1608:5 error 'dbg_log' is not defined no-undef - 1608:29 error 'h' is not defined no-undef - 1608:39 error 'LOG_VGA' is not defined no-undef - 1660:9 error 'dbg_log' is not defined no-undef - 1660:43 error 'h' is not defined no-undef - 1660:66 error 'h' is not defined no-undef - 1660:76 error 'LOG_VGA' is not defined no-undef - 1673:5 error 'dbg_log' is not defined no-undef - 1673:25 error 'LOG_VGA' is not defined no-undef - 1694:5 error 'dbg_log' is not defined no-undef - 1694:25 error 'LOG_VGA' is not defined no-undef - 1720:13 error 'dbg_log' is not defined no-undef - 1720:43 error 'h' is not defined no-undef - 1720:53 error 'LOG_VGA' is not defined no-undef - 1724:13 error 'dbg_log' is not defined no-undef - 1724:50 error 'h' is not defined no-undef - 1724:60 error 'LOG_VGA' is not defined no-undef - 1728:13 error 'dbg_log' is not defined no-undef - 1728:41 error 'h' is not defined no-undef - 1728:51 error 'LOG_VGA' is not defined no-undef - 1732:13 error 'dbg_log' is not defined no-undef - 1732:40 error 'h' is not defined no-undef - 1732:50 error 'LOG_VGA' is not defined no-undef - 1736:13 error 'dbg_log' is not defined no-undef - 1736:38 error 'h' is not defined no-undef - 1736:48 error 'LOG_VGA' is not defined no-undef - 1741:13 error 'dbg_log' is not defined no-undef - 1741:39 error 'h' is not defined no-undef - 1741:49 error 'LOG_VGA' is not defined no-undef - 1749:13 error 'dbg_log' is not defined no-undef - 1749:59 error 'h' is not defined no-undef - 1749:69 error 'LOG_VGA' is not defined no-undef - 1758:13 error 'dbg_log' is not defined no-undef - 1758:44 error 'h' is not defined no-undef - 1758:54 error 'LOG_VGA' is not defined no-undef - 1762:13 error 'dbg_log' is not defined no-undef - 1762:41 error 'h' is not defined no-undef - 1762:51 error 'LOG_VGA' is not defined no-undef - 1765:13 error 'dbg_log' is not defined no-undef - 1765:47 error 'h' is not defined no-undef - 1765:79 error 'h' is not defined no-undef - 1765:89 error 'LOG_VGA' is not defined no-undef - 1771:5 error 'dbg_log' is not defined no-undef - 1771:38 error 'h' is not defined no-undef - 1771:62 error 'LOG_VGA' is not defined no-undef - 1800:5 error 'dbg_log' is not defined no-undef - 1800:46 error 'LOG_VGA' is not defined no-undef - 1812:5 error 'dbg_log' is not defined no-undef - 1812:58 error 'LOG_VGA' is not defined no-undef - 1827:13 error 'dbg_log' is not defined no-undef - 1827:56 error 'h' is not defined no-undef - 1827:66 error 'LOG_VGA' is not defined no-undef - 1842:13 error 'dbg_log' is not defined no-undef - 1842:57 error 'h' is not defined no-undef - 1842:67 error 'LOG_VGA' is not defined no-undef - 1861:13 error 'dbg_log' is not defined no-undef - 1861:55 error 'h' is not defined no-undef - 1861:65 error 'LOG_VGA' is not defined no-undef - 1866:13 error 'dbg_log' is not defined no-undef - 1866:53 error 'h' is not defined no-undef - 1866:63 error 'LOG_VGA' is not defined no-undef - 1871:17 error 'previous_vertical_blank_start' is already defined no-redeclare - 1884:13 error 'dbg_log' is not defined no-undef - 1884:61 error 'h' is not defined no-undef - 1884:71 error 'LOG_VGA' is not defined no-undef - 1889:13 error 'dbg_log' is not defined no-undef - 1889:59 error 'h' is not defined no-undef - 1889:69 error 'LOG_VGA' is not defined no-undef - 1905:13 error 'dbg_log' is not defined no-undef - 1905:53 error 'h' is not defined no-undef - 1905:73 error 'h' is not defined no-undef - 1905:99 error 'LOG_VGA' is not defined no-undef - 1919:13 error 'dbg_log' is not defined no-undef - 1919:53 error 'h' is not defined no-undef - 1919:73 error 'h' is not defined no-undef - 1919:99 error 'LOG_VGA' is not defined no-undef - 1922:13 error 'dbg_log' is not defined no-undef - 1922:57 error 'h' is not defined no-undef - 1922:67 error 'LOG_VGA' is not defined no-undef - 1927:13 error 'dbg_log' is not defined no-undef - 1927:57 error 'h' is not defined no-undef - 1927:67 error 'LOG_VGA' is not defined no-undef - 1932:13 error 'dbg_log' is not defined no-undef - 1932:56 error 'h' is not defined no-undef - 1932:66 error 'LOG_VGA' is not defined no-undef - 1940:13 error 'dbg_log' is not defined no-undef - 1940:55 error 'h' is not defined no-undef - 1940:65 error 'LOG_VGA' is not defined no-undef - 1955:13 error 'dbg_log' is not defined no-undef - 1955:58 error 'h' is not defined no-undef - 1955:68 error 'LOG_VGA' is not defined no-undef - 1971:13 error 'dbg_log' is not defined no-undef - 1971:60 error 'h' is not defined no-undef - 1971:70 error 'LOG_VGA' is not defined no-undef - 1979:13 error 'dbg_log' is not defined no-undef - 1979:49 error 'h' is not defined no-undef - 1979:59 error 'LOG_VGA' is not defined no-undef - 1996:13 error 'dbg_log' is not defined no-undef - 1996:52 error 'h' is not defined no-undef - 1996:62 error 'LOG_VGA' is not defined no-undef - 2005:13 error 'dbg_log' is not defined no-undef - 2005:43 error 'h' is not defined no-undef - 2005:71 error 'h' is not defined no-undef - 2005:81 error 'LOG_VGA' is not defined no-undef - 2012:5 error 'dbg_log' is not defined no-undef - 2012:39 error 'h' is not defined no-undef - 2012:55 error 'LOG_VGA' is not defined no-undef - 2018:5 error 'dbg_log' is not defined no-undef - 2018:27 error 'h' is not defined no-undef - 2018:47 error 'LOG_VGA' is not defined no-undef - 2073:5 error 'dbg_log' is not defined no-undef - 2073:46 error 'LOG_VGA' is not defined no-undef - 2079:5 error 'dbg_log' is not defined no-undef - 2079:57 error 'LOG_VGA' is not defined no-undef - 2111:5 error 'dbg_log' is not defined no-undef - 2111:36 error 'h' is not defined no-undef - 2111:65 error 'h' is not defined no-undef - 2111:75 error 'LOG_VGA' is not defined no-undef - 2124:17 error 'dbg_log' is not defined no-undef - 2124:53 error 'h' is not defined no-undef - 2124:63 error 'LOG_VGA' is not defined no-undef - 2131:17 error 'dbg_log' is not defined no-undef - 2131:91 error 'LOG_VGA' is not defined no-undef - 2139:17 error 'dbg_log' is not defined no-undef - 2139:93 error 'LOG_VGA' is not defined no-undef - 2156:13 error 'dbg_log' is not defined no-undef - 2156:44 error 'h' is not defined no-undef - 2156:60 error 'LOG_VGA' is not defined no-undef - 2161:13 error 'dbg_log' is not defined no-undef - 2161:41 error 'h' is not defined no-undef - 2161:51 error 'LOG_VGA' is not defined no-undef - 2171:13 error 'dbg_log' is not defined no-undef - 2171:41 error 'h' is not defined no-undef - 2171:78 error 'h' is not defined no-undef - 2171:88 error 'LOG_VGA' is not defined no-undef - 2180:13 error 'dbg_log' is not defined no-undef - 2180:59 error 'h' is not defined no-undef - 2180:80 error 'LOG_VGA' is not defined no-undef - 2185:9 error 'dbg_log' is not defined no-undef - 2185:112 error 'LOG_VGA' is not defined no-undef - 2189:5 error 'dbg_assert' is not defined no-undef - 2190:5 error 'dbg_assert' is not defined no-undef - 2197:9 error 'dbg_log' is not defined no-undef - 2197:101 error 'LOG_VGA' is not defined no-undef - 2201:9 error 'dbg_log' is not defined no-undef - 2225:5 error 'dbg_log' is not defined no-undef - 2225:35 error 'h' is not defined no-undef - 2225:56 error 'LOG_VGA' is not defined no-undef - 2255:13 error Unreachable code no-unreachable - 2266:13 error 'dbg_log' is not defined no-undef - 2266:58 error 'h' is not defined no-undef - 2266:79 error 'LOG_VGA' is not defined no-undef - 2382:21 error 'i' is already defined no-redeclare - 2389:21 error 'i' is already defined no-redeclare - 2438:17 error 'pixel_addr' is already defined no-redeclare - 2441:17 error 'color256' is already defined no-redeclare - 2442:17 error 'color' is already defined no-redeclare - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/virtio.js - 44:7 error 'VIRTQ_AVAIL_BASESIZE' is assigned a value but never used @typescript-eslint/no-unused-vars - 48:7 error 'VIRTQ_USED_BASESIZE' is assigned a value but never used @typescript-eslint/no-unused-vars - 61:7 error 'VIRTQ_USED_F_NO_NOTIFY' is assigned a value but never used @typescript-eslint/no-unused-vars - 73:5 error 'VirtIO_CapabilityStruct' is defined but never used @typescript-eslint/no-unused-vars - 87:5 error 'VirtIO_CapabilityInfo' is defined but never used @typescript-eslint/no-unused-vars - 96:5 error 'VirtQueue_Options' is defined but never used @typescript-eslint/no-unused-vars - 107:5 error 'VirtIO_CommonCapabilityOptions' is defined but never used @typescript-eslint/no-unused-vars - 117:5 error 'VirtIO_NotificationCapabilityOptions' is defined but never used @typescript-eslint/no-unused-vars - 125:5 error 'VirtIO_ISRCapabilityOptions' is defined but never used @typescript-eslint/no-unused-vars - 134:5 error 'VirtIO_DeviceSpecificCapabilityOptions' is defined but never used @typescript-eslint/no-unused-vars - 149:5 error 'VirtIO_Options' is defined but never used @typescript-eslint/no-unused-vars - 158:11 error 'io' is assigned a value but never used @typescript-eslint/no-unused-vars - 227:44 error 'v86util' is not defined no-undef - 246:9 error 'dbg_assert' is not defined no-undef - 248:9 error 'dbg_assert' is not defined no-undef - 256:5 error 'dbg_assert' is not defined no-undef - 279:8 error 'DEBUG' is not defined no-undef - 286:13 error 'dbg_assert' is not defined no-undef - 291:13 error 'dbg_assert' is not defined no-undef - 339:24 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 375:21 error 'dbg_log' is not defined no-undef - 375:63 error 'LOG_VIRTIO' is not defined no-undef - 378:24 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 380:21 error 'dbg_log' is not defined no-undef - 380:63 error 'LOG_VIRTIO' is not defined no-undef - 387:24 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 397:25 error 'dbg_log' is not defined no-undef - 397:68 error 'LOG_VIRTIO' is not defined no-undef - 402:25 error 'dbg_log' is not defined no-undef - 402:85 error 'LOG_VIRTIO' is not defined no-undef - 406:25 error 'dbg_log' is not defined no-undef - 412:33 error 'LOG_VIRTIO' is not defined no-undef - 426:28 error 'DEBUG' is not defined no-undef - 428:29 error 'dbg_log' is not defined no-undef - 428:61 error 'LOG_VIRTIO' is not defined no-undef - 445:24 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 480:25 error 'dbg_log' is not defined no-undef - 482:68 error 'LOG_VIRTIO' is not defined no-undef - 483:38 error 'v86util' is not defined no-undef - 487:25 error 'dbg_log' is not defined no-undef - 489:64 error 'LOG_VIRTIO' is not defined no-undef - 500:21 error 'dbg_log' is not defined no-undef - 500:63 error 'LOG_VIRTIO' is not defined no-undef - 503:24 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 505:21 error 'dbg_log' is not defined no-undef - 505:63 error 'LOG_VIRTIO' is not defined no-undef - 526:29 error 'dbg_log' is not defined no-undef - 526:86 error 'LOG_VIRTIO' is not defined no-undef - 531:25 error 'dbg_log' is not defined no-undef - 531:80 error 'LOG_VIRTIO' is not defined no-undef - 539:24 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 556:36 error 'dbg_log' is not defined no-undef - 556:104 error 'LOG_VIRTIO' is not defined no-undef - 574:36 error 'dbg_log' is not defined no-undef - 574:105 error 'LOG_VIRTIO' is not defined no-undef - 592:36 error 'dbg_log' is not defined no-undef - 592:104 error 'LOG_VIRTIO' is not defined no-undef - 610:9 error 'dbg_assert' is not defined no-undef - 628:32 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 673:24 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 685:5 error 'dbg_assert' is not defined no-undef - 719:9 error 'dbg_assert' is not defined no-undef - 722:9 error 'dbg_assert' is not defined no-undef - 730:47 error 'v86util' is not defined no-undef - 732:9 error 'dbg_assert' is not defined no-undef - 778:16 error 'DEBUG' is not defined no-undef - 784:21 error 'dbg_log' is not defined no-undef - 787:37 error 'h' is not defined no-undef - 788:25 error 'LOG_VIRTIO' is not defined no-undef - 794:21 error 'dbg_log' is not defined no-undef - 797:37 error 'h' is not defined no-undef - 798:25 error 'LOG_VIRTIO' is not defined no-undef - 806:17 error 'dbg_assert' is not defined no-undef - 813:21 error 'dbg_log' is not defined no-undef - 813:76 error 'LOG_VIRTIO' is not defined no-undef - 818:21 error 'dbg_log' is not defined no-undef - 818:76 error 'LOG_VIRTIO' is not defined no-undef - 837:25 error 'dbg_assert' is not defined no-undef - 851:5 error 'dbg_assert' is not defined no-undef - 972:9 error 'dbg_assert' is not defined no-undef - 1003:5 error 'dbg_log' is not defined no-undef - 1003:77 error 'LOG_VIRTIO' is not defined no-undef - 1014:5 error 'dbg_log' is not defined no-undef - 1014:28 error 'h' is not defined no-undef - 1014:37 error 'LOG_VIRTIO' is not defined no-undef - 1021:5 error 'dbg_log' is not defined no-undef - 1021:27 error 'LOG_VIRTIO' is not defined no-undef - 1107:5 error 'dbg_assert' is not defined no-undef - 1113:5 error 'dbg_assert' is not defined no-undef - 1114:5 error 'dbg_assert' is not defined no-undef - 1124:5 error 'dbg_assert' is not defined no-undef - 1133:5 error 'dbg_assert' is not defined no-undef - 1142:5 error 'dbg_assert' is not defined no-undef - 1143:5 error 'dbg_assert' is not defined no-undef - 1146:5 error 'dbg_log' is not defined no-undef - 1147:34 error 'LOG_VIRTIO' is not defined no-undef - 1164:5 error 'dbg_assert' is not defined no-undef - 1165:5 error 'dbg_assert' is not defined no-undef - 1168:5 error 'dbg_log' is not defined no-undef - 1169:43 error 'LOG_VIRTIO' is not defined no-undef - 1181:5 error 'dbg_assert' is not defined no-undef - 1185:9 error 'dbg_log' is not defined no-undef - 1185:52 error 'LOG_VIRTIO' is not defined no-undef - 1189:5 error 'dbg_log' is not defined no-undef - 1189:65 error 'LOG_VIRTIO' is not defined no-undef - 1207:13 error 'has_passed' is assigned a value but never used @typescript-eslint/no-unused-vars - 1234:5 error 'dbg_assert' is not defined no-undef - 1349:5 error 'dbg_log' is not defined no-undef - 1349:43 error 'LOG_VIRTIO' is not defined no-undef - 1354:9 error 'dbg_log' is not defined no-undef - 1354:60 error 'h' is not defined no-undef - 1354:89 error 'h' is not defined no-undef - 1355:23 error 'h' is not defined no-undef - 1355:52 error 'h' is not defined no-undef - 1355:82 error 'h' is not defined no-undef - 1355:99 error 'LOG_VIRTIO' is not defined no-undef - 1359:16 error 'DEBUG' is not defined no-undef - 1361:17 error 'dbg_log' is not defined no-undef - 1361:103 error 'LOG_VIRTIO' is not defined no-undef - 1369:13 error 'dbg_log' is not defined no-undef - 1369:39 error 'LOG_VIRTIO' is not defined no-undef - 1383:17 error 'dbg_log' is not defined no-undef - 1383:92 error 'LOG_VIRTIO' is not defined no-undef - 1393:13 error 'dbg_log' is not defined no-undef - 1393:68 error 'LOG_VIRTIO' is not defined no-undef - 1406:11 error Unexpected constant condition no-constant-condition - 1407:5 error 'dbg_log' is not defined no-undef - 1407:41 error 'LOG_VIRTIO' is not defined no-undef - 1424:13 error 'dbg_log' is not defined no-undef - 1424:100 error 'LOG_VIRTIO' is not defined no-undef - 1466:13 error 'dbg_log' is not defined no-undef - 1466:98 error 'LOG_VIRTIO' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/virtio_console.js - 7:7 error 'VIRTIO_CONSOLE_DEVICE_REMOVE' is assigned a value but never used @typescript-eslint/no-unused-vars - 16:7 error 'VIRTIO_CONSOLE_F_EMERG_WRITE' is assigned a value but never used @typescript-eslint/no-unused-vars - 57:23 error 'VirtIO' is not defined no-undef - 71:17 error 'VIRTIO_F_VERSION_1' is not defined no-undef - 105:25 error 'dbg_assert' is not defined no-undef - 117:25 error 'dbg_assert' is not defined no-undef - 130:39 error 'marshall' is not defined no-undef - 133:31 error 'value' is assigned a value but never used @typescript-eslint/no-unused-vars - 158:33 error 'dbg_assert' is not defined no-undef - 179:28 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 185:28 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 191:28 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 197:28 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 198:25 error 'dbg_assert' is not defined no-undef - 232:5 error 'marshall' is not defined no-undef - 241:5 error 'marshall' is not defined no-undef - 280:5 error 'marshall' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/src/virtio_net.js - 37:45 error 'format_mac' is not defined no-undef - 52:23 error 'VirtIO' is not defined no-undef - 70:17 error 'VIRTIO_F_VERSION_1' is not defined no-undef - 89:42 error 'VirtQueueBufferChain' is not defined no-undef - 113:25 error 'dbg_assert' is not defined no-undef - 126:39 error 'marshall' is not defined no-undef - 135:33 error Unexpected lexical declaration in case block no-case-declarations - 135:47 error 'marshall' is not defined no-undef - 136:33 error 'dbg_assert' is not defined no-undef - 142:73 error 'format_mac' is not defined no-undef - 145:33 error 'dbg_assert' is not defined no-undef - 166:24 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 173:28 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 179:28 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 185:28 error 'data' is defined but never used @typescript-eslint/no-unused-vars - 221:49 error 'format_mac' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/api/clean-shutdown.js - 7:29 error 'process' is not defined no-undef - 9:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 9:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:12 error 'require' is not defined no-undef - 10:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 10:11 error 'require' is not defined no-undef - 12:1 error 'process' is not defined no-undef - 15:18 error '__dirname' is not defined no-undef - 16:22 error '__dirname' is not defined no-undef - 17:19 error '__dirname' is not defined no-undef - 23:19 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/api/floppy-insert-eject.js - 4:29 error 'process' is not defined no-undef - 6:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:15 error 'require' is not defined no-undef - 7:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 7:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:12 error 'require' is not defined no-undef - 8:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:11 error 'require' is not defined no-undef - 10:1 error 'process' is not defined no-undef - 13:18 error '__dirname' is not defined no-undef - 14:22 error '__dirname' is not defined no-undef - 15:17 error '__dirname' is not defined no-undef - 21:19 error 'process' is not defined no-undef - 43:29 error '__dirname' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/api/reboot.js - 4:29 error 'process' is not defined no-undef - 6:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:12 error 'require' is not defined no-undef - 7:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:11 error 'require' is not defined no-undef - 9:1 error 'process' is not defined no-undef - 12:18 error '__dirname' is not defined no-undef - 13:22 error '__dirname' is not defined no-undef - 14:19 error '__dirname' is not defined no-undef - 24:19 error 'process' is not defined no-undef - 33:17 error 'serial_data' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/api/reset.js - 6:29 error 'process' is not defined no-undef - 8:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 8:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:12 error 'require' is not defined no-undef - 9:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:11 error 'require' is not defined no-undef - 11:1 error 'process' is not defined no-undef - 14:18 error '__dirname' is not defined no-undef - 15:22 error '__dirname' is not defined no-undef - 16:19 error '__dirname' is not defined no-undef - 22:19 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/api/serial.js - 4:29 error 'process' is not defined no-undef - 6:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:16 error 'require' is not defined no-undef - 7:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 7:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:12 error 'require' is not defined no-undef - 8:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:16 error 'require' is not defined no-undef - 9:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:11 error 'require' is not defined no-undef - 11:1 error 'process' is not defined no-undef - 14:18 error '__dirname' is not defined no-undef - 15:22 error '__dirname' is not defined no-undef - 16:19 error '__dirname' is not defined no-undef - 22:19 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/api/state.js - 4:1 error 'process' is not defined no-undef - 6:29 error 'process' is not defined no-undef - 8:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:11 error 'require' is not defined no-undef - 9:7 error 'assert' is assigned a value but never used @typescript-eslint/no-unused-vars - 9:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:16 error 'require' is not defined no-undef - 10:5 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 10:10 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 10:10 error 'require' is not defined no-undef - 13:18 error '__dirname' is not defined no-undef - 14:22 error '__dirname' is not defined no-undef - 15:19 error '__dirname' is not defined no-undef - 19:19 error 'process' is not defined no-undef - 24:18 error '__dirname' is not defined no-undef - 25:22 error '__dirname' is not defined no-undef - 26:19 error '__dirname' is not defined no-undef - 30:19 error 'process' is not defined no-undef - 35:18 error '__dirname' is not defined no-undef - 36:22 error '__dirname' is not defined no-undef - 40:21 error '__dirname' is not defined no-undef - 43:19 error 'process' is not defined no-undef - 48:18 error '__dirname' is not defined no-undef - 49:22 error '__dirname' is not defined no-undef - 50:19 error '__dirname' is not defined no-undef - 55:19 error 'process' is not defined no-undef - 61:39 error 'done' is defined but never used @typescript-eslint/no-unused-vars - 85:53 error Unexpected control character(s) in regular expression: \x00 no-control-regex - 86:9 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/api/test.js - 4:29 error 'process' is not defined no-undef - 6:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 6:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:12 error 'require' is not defined no-undef - 7:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:11 error 'require' is not defined no-undef - 9:1 error 'process' is not defined no-undef - 12:18 error '__dirname' is not defined no-undef - 13:22 error '__dirname' is not defined no-undef - 14:17 error '__dirname' is not defined no-undef - 20:19 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/benchmark/arch-bytemark.js - 4:30 error 'process' is not defined no-undef - 6:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:30 error 'require' is not defined no-undef - 7:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:14 error 'require' is not defined no-undef - 9:28 error '__dirname' is not defined no-undef - 20:19 error 'process' is not defined no-undef - 28:8 error 'process' is not defined no-undef - 41:27 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/benchmark/arch-python.js - 4:30 error 'process' is not defined no-undef - 6:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:30 error 'require' is not defined no-undef - 7:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:14 error 'require' is not defined no-undef - 9:28 error '__dirname' is not defined no-undef - 20:19 error 'process' is not defined no-undef - 26:39 error 'Buffer' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/benchmark/linux-boot.js - 4:30 error 'process' is not defined no-undef - 6:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:13 error 'require' is not defined no-undef - 7:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:21 error 'require' is not defined no-undef - 8:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 8:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:12 error 'require' is not defined no-undef - 9:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:14 error 'require' is not defined no-undef - 10:28 error '__dirname' is not defined no-undef - 14:4 error Unexpected constant condition no-constant-condition - 17:22 error '__dirname' is not defined no-undef - 18:26 error '__dirname' is not defined no-undef - 19:23 error '__dirname' is not defined no-undef - 22:23 error 'process' is not defined no-undef - 28:9 error 'emulator' is already defined no-redeclare - 43:23 error 'process' is not defined no-undef - 65:20 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/devices/fetch_network.js - 4:1 error 'process' is not defined no-undef - 6:29 error 'process' is not defined no-undef - 7:22 error 'process' is not defined no-undef - 9:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:13 error 'require' is not defined no-undef - 11:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 11:16 error 'require' is not defined no-undef - 131:18 error '__dirname' is not defined no-undef - 132:22 error '__dirname' is not defined no-undef - 133:19 error '__dirname' is not defined no-undef - 136:19 error 'process' is not defined no-undef - 216:17 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/devices/virtio_9p.js - 4:1 error 'process' is not defined no-undef - 6:29 error 'process' is not defined no-undef - 8:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:11 error 'require' is not defined no-undef - 9:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 9:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:12 error 'require' is not defined no-undef - 11:20 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 11:20 error 'require' is not defined no-undef - 37:43 error 'v' is defined but never used @typescript-eslint/no-unused-vars - 38:26 error 'Buffer' is not defined no-undef - 39:48 error 'v' is defined but never used @typescript-eslint/no-unused-vars - 40:32 error 'Buffer' is not defined no-undef - 94:19 error 'idx_b' is assigned a value but never used @typescript-eslint/no-unused-vars - 133:35 error 'Buffer' is not defined no-undef - 177:26 error 'Buffer' is not defined no-undef - 224:26 error 'month' is assigned a value but never used @typescript-eslint/no-unused-vars - 224:33 error 'day' is assigned a value but never used @typescript-eslint/no-unused-vars - 543:26 error 'Buffer' is not defined no-undef - 583:26 error 'Buffer' is not defined no-undef - 1183:42 error '__dirname' is not defined no-undef - 1198:26 error 'Buffer' is not defined no-undef - 1239:26 error 'Buffer' is not defined no-undef - 1536:18 error '__dirname' is not defined no-undef - 1537:22 error '__dirname' is not defined no-undef - 1538:19 error '__dirname' is not defined no-undef - 1542:18 error '__dirname' is not defined no-undef - 1544:19 error 'process' is not defined no-undef - 1564:13 error 'process' is not defined no-undef - 1583:46 error 'reject' is defined but never used @typescript-eslint/no-unused-vars - 1598:13 error 'remaining' is assigned a value but never used @typescript-eslint/no-unused-vars - 1709:13 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/devices/virtio_console.js - 4:1 error 'process' is not defined no-undef - 6:29 error 'process' is not defined no-undef - 9:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:11 error 'require' is not defined no-undef - 10:7 error 'fs' is assigned a value but never used @typescript-eslint/no-unused-vars - 10:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 10:12 error 'require' is not defined no-undef - 13:18 error '__dirname' is not defined no-undef - 14:22 error '__dirname' is not defined no-undef - 15:19 error '__dirname' is not defined no-undef - 29:19 error 'process' is not defined no-undef - 41:5 error 'process' is not defined no-undef - 76:78 error 'Buffer' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/devices/wisp_network.js - 4:1 error 'process' is not defined no-undef - 6:29 error 'process' is not defined no-undef - 8:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:13 error 'require' is not defined no-undef - 10:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 10:16 error 'require' is not defined no-undef - 85:18 error '__dirname' is not defined no-undef - 86:22 error '__dirname' is not defined no-undef - 87:19 error '__dirname' is not defined no-undef - 90:19 error 'process' is not defined no-undef - 151:17 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/expect/run.js - 4:29 error 'process' is not defined no-undef - 6:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:16 error 'require' is not defined no-undef - 7:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:12 error 'require' is not defined no-undef - 8:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:14 error 'require' is not defined no-undef - 9:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:23 error 'require' is not defined no-undef - 11:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 11:17 error 'require' is not defined no-undef - 14:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 14:15 error 'require' is not defined no-undef - 20:5 error 'process' is not defined no-undef - 23:19 error 'process' is not defined no-undef - 30:28 error '__dirname' is not defined no-undef - 75:33 error Unnecessary escape character: \. no-useless-escape - 137:24 error 'process' is not defined no-undef - 157:25 error 'process' is not defined no-undef - 205:9 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/full/run.js - 4:1 error 'process' is not defined no-undef - 6:29 error 'process' is not defined no-undef - 7:27 error 'process' is not defined no-undef - 8:17 error 'process' is not defined no-undef - 9:29 error 'process' is not defined no-undef - 10:25 error 'process' is not defined no-undef - 17:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 17:15 error 'require' is not defined no-undef - 19:7 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 22:5 error 'process' is not defined no-undef - 25:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:16 error 'require' is not defined no-undef - 26:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:15 error 'require' is not defined no-undef - 27:10 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:10 error 'require' is not defined no-undef - 28:10 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:10 error 'require' is not defined no-undef - 29:17 error '__dirname' is not defined no-undef - 50:59 error Unexpected control character(s) in regular expression: \x00, \x08, \x0b, \x1f no-control-regex - 69:38 error 'message' is defined but never used @typescript-eslint/no-unused-vars - 928:17 error 'process' is not defined no-undef - 932:17 error 'process' is not defined no-undef - 939:13 error 'process' is not defined no-undef - 949:13 error 'process' is not defined no-undef - 987:13 error 'process' is not defined no-undef - 1006:13 error 'bios' is already defined no-redeclare - 1007:13 error 'vga_bios' is already defined no-redeclare - 1011:13 error 'bios' is already defined no-redeclare - 1012:13 error 'vga_bios' is already defined no-redeclare - 1057:29 error 'process' is not defined no-undef - 1189:17 error 'process' is not defined no-undef - 1292:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/jit-paging/run.js - 4:1 error 'process' is not defined no-undef - 6:29 error 'process' is not defined no-undef - 8:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:11 error 'require' is not defined no-undef - 9:10 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:10 error 'require' is not defined no-undef - 11:54 error '__dirname' is not defined no-undef - 14:18 error '__dirname' is not defined no-undef - 15:22 error '__dirname' is not defined no-undef - 16:19 error '__dirname' is not defined no-undef - 20:19 error 'process' is not defined no-undef - 68:22 error 'Buffer' is not defined no-undef - 72:13 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/kvm-unit-tests/run.js - 4:1 error 'process' is not defined no-undef - 6:29 error 'process' is not defined no-undef - 8:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:11 error 'require' is not defined no-undef - 9:10 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:10 error 'require' is not defined no-undef - 24:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 27:21 error '__dirname' is not defined no-undef - 28:25 error '__dirname' is not defined no-undef - 33:27 error 'process' is not defined no-undef - 36:19 error 'process' is not defined no-undef - 46:13 error 'process' is not defined no-undef - 56:5 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/nasm/create_tests.js - 9:29 error 'process' is not defined no-undef - 19:19 error '__dirname' is not defined no-undef - 22:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:16 error 'require' is not defined no-undef - 23:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 23:12 error 'require' is not defined no-undef - 24:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:13 error 'require' is not defined no-undef - 25:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:14 error 'require' is not defined no-undef - 26:19 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:19 error 'require' is not defined no-undef - 27:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:14 error 'require' is not defined no-undef - 28:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 28:33 error 'require' is not defined no-undef - 29:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:14 error 'require' is not defined no-undef - 31:42 error '__dirname' is not defined no-undef - 32:42 error '__dirname' is not defined no-undef - 71:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 89:15 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 90:9 error Empty block statement no-empty - 95:13 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 103:30 error '__dirname' is not defined no-undef - 121:14 error '__dirname' is not defined no-undef - 124:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 126:5 error Expected an assignment or function call and instead saw an expression @typescript-eslint/no-unused-expressions - 137:38 error '__dirname' is not defined no-undef - 349:8 error Unexpected constant condition no-constant-condition - 363:8 error Unexpected constant condition no-constant-condition - 689:58 error '_' is defined but never used @typescript-eslint/no-unused-vars - 696:17 error This branch can never execute. Its condition is a duplicate or covered by previous conditions in the if-else-if chain no-dupe-else-if - 699:58 error '_' is defined but never used @typescript-eslint/no-unused-vars - 708:17 error This branch can never execute. Its condition is a duplicate or covered by previous conditions in the if-else-if chain no-dupe-else-if - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/nasm/gen_fixtures.js - 4:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:16 error 'require' is not defined no-undef - 5:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:12 error 'require' is not defined no-undef - 6:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:12 error 'require' is not defined no-undef - 7:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:14 error 'require' is not defined no-undef - 8:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:30 error 'require' is not defined no-undef - 10:15 error 'process' is not defined no-undef - 12:29 error 'process' is not defined no-undef - 14:28 error 'process' is not defined no-undef - 20:18 error '__dirname' is not defined no-undef - 121:9 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/nasm/rand.js - 2:7 error 'assert' is assigned a value but never used @typescript-eslint/no-unused-vars - 2:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:16 error 'require' is not defined no-undef - 104:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/nasm/run.js - 4:1 error 'process' is not defined no-undef - 18:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 18:16 error 'require' is not defined no-undef - 19:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:12 error 'require' is not defined no-undef - 20:7 error 'path' is assigned a value but never used @typescript-eslint/no-unused-vars - 20:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:14 error 'require' is not defined no-undef - 21:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:12 error 'require' is not defined no-undef - 22:17 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:17 error 'require' is not defined no-undef - 24:29 error 'process' is not defined no-undef - 25:30 error 'process' is not defined no-undef - 27:29 error 'process' is not defined no-undef - 29:18 error '__dirname' is not defined no-undef - 36:19 error 'process' is not defined no-undef - 50:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 50:15 error 'require' is not defined no-undef - 56:5 error 'process' is not defined no-undef - 129:49 error Unnecessary escape character: \[ no-useless-escape - 129:53 error Unnecessary escape character: \. no-useless-escape - 129:55 error Unnecessary escape character: \+ no-useless-escape - 143:42 error 'message' is defined but never used @typescript-eslint/no-unused-vars - 213:42 error 'signal' is defined but never used @typescript-eslint/no-unused-vars - 216:17 error 'process' is not defined no-undef - 222:13 error 'process' is not defined no-undef - 245:13 error 'process' is not defined no-undef - 272:13 error 'process' is not defined no-undef - 317:23 error 'process' is not defined no-undef - 351:13 error 'process' is not defined no-undef - 386:15 error 'evaluated_fpu_tag' is assigned a value but never used @typescript-eslint/no-unused-vars - 530:13 error 'process' is not defined no-undef - 536:13 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/qemu/run-qemu.js - 6:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:16 error 'require' is not defined no-undef - 7:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:12 error 'require' is not defined no-undef - 8:30 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:30 error 'require' is not defined no-undef - 9:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:14 error 'require' is not defined no-undef - 13:27 error '__dirname' is not defined no-undef - 23:29 error '__dirname' is not defined no-undef - 38:5 error 'process' is not defined no-undef - 55:9 error 'process' is not defined no-undef - 66:5 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/qemu/run.js - 4:1 error 'process' is not defined no-undef - 6:29 error 'process' is not defined no-undef - 8:11 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:11 error 'require' is not defined no-undef - 9:10 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:10 error 'require' is not defined no-undef - 11:54 error '__dirname' is not defined no-undef - 14:18 error '__dirname' is not defined no-undef - 15:22 error '__dirname' is not defined no-undef - 16:19 error '__dirname' is not defined no-undef - 20:19 error 'process' is not defined no-undef - 66:9 error 'process' is not defined no-undef - 66:30 error 'Buffer' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tests/rust/verify-wasmgen-dummy-output.js - 4:1 error 'process' is not defined no-undef - 6:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:16 error 'require' is not defined no-undef - 7:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:12 error 'require' is not defined no-undef - 8:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:14 error 'require' is not defined no-undef - 10:40 error '__dirname' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tools/docker/alpine/build-state.js - 6:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 6:14 error 'require' is not defined no-undef - 7:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:12 error 'require' is not defined no-undef - 8:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 8:13 error 'require' is not defined no-undef - 10:28 error '__dirname' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/submodules/v86/tools/fetch_network_harness.mjs - 2:10 error 'V86' is defined but never used @typescript-eslint/no-unused-vars - 14:7 error 'a' is assigned a value but never used @typescript-eslint/no-unused-vars - 25:17 error 'Buffer' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/tools/check-translations.js - 25:5 error 'process' is not defined no-undef - 67:26 error 'value' is assigned a value but never used @typescript-eslint/no-unused-vars - 98:35 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 111:5 error 'process' is not defined no-undef - 112:5 error 'process' is not defined no-undef - 115:1 error 'process' is not defined no-undef - 116:1 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/tools/comment-parser/main.js - 299:18 error 'e' is defined but never used @typescript-eslint/no-unused-vars - 359:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/tools/comment-parser/test/test.js - 25:5 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 25:5 error 'require' is not defined no-undef - 34:1 error 'describe' is not defined no-undef - 35:5 error 'describe' is not defined no-undef - 36:9 error 'it' is not defined no-undef - 38:17 error 'lines' is defined but never used @typescript-eslint/no-unused-vars - 49:17 error 'comment' is not defined no-undef - 50:24 error 'comment' is not defined no-undef - 51:30 error 'comment' is not defined no-undef - 56:5 error 'describe' is not defined no-undef - 57:9 error 'it' is not defined no-undef - 63:17 error 'lines' is defined but never used @typescript-eslint/no-unused-vars - 82:17 error 'comment' is not defined no-undef - 83:24 error 'comment' is not defined no-undef - 84:30 error 'comment' is not defined no-undef - 88:9 error 'it' is not defined no-undef - 94:17 error 'lines' is defined but never used @typescript-eslint/no-unused-vars - 102:17 error 'comment' is not defined no-undef - 103:24 error 'comment' is not defined no-undef - 104:30 error 'comment' is not defined no-undef - 109:5 error 'describe' is not defined no-undef - 110:9 error 'it' is not defined no-undef - 131:5 error 'describe' is not defined no-undef - 132:9 error 'describe' is not defined no-undef - 133:13 error 'it' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/tools/comment-writer/main.js - 2:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:13 error 'require' is not defined no-undef - 3:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:14 error 'require' is not defined no-undef - 4:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:16 error 'require' is not defined no-undef - 5:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 5:15 error 'require' is not defined no-undef - 7:15 error 'EXCLUDE_LISTS' is assigned a value but never used @typescript-eslint/no-unused-vars - 7:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 7:33 error 'require' is not defined no-undef - 9:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 9:15 error 'require' is not defined no-undef - 10:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 10:12 error 'require' is not defined no-undef - 11:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 11:15 error 'require' is not defined no-undef - 61:7 error 'cwd' is assigned a value but never used @typescript-eslint/no-unused-vars - 61:13 error 'process' is not defined no-undef - 77:18 error 'context' is defined but never used @typescript-eslint/no-unused-vars - 248:35 error Unnecessary escape character: \$ no-useless-escape - 384:25 error Unexpected 'debugger' statement no-debugger - 515:46 error 'process' is not defined no-undef - 516:25 error 'process' is not defined no-undef - 517:20 error 'process' is not defined no-undef - 517:46 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/tools/file-walker/test.js - 19:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 19:12 error 'require' is not defined no-undef - 20:7 error 'fsp' is assigned a value but never used @typescript-eslint/no-unused-vars - 21:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:15 error 'require' is not defined no-undef - 92:7 error 'modes' is assigned a value but never used @typescript-eslint/no-unused-vars - 99:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 99:14 error 'require' is not defined no-undef - 100:29 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 100:29 error 'require' is not defined no-undef - 117:30 error 'path' is assigned a value but never used @typescript-eslint/no-unused-vars - 150:7 error 'walk_test' is assigned a value but never used @typescript-eslint/no-unused-vars - 162:7 error 'blame_test' is assigned a value but never used @typescript-eslint/no-unused-vars - 165:28 error 'results' is not defined no-undef - 167:5 error Unreachable code no-unreachable - 167:27 error 'results' is not defined no-undef - 200:6 error 'require' is not defined no-undef - 200:23 error 'module' is not defined no-undef - 205:1 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/tools/gen-release-notes.js - 87:26 error 'commit' is defined but never used @typescript-eslint/no-unused-vars - 165:26 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 168:25 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - 188:16 error Do not access Object.prototype method 'hasOwnProperty' from target object no-prototype-builtins - -/Users/emilyzhu/Documents/GitHub/puter/tools/keygen/gen-peer-keys.js - 1:14 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:14 error 'require' is not defined no-undef - 7:20 error 'Buffer' is not defined no-undef - 8:9 error 'Buffer' is not defined no-undef - 9:9 error 'Buffer' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/tools/license-headers/main.js - 20:21 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 20:21 error 'require' is not defined no-undef - 21:24 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 21:24 error 'require' is not defined no-undef - 22:13 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 22:13 error 'require' is not defined no-undef - 24:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 24:16 error 'require' is not defined no-undef - 26:33 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 26:33 error 'require' is not defined no-undef - 27:27 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 27:27 error 'require' is not defined no-undef - 29:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 29:12 error 'require' is not defined no-undef - 30:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 30:15 error 'require' is not defined no-undef - 157:7 error 'license_check_test' is assigned a value but never used @typescript-eslint/no-unused-vars - 157:37 error 'options' is defined but never used @typescript-eslint/no-unused-vars - 162:24 error '__dirname' is not defined no-undef - 169:19 error '__dirname' is not defined no-undef - 180:13 error 'process' is not defined no-undef - 181:13 error 'process' is not defined no-undef - 182:13 error 'process' is not defined no-undef - 205:24 error '__dirname' is not defined no-undef - 220:19 error '__dirname' is not defined no-undef - 224:9 error 'process' is not defined no-undef - 227:13 error 'process' is not defined no-undef - 243:13 error 'process' is not defined no-undef - 249:17 error 'process' is not defined no-undef - 252:17 error 'process' is not defined no-undef - 259:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 259:23 error 'require' is not defined no-undef - 341:20 error '__dirname' is not defined no-undef - 363:9 error 'process' is not defined no-undef - 366:13 error 'process' is not defined no-undef - 396:17 error 'process' is not defined no-undef - 397:17 error 'process' is not defined no-undef - 398:17 error 'process' is not defined no-undef - 399:17 error 'process' is not defined no-undef - 441:21 error 'process' is not defined no-undef - 442:21 error 'process' is not defined no-undef - 443:21 error 'process' is not defined no-undef - 444:21 error 'process' is not defined no-undef - 446:25 error 'process' is not defined no-undef - 448:21 error 'process' is not defined no-undef - 464:17 error 'process' is not defined no-undef - 471:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 471:23 error 'require' is not defined no-undef - 551:25 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 551:25 error 'require' is not defined no-undef - 588:19 error 'process' is not defined no-undef - 592:6 error 'require' is not defined no-undef - 592:23 error 'module' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/tools/migrations-test/main.js - 1:15 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 1:15 error 'require' is not defined no-undef - 2:12 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 2:12 error 'require' is not defined no-undef - 3:23 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 3:23 error 'require' is not defined no-undef - 4:16 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 4:16 error 'require' is not defined no-undef - 25:27 error 'UserError' is not defined no-undef - 52:9 error 'process' is not defined no-undef - 87:13 error 'process' is not defined no-undef - 97:20 error 'process' is not defined no-undef - 114:9 error 'process' is not defined no-undef - 126:9 error 'process' is not defined no-undef - 134:9 error 'process' is not defined no-undef - -/Users/emilyzhu/Documents/GitHub/puter/tools/run-selfhosted.js - 56:19 error 'minor' is assigned a value but never used @typescript-eslint/no-unused-vars - 89:9 error 'PuterAIModule' is assigned a value but never used @typescript-eslint/no-unused-vars - 175:19 error 'message' is assigned a value but never used @typescript-eslint/no-unused-vars - -/Users/emilyzhu/Documents/GitHub/puter/tools/token-count-accuracy/test.js - 103:26 error A `require()` style import is forbidden @typescript-eslint/no-require-imports - 103:26 error 'require' is not defined no-undef - -✖ 30216 problems (30156 errors, 60 warnings) - 13 errors and 60 warnings potentially fixable with the `--fix` option. - diff --git a/package-lock.json b/package-lock.json index 8545322a..409032cc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22,20 +22,18 @@ "uuid": "^9.0.1" }, "devDependencies": { - "@eslint/js": "^9.16.0", + "@eslint/js": "^9.1.1", "chalk": "^4.1.0", "clean-css": "^5.3.2", "dotenv": "^16.4.5", - "eslint": "^9.16.0", + "eslint": "^9.1.1", "express": "^4.18.2", - "globals": "^15.13.0", + "globals": "^15.0.0", "html-entities": "^2.3.3", "html-webpack-plugin": "^5.6.0", "license-check-and-add": "^4.0.5", "mocha": "^10.6.0", "nodemon": "^3.1.0", - "nyc": "^17.1.0", - "typescript-eslint": "^8.17.0", "uglify-js": "^3.17.4", "webpack": "^5.88.2", "webpack-cli": "^5.1.1" @@ -1902,8 +1900,6 @@ "version": "7.26.2", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", - "dev": true, - "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", @@ -1914,9 +1910,9 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.3.tgz", - "integrity": "sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", + "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", "dev": true, "license": "MIT", "engines": { @@ -1924,22 +1920,22 @@ } }, "node_modules/@babel/core": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz", - "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", + "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", "dev": true, "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.26.0", - "@babel/generator": "^7.26.0", - "@babel/helper-compilation-targets": "^7.25.9", - "@babel/helper-module-transforms": "^7.26.0", - "@babel/helpers": "^7.26.0", - "@babel/parser": "^7.26.0", - "@babel/template": "^7.25.9", - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.26.0", + "@babel/code-frame": "^7.24.7", + "@babel/generator": "^7.24.7", + "@babel/helper-compilation-targets": "^7.24.7", + "@babel/helper-module-transforms": "^7.24.7", + "@babel/helpers": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/template": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -1972,13 +1968,12 @@ } }, "node_modules/@babel/generator": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.3.tgz", - "integrity": "sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==", - "license": "MIT", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.2.tgz", + "integrity": "sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==", "dependencies": { - "@babel/parser": "^7.26.3", - "@babel/types": "^7.26.3", + "@babel/parser": "^7.26.2", + "@babel/types": "^7.26.0", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" @@ -1988,15 +1983,15 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.9.tgz", - "integrity": "sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", + "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.25.9", - "@babel/helper-validator-option": "^7.25.9", - "browserslist": "^4.24.0", + "@babel/compat-data": "^7.24.7", + "@babel/helper-validator-option": "^7.24.7", + "browserslist": "^4.22.2", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -2028,29 +2023,31 @@ } }, "node_modules/@babel/helper-module-imports": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", - "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", + "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", - "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", + "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", "dev": true, "license": "MIT", "dependencies": { - "@babel/helper-module-imports": "^7.25.9", - "@babel/helper-validator-identifier": "^7.25.9", - "@babel/traverse": "^7.25.9" + "@babel/helper-environment-visitor": "^7.24.7", + "@babel/helper-module-imports": "^7.24.7", + "@babel/helper-simple-access": "^7.24.7", + "@babel/helper-split-export-declaration": "^7.24.7", + "@babel/helper-validator-identifier": "^7.24.7" }, "engines": { "node": ">=6.9.0" @@ -2059,11 +2056,37 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-simple-access": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", + "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.24.7", + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", + "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.24.7" + }, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-string-parser": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", - "license": "MIT", "engines": { "node": ">=6.9.0" } @@ -2072,15 +2095,14 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", - "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", - "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", + "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", "dev": true, "license": "MIT", "engines": { @@ -2088,26 +2110,25 @@ } }, "node_modules/@babel/helpers": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.0.tgz", - "integrity": "sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==", + "version": "7.24.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", + "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", "dev": true, "license": "MIT", "dependencies": { - "@babel/template": "^7.25.9", - "@babel/types": "^7.26.0" + "@babel/template": "^7.24.7", + "@babel/types": "^7.24.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.3.tgz", - "integrity": "sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==", - "license": "MIT", + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.2.tgz", + "integrity": "sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==", "dependencies": { - "@babel/types": "^7.26.3" + "@babel/types": "^7.26.0" }, "bin": { "parser": "bin/babel-parser.js" @@ -2133,8 +2154,6 @@ "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.9.tgz", "integrity": "sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==", - "dev": true, - "license": "MIT", "dependencies": { "@babel/code-frame": "^7.25.9", "@babel/parser": "^7.25.9", @@ -2145,17 +2164,15 @@ } }, "node_modules/@babel/traverse": { - "version": "7.26.4", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.4.tgz", - "integrity": "sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==", - "dev": true, - "license": "MIT", + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.9.tgz", + "integrity": "sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==", "dependencies": { - "@babel/code-frame": "^7.26.2", - "@babel/generator": "^7.26.3", - "@babel/parser": "^7.26.3", + "@babel/code-frame": "^7.25.9", + "@babel/generator": "^7.25.9", + "@babel/parser": "^7.25.9", "@babel/template": "^7.25.9", - "@babel/types": "^7.26.3", + "@babel/types": "^7.25.9", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -2173,10 +2190,9 @@ } }, "node_modules/@babel/types": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.3.tgz", - "integrity": "sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==", - "license": "MIT", + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.0.tgz", + "integrity": "sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==", "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" @@ -2242,49 +2258,19 @@ } }, "node_modules/@eslint-community/regexpp": { - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", - "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", "dev": true, - "license": "MIT", "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, - "node_modules/@eslint/config-array": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.1.tgz", - "integrity": "sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@eslint/object-schema": "^2.1.5", - "debug": "^4.3.1", - "minimatch": "^3.1.2" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/core": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.1.tgz", - "integrity": "sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@types/json-schema": "^7.0.15" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, "node_modules/@eslint/eslintrc": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", - "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.0.2.tgz", + "integrity": "sha512-wV19ZEGEMAC1eHgrS7UQPqsdEiCIbTKTasEfcXAigzoXICcqZSjBZEHlZwNVvKg6UBCjSlos84XiLqsRJnIcIg==", "dev": true, - "license": "MIT", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", @@ -2308,7 +2294,6 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=18" }, @@ -2317,34 +2302,10 @@ } }, "node_modules/@eslint/js": { - "version": "9.16.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.16.0.tgz", - "integrity": "sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==", + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.1.1.tgz", + "integrity": "sha512-5WoDz3Y19Bg2BnErkZTp0en+c/i9PvgFS7MBe1+m60HjFr0hrphlAGp4yzI7pxpt4xShln4ZyYp4neJm8hmOkQ==", "dev": true, - "license": "MIT", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/object-schema": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.5.tgz", - "integrity": "sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/plugin-kit": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.4.tgz", - "integrity": "sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "levn": "^0.4.1" - }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } @@ -2550,42 +2511,18 @@ "resolved": "src/terminal", "link": true }, - "node_modules/@humanfs/core": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", - "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "node_modules/@humanwhocodes/config-array": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", + "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/@humanfs/node": { - "version": "0.16.6", - "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", - "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", - "dev": true, - "license": "Apache-2.0", "dependencies": { - "@humanfs/core": "^0.19.1", - "@humanwhocodes/retry": "^0.3.0" + "@humanwhocodes/object-schema": "^2.0.3", + "debug": "^4.3.1", + "minimatch": "^3.0.5" }, "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", - "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=18.18" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" + "node": ">=10.10.0" } }, "node_modules/@humanwhocodes/module-importer": { @@ -2601,12 +2538,17 @@ "url": "https://github.com/sponsors/nzakas" } }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "dev": true + }, "node_modules/@humanwhocodes/retry": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", - "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.2.3.tgz", + "integrity": "sha512-X38nUbachlb01YMlvPFojKoiXq+LzZvuSce70KPMPdeM1Rj03k4dR7lDslhbqXn3Ang4EU3+EAmwEAsbrjHW3g==", "dev": true, - "license": "Apache-2.0", "engines": { "node": ">=18.18" }, @@ -7061,230 +7003,6 @@ "integrity": "sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==", "license": "MIT" }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.17.0.tgz", - "integrity": "sha512-HU1KAdW3Tt8zQkdvNoIijfWDMvdSweFYm4hWh+KwhPstv+sCmWb89hCIP8msFm9N1R/ooh9honpSuvqKWlYy3w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "8.17.0", - "@typescript-eslint/type-utils": "8.17.0", - "@typescript-eslint/utils": "8.17.0", - "@typescript-eslint/visitor-keys": "8.17.0", - "graphemer": "^1.4.0", - "ignore": "^5.3.1", - "natural-compare": "^1.4.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", - "eslint": "^8.57.0 || ^9.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.17.0.tgz", - "integrity": "sha512-Drp39TXuUlD49F7ilHHCG7TTg8IkA+hxCuULdmzWYICxGXvDXmDmWEjJYZQYgf6l/TFfYNE167m7isnc3xlIEg==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "@typescript-eslint/scope-manager": "8.17.0", - "@typescript-eslint/types": "8.17.0", - "@typescript-eslint/typescript-estree": "8.17.0", - "@typescript-eslint/visitor-keys": "8.17.0", - "debug": "^4.3.4" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.17.0.tgz", - "integrity": "sha512-/ewp4XjvnxaREtqsZjF4Mfn078RD/9GmiEAtTeLQ7yFdKnqwTOgRMSvFz4et9U5RiJQ15WTGXPLj89zGusvxBg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "8.17.0", - "@typescript-eslint/visitor-keys": "8.17.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.17.0.tgz", - "integrity": "sha512-q38llWJYPd63rRnJ6wY/ZQqIzPrBCkPdpIsaCfkR3Q4t3p6sb422zougfad4TFW9+ElIFLVDzWGiGAfbb/v2qw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/typescript-estree": "8.17.0", - "@typescript-eslint/utils": "8.17.0", - "debug": "^4.3.4", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/types": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.17.0.tgz", - "integrity": "sha512-gY2TVzeve3z6crqh2Ic7Cr+CAv6pfb0Egee7J5UAVWCpVvDI/F71wNfolIim4FE6hT15EbpZFVUj9j5i38jYXA==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.17.0.tgz", - "integrity": "sha512-JqkOopc1nRKZpX+opvKqnM3XUlM7LpFMD0lYxTqOTKQfCWAmxw45e3qlOCsEqEB2yuacujivudOFpCnqkBDNMw==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "@typescript-eslint/types": "8.17.0", - "@typescript-eslint/visitor-keys": "8.17.0", - "debug": "^4.3.4", - "fast-glob": "^3.3.2", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^1.3.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@typescript-eslint/utils": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.17.0.tgz", - "integrity": "sha512-bQC8BnEkxqG8HBGKwG9wXlZqg37RKSMY7v/X8VEWD8JG2JuTHuNK0VFvMPMUKQcbk6B+tf05k+4AShAEtCtJ/w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "8.17.0", - "@typescript-eslint/types": "8.17.0", - "@typescript-eslint/typescript-estree": "8.17.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.17.0.tgz", - "integrity": "sha512-1Hm7THLpO6ww5QU6H/Qp+AusUUl+z/CAm3cNZZ0jQvon9yicgO7Rwd+/WWRpMKLYV6p2UvdbR27c86rzCPpreg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "8.17.0", - "eslint-visitor-keys": "^4.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, "node_modules/@webassemblyjs/ast": { "version": "1.12.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.12.1.tgz", @@ -7546,7 +7264,6 @@ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, - "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } @@ -8422,7 +8139,6 @@ "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, - "license": "MIT", "engines": { "node": ">=6" } @@ -9926,33 +9642,28 @@ } }, "node_modules/eslint": { - "version": "9.16.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.16.0.tgz", - "integrity": "sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==", + "version": "9.1.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.1.1.tgz", + "integrity": "sha512-b4cRQ0BeZcSEzPpY2PjFY70VbO32K7BStTGtBsnIGdTSEEQzBi8hPBcGQmTG2zUvFr9uLe0TK42bw8YszuHEqg==", "dev": true, - "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.12.1", - "@eslint/config-array": "^0.19.0", - "@eslint/core": "^0.9.0", - "@eslint/eslintrc": "^3.2.0", - "@eslint/js": "9.16.0", - "@eslint/plugin-kit": "^0.2.3", - "@humanfs/node": "^0.16.6", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^3.0.2", + "@eslint/js": "9.1.1", + "@humanwhocodes/config-array": "^0.13.0", "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.4.1", - "@types/estree": "^1.0.6", - "@types/json-schema": "^7.0.15", + "@humanwhocodes/retry": "^0.2.3", + "@nodelib/fs.walk": "^1.2.8", "ajv": "^6.12.4", "chalk": "^4.0.0", - "cross-spawn": "^7.0.5", + "cross-spawn": "^7.0.2", "debug": "^4.3.2", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^8.2.0", - "eslint-visitor-keys": "^4.2.0", - "espree": "^10.3.0", - "esquery": "^1.5.0", + "eslint-scope": "^8.0.1", + "eslint-visitor-keys": "^4.0.0", + "espree": "^10.0.1", + "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^8.0.0", @@ -9961,11 +9672,15 @@ "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", - "optionator": "^0.9.3" + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" }, "bin": { "eslint": "bin/eslint.js" @@ -9974,15 +9689,7 @@ "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { - "url": "https://eslint.org/donate" - }, - "peerDependencies": { - "jiti": "*" - }, - "peerDependenciesMeta": { - "jiti": { - "optional": true - } + "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-scope": { @@ -9998,11 +9705,10 @@ } }, "node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz", + "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==", "dev": true, - "license": "Apache-2.0", "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, @@ -10011,11 +9717,10 @@ } }, "node_modules/eslint/node_modules/eslint-scope": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", - "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.1.tgz", + "integrity": "sha512-pL8XjgP4ZOmmwfFE8mEhSxA7ZY4C+LWyqjQ3o4yWkkmD0qcMT9kkW3zWHOczhWcjTSgqycYAgwSlXvZltv65og==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" @@ -10032,7 +9737,6 @@ "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } @@ -10059,15 +9763,14 @@ } }, "node_modules/espree": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", - "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.0.1.tgz", + "integrity": "sha512-MWkrWZbJsL2UwnjxTX3gG8FneachS/Mwg7tdGXce011sJd5b0JG54vat5KHnfSBODZ3Wvzd2WnjxyzsRoVv+ww==", "dev": true, - "license": "BSD-2-Clause", "dependencies": { - "acorn": "^8.14.0", + "acorn": "^8.11.3", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^4.2.0" + "eslint-visitor-keys": "^4.0.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" @@ -10980,11 +10683,10 @@ } }, "node_modules/globals": { - "version": "15.13.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-15.13.0.tgz", - "integrity": "sha512-49TewVEz0UxZjr1WYYsWpPrhyC/B/pA8Bq0fUmet2n+eR7yn0IvNzNaoBwnK6mdkzcN+se7Ez9zUgULTz2QH4g==", + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.0.0.tgz", + "integrity": "sha512-m/C/yR4mjO6pXDTm9/R/SpYTAIyaUB4EOzcaaMEl7mds7Mshct9GfejiJNQGjHHbdMPey13Kpu4TMbYi9ex1pw==", "dev": true, - "license": "MIT", "engines": { "node": ">=18" }, @@ -11050,13 +10752,6 @@ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true, - "license": "MIT" - }, "node_modules/groq-sdk": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/groq-sdk/-/groq-sdk-0.5.0.tgz", @@ -11523,7 +11218,6 @@ "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, - "license": "MIT", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" @@ -11540,7 +11234,6 @@ "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, - "license": "MIT", "engines": { "node": ">=4" } @@ -11803,6 +11496,15 @@ "node": ">=0.12.0" } }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/is-plain-obj": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", @@ -12260,7 +11962,6 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, @@ -13649,9 +13350,9 @@ } }, "node_modules/nyc": { - "version": "17.1.0", - "resolved": "https://registry.npmjs.org/nyc/-/nyc-17.1.0.tgz", - "integrity": "sha512-U42vQ4czpKa0QdI1hu950XuNhYqgoM+ZF1HT+VuUHL9hPfDPVvNQyltmMqdE9bUHMVa+8yNbc3QKTj8zQhlVxQ==", + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz", + "integrity": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==", "dev": true, "license": "ISC", "dependencies": { @@ -13662,12 +13363,12 @@ "decamelize": "^1.2.0", "find-cache-dir": "^3.2.0", "find-up": "^4.1.0", - "foreground-child": "^3.3.0", + "foreground-child": "^2.0.0", "get-package-type": "^0.1.0", "glob": "^7.1.6", "istanbul-lib-coverage": "^3.0.0", "istanbul-lib-hook": "^3.0.0", - "istanbul-lib-instrument": "^6.0.2", + "istanbul-lib-instrument": "^4.0.0", "istanbul-lib-processinfo": "^2.0.2", "istanbul-lib-report": "^3.0.0", "istanbul-lib-source-maps": "^4.0.0", @@ -13687,7 +13388,7 @@ "nyc": "bin/nyc.js" }, "engines": { - "node": ">=18" + "node": ">=8.9" } }, "node_modules/nyc/node_modules/cliui": { @@ -13716,36 +13417,6 @@ "node": ">=8" } }, - "node_modules/nyc/node_modules/foreground-child": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", - "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", - "dev": true, - "license": "ISC", - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/nyc/node_modules/foreground-child/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/nyc/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", @@ -13768,23 +13439,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/nyc/node_modules/istanbul-lib-instrument": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz", - "integrity": "sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "@babel/core": "^7.23.9", - "@babel/parser": "^7.23.9", - "@istanbuljs/schema": "^0.1.3", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^7.5.4" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/nyc/node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", @@ -14136,7 +13790,6 @@ "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, - "license": "MIT", "dependencies": { "callsites": "^3.0.0" }, @@ -16257,6 +15910,12 @@ "integrity": "sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg==", "license": "MIT" }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, "node_modules/tiktoken": { "version": "1.0.16", "resolved": "https://registry.npmjs.org/tiktoken/-/tiktoken-1.0.16.tgz", @@ -16427,19 +16086,6 @@ "node": ">= 14.0.0" } }, - "node_modules/ts-api-utils": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.4.3.tgz", - "integrity": "sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=16" - }, - "peerDependencies": { - "typescript": ">=4.2.0" - } - }, "node_modules/tslib": { "version": "2.6.3", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.3.tgz", @@ -16536,33 +16182,6 @@ "node": ">=14.17" } }, - "node_modules/typescript-eslint": { - "version": "8.17.0", - "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.17.0.tgz", - "integrity": "sha512-409VXvFd/f1br1DCbuKNFqQpXICoTB+V51afcwG1pn1a3Cp92MqAUges3YjwEdQ0cMUoCIodjVDAYzyD8h3SYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/eslint-plugin": "8.17.0", - "@typescript-eslint/parser": "8.17.0", - "@typescript-eslint/utils": "8.17.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, "node_modules/ua-parser-js": { "version": "1.0.38", "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.38.tgz", @@ -17680,203 +17299,12 @@ "typescript": "^5.1.6" } }, - "src/backend/node_modules/cliui": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", - "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^6.2.0" - } - }, - "src/backend/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "src/backend/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "src/backend/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "src/backend/node_modules/nyc": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz", - "integrity": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==", - "dev": true, - "license": "ISC", - "dependencies": { - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "caching-transform": "^4.0.0", - "convert-source-map": "^1.7.0", - "decamelize": "^1.2.0", - "find-cache-dir": "^3.2.0", - "find-up": "^4.1.0", - "foreground-child": "^2.0.0", - "get-package-type": "^0.1.0", - "glob": "^7.1.6", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-hook": "^3.0.0", - "istanbul-lib-instrument": "^4.0.0", - "istanbul-lib-processinfo": "^2.0.2", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.0.2", - "make-dir": "^3.0.0", - "node-preload": "^0.2.1", - "p-map": "^3.0.0", - "process-on-spawn": "^1.0.0", - "resolve-from": "^5.0.0", - "rimraf": "^3.0.0", - "signal-exit": "^3.0.2", - "spawn-wrap": "^2.0.0", - "test-exclude": "^6.0.0", - "yargs": "^15.0.2" - }, - "bin": { - "nyc": "bin/nyc.js" - }, - "engines": { - "node": ">=8.9" - } - }, - "src/backend/node_modules/nyc/node_modules/yargs": { - "version": "15.4.1", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", - "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", - "dev": true, - "license": "MIT", - "dependencies": { - "cliui": "^6.0.0", - "decamelize": "^1.2.0", - "find-up": "^4.1.0", - "get-caller-file": "^2.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^2.0.0", - "set-blocking": "^2.0.0", - "string-width": "^4.2.0", - "which-module": "^2.0.0", - "y18n": "^4.0.0", - "yargs-parser": "^18.1.2" - }, - "engines": { - "node": ">=8" - } - }, - "src/backend/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^2.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "src/backend/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, "src/backend/node_modules/tweetnacl": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.3.tgz", "integrity": "sha512-6rt+RN7aOi1nGMyC4Xa5DdYiukl2UWCbcJft7YhxReBGQD7OAM8Pbxw6YMo4r2diNEA8FEmu32YOn9rhaiE5yw==", "license": "Unlicense" }, - "src/backend/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "src/backend/node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==", - "dev": true, - "license": "ISC" - }, - "src/backend/node_modules/yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" - }, - "engines": { - "node": ">=6" - } - }, "src/contextlink": { "version": "0.0.0", "extraneous": true, diff --git a/package.json b/package.json index f352216a..e00e4c02 100644 --- a/package.json +++ b/package.json @@ -11,20 +11,18 @@ "lib": "lib" }, "devDependencies": { - "@eslint/js": "^9.16.0", + "@eslint/js": "^9.1.1", "chalk": "^4.1.0", "clean-css": "^5.3.2", "dotenv": "^16.4.5", - "eslint": "^9.16.0", + "eslint": "^9.1.1", "express": "^4.18.2", - "globals": "^15.13.0", + "globals": "^15.0.0", "html-entities": "^2.3.3", "html-webpack-plugin": "^5.6.0", "license-check-and-add": "^4.0.5", "mocha": "^10.6.0", "nodemon": "^3.1.0", - "nyc": "^17.1.0", - "typescript-eslint": "^8.17.0", "uglify-js": "^3.17.4", "webpack": "^5.88.2", "webpack-cli": "^5.1.1" @@ -34,8 +32,7 @@ "start=gui": "nodemon --exec \"node dev-server.js\" ", "start": "node ./tools/run-selfhosted.js", "build": "cd src/gui; node ./build.js", - "check-translations": "node tools/check-translations.js", - "lint": "eslint ." + "check-translations": "node tools/check-translations.js" }, "workspaces": [ "src/*", @@ -56,11 +53,5 @@ "simple-git": "^3.25.0", "string-template": "^1.0.0", "uuid": "^9.0.1" - }, - "nyc": { - "include": ["src/**/*.js"], - "exclude": ["test/**/*.js"], - "reporter": ["text", "html"], - "all": true -} + } } diff --git a/src/phoenix/test/test-git-detection.js b/src/phoenix/test/test-git-detection.js deleted file mode 100644 index d98ad463..00000000 --- a/src/phoenix/test/test-git-detection.js +++ /dev/null @@ -1,172 +0,0 @@ -/* - * Copyright (C) 2024 Puter Technologies Inc. - * - * This file is part of Puter. - * - * Puter is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published - * by the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ -import assert from 'assert'; - -// Function to test -async function hasGitDirectory(items) { - // Case 1: Single Puter path - if (typeof items === 'string' && (items.startsWith('/') || items.startsWith('~'))) { - const stat = await global.puter.fs.stat(items); - if (stat.is_dir) { - const files = await global.puter.fs.readdir(items); - return files.some(file => file.name === '.git' && file.is_dir); - } - return false; - } - - // Case 2: Array of Puter items - if (Array.isArray(items) && items[0]?.uid) { - return items.some(item => item.name === '.git' && item.is_dir); - } - - // Case 3: Local items (DataTransferItems) - if (Array.isArray(items)) { - for (let item of items) { - if (item.fullPath?.includes('/.git/') || - item.path?.includes('/.git/') || - item.filepath?.includes('/.git/')) { - return true; - } - } - } - - return false; -} - -describe('hasGitDirectory', () => { - // Mock puter.fs for testing - const mockPuterFS = { - stat: async (path) => ({ - is_dir: path.endsWith('dir') - }), - readdir: async (path) => { - if (path === '/path/to/git/dir') { - return [ - { name: '.git', is_dir: true }, - { name: 'src', is_dir: true } - ]; - } - return [ - { name: 'src', is_dir: true }, - { name: 'test', is_dir: true } - ]; - } - }; - - beforeEach(() => { - // Set up global puter object before each test - global.puter = { fs: mockPuterFS }; - }); - - afterEach(() => { - // Clean up global puter object after each test - delete global.puter; - }); - - describe('Case 1: Single Puter path', () => { - it('should return true for directory containing .git', async () => { - const result = await hasGitDirectory('/path/to/git/dir'); - assert.strictEqual(result, true); - }); - - it('should return false for directory without .git', async () => { - const result = await hasGitDirectory('/path/to/normal/dir'); - assert.strictEqual(result, false); - }); - - it('should return false for non-directory path', async () => { - const result = await hasGitDirectory('/path/to/file'); - assert.strictEqual(result, false); - }); - }); - - describe('Case 2: Array of Puter items', () => { - it('should return true when .git directory is present', async () => { - const items = [ - { uid: '1', name: 'src', is_dir: true }, - { uid: '2', name: '.git', is_dir: true }, - { uid: '3', name: 'test', is_dir: true } - ]; - const result = await hasGitDirectory(items); - assert.strictEqual(result, true); - }); - - it('should return false when no .git directory is present', async () => { - const items = [ - { uid: '1', name: 'src', is_dir: true }, - { uid: '2', name: 'test', is_dir: true } - ]; - const result = await hasGitDirectory(items); - assert.strictEqual(result, false); - }); - }); - - describe('Case 3: Local items (DataTransferItems)', () => { - it('should return true when path contains .git directory', async () => { - const items = [ - { fullPath: '/project/.git/config' }, - { fullPath: '/project/src/index.js' } - ]; - const result = await hasGitDirectory(items); - assert.strictEqual(result, true); - }); - - it('should return true when using alternative path properties', async () => { - const items = [ - { path: '/project/.git/config' }, - { filepath: '/project/src/index.js' } - ]; - const result = await hasGitDirectory(items); - assert.strictEqual(result, true); - }); - - it('should return false when no .git directory is present', async () => { - const items = [ - { fullPath: '/project/src/index.js' }, - { fullPath: '/project/test/test.js' } - ]; - const result = await hasGitDirectory(items); - assert.strictEqual(result, false); - }); - }); - - describe('Edge cases', () => { - it('should handle empty array input', async () => { - const result = await hasGitDirectory([]); - assert.strictEqual(result, false); - }); - - it('should handle invalid input', async () => { - const result = await hasGitDirectory(null); - assert.strictEqual(result, false); - }); - - it('should handle mixed path formats', async () => { - const items = [ - { fullPath: '/project/src/index.js' }, - { path: '/project/.git/config' }, - { filepath: '/project/test/test.js' } - ]; - const result = await hasGitDirectory(items); - assert.strictEqual(result, true); - }); - }); -}); - - diff --git a/src/phoenix/test/test-git-warning-dialog.js b/src/phoenix/test/test-git-warning-dialog.js deleted file mode 100644 index b0afde3d..00000000 --- a/src/phoenix/test/test-git-warning-dialog.js +++ /dev/null @@ -1,278 +0,0 @@ -/* - * Copyright (C) 2024 Puter Technologies Inc. - * - * This file is part of Puter. - * - * Puter is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License as published - * by the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . - */ -import assert from 'assert'; -import { JSDOM } from 'jsdom'; - -// Function to test -async function showGitWarningDialog() { - try { - // Check if the user has chosen to skip the warning - const skipWarning = await global.puter.kv.get('skip-git-warning'); - - // Log retrieved value for debugging - console.log('Retrieved skip-git-warning:', skipWarning); - - // If the user opted to skip the warning, proceed without showing it - if (skipWarning === true) { - return true; - } - } catch (error) { - console.error('Error accessing KV store:', error); - // If KV store access fails, fall back to showing the dialog - } - - // Create the modal dialog - const modal = document.createElement('div'); - modal.innerHTML = ` -
-

Warning: Git Repository Detected

-

A .git directory was found in your deployment files. Deploying .git directories may:

-
    -
  • Expose sensitive information like commit history and configuration
  • -
  • Significantly increase deployment size
  • -
-
- - -
-
- - -
-
-
- `; - document.body.appendChild(modal); - - return new Promise((resolve) => { - // Handle "Continue Deployment" - document.getElementById('continue-deployment').addEventListener('click', async () => { - try { - const skipChecked = document.getElementById('skip-git-warning')?.checked; - if (skipChecked) { - console.log("Saving 'skip-git-warning' preference as true"); - await global.puter.kv.set('skip-git-warning', true); - } - } catch (error) { - console.error('Error saving user preference to KV store:', error); - } finally { - document.body.removeChild(modal); - resolve(true); // Continue deployment - } - }); - - // Handle "Cancel Deployment" - document.getElementById('cancel-deployment').addEventListener('click', () => { - document.body.removeChild(modal); - resolve(false); // Cancel deployment - }); - }); -} - -describe('showGitWarningDialog', () => { - let dom; - let consoleLogs = []; - let consoleErrors = []; - - // Mock console methods - const mockConsole = { - log: (msg) => consoleLogs.push(msg), - error: (msg) => consoleErrors.push(msg) - }; - - // Mock puter.kv - const mockPuterKV = { - get: async () => false, - set: async () => {} - }; - - beforeEach(() => { - // Set up JSDOM with all required features - dom = new JSDOM(``, { - url: 'http://localhost', - runScripts: 'dangerously', - resources: 'usable', - pretendToBeVisual: true - }); - - // Set up global objects - global.document = dom.window.document; - global.window = dom.window; - global.HTMLElement = dom.window.HTMLElement; - global.Element = dom.window.Element; - global.Node = dom.window.Node; - global.navigator = dom.window.navigator; - global.console = { ...console, ...mockConsole }; - global.puter = { kv: mockPuterKV }; - - // Reset console logs - consoleLogs = []; - consoleErrors = []; - }); - - afterEach(() => { - // Clean up - dom.window.document.body.innerHTML = ''; - }); - - describe('Skip Warning Behavior', () => { - it('should skip dialog if warning is disabled', async () => { - global.puter.kv.get = async () => true; - - const result = await showGitWarningDialog(); - - assert.strictEqual(result, true); - assert.strictEqual(dom.window.document.body.children.length, 0); - assert.ok(consoleLogs.some(log => log.includes('Retrieved skip-git-warning'))); - }); - - it('should show dialog if warning is not disabled', async () => { - global.puter.kv.get = async () => false; - - const dialogPromise = showGitWarningDialog(); - - // Wait for the next tick to allow DOM updates - await new Promise(resolve => setTimeout(resolve, 0)); - - // Check if dialog is shown - assert.strictEqual(dom.window.document.body.children.length, 1); - assert.ok(dom.window.document.querySelector('h3').textContent.includes('Git Repository Detected')); - - // Simulate clicking "Cancel" to resolve the promise - dom.window.document.getElementById('cancel-deployment').click(); - const result = await dialogPromise; - assert.strictEqual(result, false); - }); - - it('should handle KV store error gracefully', async () => { - global.puter.kv.get = async () => { - throw new Error('KV store error'); - }; - - const dialogPromise = showGitWarningDialog(); - - // Wait for the next tick to allow DOM updates - await new Promise(resolve => setTimeout(resolve, 0)); - - // Check if dialog is shown - assert.strictEqual(dom.window.document.body.children.length, 1); - assert.ok(consoleErrors.some(error => error.includes('Error accessing KV store'))); - - // Cleanup - dom.window.document.getElementById('cancel-deployment').click(); - await dialogPromise; - }); - }); - - describe('User Interaction', () => { - it('should save preference when checkbox is checked', async () => { - let kvSetCalled = false; - global.puter.kv.set = async (key, value) => { - assert.strictEqual(key, 'skip-git-warning'); - assert.strictEqual(value, true); - kvSetCalled = true; - }; - - const dialogPromise = showGitWarningDialog(); - - // Wait for the next tick to allow DOM updates - await new Promise(resolve => setTimeout(resolve, 0)); - - const checkbox = dom.window.document.getElementById('skip-git-warning'); - checkbox.checked = true; - - dom.window.document.getElementById('continue-deployment').click(); - const result = await dialogPromise; - - assert.strictEqual(result, true); - assert.ok(kvSetCalled); - assert.ok(consoleLogs.some(log => log.includes("Saving 'skip-git-warning' preference"))); - }); - - it('should not save preference when checkbox is unchecked', async () => { - let kvSetCalled = false; - global.puter.kv.set = async () => { - kvSetCalled = true; - }; - - const dialogPromise = showGitWarningDialog(); - - // Wait for the next tick to allow DOM updates - await new Promise(resolve => setTimeout(resolve, 0)); - - dom.window.document.getElementById('continue-deployment').click(); - await dialogPromise; - - assert.strictEqual(kvSetCalled, false); - }); - - it('should handle KV set error gracefully', async () => { - global.puter.kv.set = async () => { - throw new Error('KV set error'); - }; - - const dialogPromise = showGitWarningDialog(); - - // Wait for the next tick to allow DOM updates - await new Promise(resolve => setTimeout(resolve, 0)); - - const checkbox = dom.window.document.getElementById('skip-git-warning'); - checkbox.checked = true; - - dom.window.document.getElementById('continue-deployment').click(); - const result = await dialogPromise; - - assert.strictEqual(result, true); - assert.ok(consoleErrors.some(error => error.includes('Error saving user preference'))); - }); - }); - - describe('Dialog UI', () => { - it('should create dialog with all required elements', async () => { - const dialogPromise = showGitWarningDialog(); - - // Wait for the next tick to allow DOM updates - await new Promise(resolve => setTimeout(resolve, 0)); - - assert.ok(dom.window.document.querySelector('h3')); - assert.ok(dom.window.document.querySelector('ul')); - assert.ok(dom.window.document.getElementById('skip-git-warning')); - assert.ok(dom.window.document.getElementById('cancel-deployment')); - assert.ok(dom.window.document.getElementById('continue-deployment')); - - // Cleanup - dom.window.document.getElementById('cancel-deployment').click(); - await dialogPromise; - }); - - it('should remove dialog after interaction', async () => { - const dialogPromise = showGitWarningDialog(); - - // Wait for the next tick to allow DOM updates - await new Promise(resolve => setTimeout(resolve, 0)); - - assert.strictEqual(dom.window.document.body.children.length, 1); - - dom.window.document.getElementById('continue-deployment').click(); - await dialogPromise; - - assert.strictEqual(dom.window.document.body.children.length, 0); - }); - }); -});