Snowtrack / snowfs

Avoid using wildcard imports JS-C1003
Anti-pattern
Minor
4 occurrences in this check
Explicitly import the specific method needed
  1/* eslint-disable no-await-in-loop */
  2import * as fse from 'fs-extra';  3
  4import test from 'ava';
  5
Explicitly import the specific method needed
  1import test from 'ava';
  2
  3import * as fse from 'fs-extra';  4
  5import { join, dirname, basename } from '../src/path';
  6import {
Explicitly import the specific method needed
  1/* eslint-disable max-len */
  2import * as fse from 'fs-extra';  3
  4import * as readline from 'readline';
  5import {
Explicitly import the specific method needed
  1/* eslint-disable max-len */
  2import * as fse from 'fs-extra';
  3
  4import * as readline from 'readline';  5import {
  6  isAbsolute, join, resolve, relative, normalize,
  7} from './src/path';