eslint: Replace sort-imports with import/order.

import/order sorts require() calls as well as import statements.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-07-23 21:02:07 -07:00
committed by Tim Abbott
parent 0771e7fc59
commit e3b3df328d
70 changed files with 156 additions and 84 deletions

View File

@@ -2,9 +2,10 @@
// debugging. It also exposes the list of modules it knows about as the keys
// of the require.ids object.
import webpack, {Template} from "webpack";
import path from "path";
import webpack, {Template} from "webpack";
export default class DebugRequirePlugin {
apply(compiler: webpack.Compiler): void {
const resolved = new Map();