mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-17 14:08:41 -09:00
lint
This commit is contained in:
parent
5f690fc600
commit
c656785256
2 changed files with 11 additions and 2 deletions
|
|
@ -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": [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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';
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue