@ -0,0 +1,6 @@
module.exports = {
"extends": ["react-app"],
rules: {
'@typescript-eslint/no-unused-vars': "off"
}
@ -1,7 +0,0 @@
'no-debugger' : 'off',
'no-unused-vars': 'warn',
'vue/no-unused-vars': "off"
@ -37,7 +37,7 @@ export class GLTexture {
* @returns
*/
public static isPowerOfTwo(x: number) {
return (x & (x - 1)) == 0;
return (x & (x - 1)) === 0;
/**