mirror of
https://github.com/hensm/fx_cast.git
synced 2026-06-12 02:29:59 +00:00
TSLint compliance
This commit is contained in:
@@ -83,7 +83,7 @@ process.on("SIGTERM", () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (receiverSelectorApp && !receiverSelectorAppClosed) {
|
if (receiverSelectorApp && !receiverSelectorAppClosed) {
|
||||||
receiverSelectorApp.kill()
|
receiverSelectorApp.kill();
|
||||||
}
|
}
|
||||||
|
|
||||||
browser.stop();
|
browser.stop();
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"extends": "../common/tsconfig"
|
"extends": "../tsconfig"
|
||||||
, "include": [
|
, "include": [
|
||||||
"./src/**/*"
|
"./src/**/*"
|
||||||
, "./@types/**/*"
|
, "./@types/**/*"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"extends": [
|
"extends": [
|
||||||
"../common/tslint.json"
|
"../tslint.json"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ browser.runtime.getPlatformInfo()
|
|||||||
const input = document.createElement("input");
|
const input = document.createElement("input");
|
||||||
const inputWrapper = document.createElement("div");
|
const inputWrapper = document.createElement("div");
|
||||||
|
|
||||||
inputWrapper.append(input)
|
inputWrapper.append(input);
|
||||||
document.documentElement.append(inputWrapper);
|
document.documentElement.append(inputWrapper);
|
||||||
|
|
||||||
input.type = "text";
|
input.type = "text";
|
||||||
@@ -55,7 +55,7 @@ browser.runtime.getPlatformInfo()
|
|||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
|
|
||||||
document.body.append(style)
|
document.body.append(style);
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"extends": "../common/tsconfig"
|
"extends": "../tsconfig"
|
||||||
, "compilerOptions": {
|
, "compilerOptions": {
|
||||||
"jsx": "react"
|
"jsx": "react"
|
||||||
, "lib": [ "esnext", "dom" ]
|
, "lib": [ "esnext", "dom" ]
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"extends": [
|
"extends": [
|
||||||
"../common/tslint.json"
|
"../tslint.json"
|
||||||
]
|
]
|
||||||
, "rules": {
|
, "rules": {
|
||||||
"no-bitwise": false
|
"no-bitwise": false
|
||||||
|
|||||||
Reference in New Issue
Block a user