This commit is contained in:
Labhansh Agrawal 2023-02-21 11:37:16 +05:30
parent 5f690fc600
commit c656785256
2 changed files with 11 additions and 2 deletions

View file

@ -59,7 +59,16 @@
"bracketSameLine": false "bracketSameLine": false
} }
], ],
"eslint-comments/no-unused-disable": "error" "eslint-comments/no-unused-disable": "error",
"react/no-unknown-property":[
"error",
{
"ignore": [
"jsx",
"global"
]
}
]
}, },
"overrides": [ "overrides": [
{ {

View file

@ -1,4 +1,4 @@
import {app, BrowserWindow, shell, Menu, BrowserWindowConstructorOptions, Event} from 'electron'; import {app, BrowserWindow, shell, Menu, BrowserWindowConstructorOptions} from 'electron';
import {isAbsolute, normalize, sep} from 'path'; import {isAbsolute, normalize, sep} from 'path';
import {URL, fileURLToPath} from 'url'; import {URL, fileURLToPath} from 'url';
import {v4 as uuidv4} from 'uuid'; import {v4 as uuidv4} from 'uuid';