🔧(eslint) update eslint config to make import/order work

The autofix of import/order was not taken into account due to
a misconfiguration.
This commit is contained in:
Nathan Vasse
2023-03-17 11:50:49 +01:00
committed by NathanVss
parent 2d80722a18
commit b2fd517bde
6 changed files with 10 additions and 7 deletions

View File

@@ -3,8 +3,8 @@ import chalk from "chalk";
import figlet from "figlet";
import { getConfig } from "ConfigLoader";
import { tokensGenerator } from "TokensGenerator";
import { Generators } from "Generators";
import { workPath } from "Paths";
import { Generators } from "Generators";
export const buildTheme = async () => {
const options = program.opts();

View File

@@ -1,10 +1,10 @@
import * as fs from "fs";
import * as path from "path";
import * as child_process from "child_process";
import * as util from "util";
import { run } from "ThemeGenerator";
import { cleanup } from "tests/Utils";
// eslint-disable-next-line import/no-extraneous-dependencies
import * as util from "util";
import Config from "../Config";
jest.mock("../Paths", () => ({