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