mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
TSLint: re-enable import-spacing rule
This commit is contained in:
parent
85706a4347
commit
3953830787
3 changed files with 2 additions and 2 deletions
|
@ -19,6 +19,7 @@ import * as native from "@src/lib/native"
|
||||||
import state from "@src/state"
|
import state from "@src/state"
|
||||||
import * as webext from "@src/lib/webext"
|
import * as webext from "@src/lib/webext"
|
||||||
import { AutoContain } from "@src/lib/autocontainers"
|
import { AutoContain } from "@src/lib/autocontainers"
|
||||||
|
/* tslint:disable:import-spacing */
|
||||||
;(window as any).tri = Object.assign(Object.create(null), {
|
;(window as any).tri = Object.assign(Object.create(null), {
|
||||||
messaging,
|
messaging,
|
||||||
excmds,
|
excmds,
|
||||||
|
|
|
@ -73,6 +73,7 @@ import * as perf from "@src/perf"
|
||||||
import * as keyseq from "@src/lib/keyseq"
|
import * as keyseq from "@src/lib/keyseq"
|
||||||
import * as native from "@src/lib/native"
|
import * as native from "@src/lib/native"
|
||||||
import * as styling from "@src/content/styling"
|
import * as styling from "@src/content/styling"
|
||||||
|
/* tslint:disable:import-spacing */
|
||||||
;(window as any).tri = Object.assign(Object.create(null), {
|
;(window as any).tri = Object.assign(Object.create(null), {
|
||||||
browserBg: webext.browserBg,
|
browserBg: webext.browserBg,
|
||||||
commandline_content,
|
commandline_content,
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
"class-name": false,
|
"class-name": false,
|
||||||
"cognitive-complexity": false,
|
"cognitive-complexity": false,
|
||||||
"curly": false,
|
"curly": false,
|
||||||
"import-spacing": false,
|
|
||||||
"interface-name": false,
|
"interface-name": false,
|
||||||
"jsdoc-format": false,
|
"jsdoc-format": false,
|
||||||
"max-classes-per-file": false,
|
"max-classes-per-file": false,
|
||||||
|
@ -38,7 +37,6 @@
|
||||||
"semicolon": false,
|
"semicolon": false,
|
||||||
"trailing-comma": false,
|
"trailing-comma": false,
|
||||||
"triple-equals": false,
|
"triple-equals": false,
|
||||||
"use-primitive-type": false,
|
|
||||||
"variable-name": false,
|
"variable-name": false,
|
||||||
"whitespace": false
|
"whitespace": false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue