🎨 New, overkill linter

This commit is contained in:
TrickyPR 2022-10-20 22:08:27 +11:00
parent 7650c90c3a
commit d84e0941b5
49 changed files with 670 additions and 470 deletions

View file

@ -1,6 +1,9 @@
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
/* eslint-disable unicorn/no-await-expression-member */
import { Cmd } from './types'
export const commands: Cmd[] = [
@ -132,7 +135,7 @@ export const commands: Cmd[] = [
cmd: 'setup-project',
description: 'Sets up a gluon project for the first time',
requestController: async () =>
(await import('./commands/setupProject')).setupProject,
(await import('./commands/setup-project')).setupProject,
},
{
cmd: 'status',