File tree Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Expand file tree Collapse file tree 4 files changed +5
-7
lines changed Original file line number Diff line number Diff 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' ,
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff line change 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" ]
You can’t perform that action at this time.
0 commit comments