eslint: Enable sort-imports for member sorting.

This sorts the members imported within each individual declaration; we
use import/order for sorting multiple declarations.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2021-04-03 15:07:40 -07:00
parent 3b2256bcec
commit 077f3e6e78
9 changed files with 14 additions and 8 deletions

View File

@@ -4,7 +4,7 @@ import fs from "fs";
import os from "os";
import {initSetUp} from "./default-util";
import {sentryInit, captureException} from "./sentry-util";
import {captureException, sentryInit} from "./sentry-util";
const {app} = process.type === "renderer" ? electron.remote : electron;