TSLint: re-enable import-spacing rule

This commit is contained in:
glacambre 2019-04-05 13:20:23 +02:00
parent 85706a4347
commit 3953830787
No known key found for this signature in database
GPG key ID: B9625DB1767553AC
3 changed files with 2 additions and 2 deletions

View file

@ -19,6 +19,7 @@ import * as native from "@src/lib/native"
import state from "@src/state"
import * as webext from "@src/lib/webext"
import { AutoContain } from "@src/lib/autocontainers"
/* tslint:disable:import-spacing */
;(window as any).tri = Object.assign(Object.create(null), {
messaging,
excmds,

View file

@ -73,6 +73,7 @@ import * as perf from "@src/perf"
import * as keyseq from "@src/lib/keyseq"
import * as native from "@src/lib/native"
import * as styling from "@src/content/styling"
/* tslint:disable:import-spacing */
;(window as any).tri = Object.assign(Object.create(null), {
browserBg: webext.browserBg,
commandline_content,

View file

@ -6,7 +6,6 @@
"class-name": false,
"cognitive-complexity": false,
"curly": false,
"import-spacing": false,
"interface-name": false,
"jsdoc-format": false,
"max-classes-per-file": false,
@ -38,7 +37,6 @@
"semicolon": false,
"trailing-comma": false,
"triple-equals": false,
"use-primitive-type": false,
"variable-name": false,
"whitespace": false
}