Skip to content

Commit

Permalink
chore: Fix Biome lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
angelmadames committed Mar 13, 2024
1 parent 273f56b commit ca438b8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 53 deletions.
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"enabled": true,
"rules": {
"recommended": true,
"nursery": {
"correctness": {
"noUnusedImports": "warn"
},
"suspicious": {
Expand Down
4 changes: 2 additions & 2 deletions src/config/env.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import fs from 'fs';
import * as fs from 'node:fs';
import log from '../utils/log';
import { flattenObject } from '../utils/object';
import { type DEMSProjectConfig } from './dems';
import type { DEMSProjectConfig } from './dems';

export const dotEnv = {
generate(envFilePath: string, config: DEMSProjectConfig): void {
Expand Down
4 changes: 2 additions & 2 deletions src/utils/compose.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import fs from 'node:fs';
import path from 'path';
import * as fs from 'node:fs';
import * as path from 'node:path';
import { projectConfig } from '../config/project';
import { cmd as $ } from './cmd';
import { isFile } from './file-system';
Expand Down
47 changes: 0 additions & 47 deletions test/commands/compose.test.ts

This file was deleted.

2 changes: 1 addition & 1 deletion test/commands/config.current-project.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const PROJECT = 'testProject';
const CURRENT_PROJECT_FILE = './current-project-test';

beforeEach(() => {
testSetup();
// testSetup();
createFile({ file: CURRENT_PROJECT_FILE, content: 'test' });
});

Expand Down

0 comments on commit ca438b8

Please sign in to comment.