Skip to content

Commit 2b630ee

Browse files
committed
Derp
1 parent 22240ed commit 2b630ee

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

eslint.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export default {
44
ecmaVersion: 2020,
55
sourceType: "module"
66
},
7-
ignores: ['LASLAZWorker.js'],
7+
ignores: ['source/loading2/**'],
88
rules: {
99
'arrow-body-style': ['error', 'always'],
1010
'arrow-parens': 'error',
@@ -15,7 +15,7 @@ export default {
1515
semi: ['error', 'always'],
1616
'constructor-super': 'error',
1717
curly: 'error',
18-
eqeqeq: 'error',
18+
eqeqeq: ['error', 'smart'],
1919
'guard-for-in': 'off',
2020
'id-blacklist': 'off',
2121
'id-match': 'off',

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
"copy-webpack-plugin": "11.0.0",
4444
"css-loader": "6.7.3",
4545
"eslint": "9.9.0",
46-
"eslint-plugin-tsdoc": "0.3.0",
4746
"eslint-plugin-typescript": "0.14.0",
4847
"html-loader": "4.2.0",
4948
"html-webpack-plugin": "5.5.0",

source/utils/binary-heap.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ BinaryHeap.prototype = {
4141
// it.
4242
for (var i = 0; i < length; i++)
4343
{
44-
if (this.content[i] != node) {continue;}
44+
if (this.content[i] !== node) {continue;}
4545
// When it is found, the process seen in 'pop' is repeated
4646
// to fill up the hole.
4747
var end = this.content.pop();
4848
// If the element we popped was the one we needed to remove,
4949
// we're done.
50-
if (i == length - 1) {break;}
50+
if (i === length - 1) {break;}
5151
// Otherwise, we replace the removed element with the popped
5252
// one, and allow it to float up or sink down as appropriate.
5353
this.content[i] = end;

tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
"experimentalDecorators": true,
1919
"typeRoots": ["node_modules/@types"],
2020
"lib": ["es2017", "dom"],
21-
"plugins": [],
22-
"esModuleInterop": true
21+
"plugins": []
2322
},
2423
"include": ["source/**/*.ts"],
2524
"exclude": ["node_modules"]

0 commit comments

Comments
 (0)