sisoe24 / Python-Easy-Print

Avoid using wildcard imports JS-C1003
Anti-pattern
Minor
12 occurrences in this check
Explicitly import the specific method needed
 1import * as vscode from "vscode"; 2
 3export const py2Statement =
 4  "# coding: utf-8\nfrom __future__ import print_function\n";
Explicitly import the specific method needed
  1import * as vscode from "vscode";
  2import * as config from "./config";  3
  4type BracketType = {
  5    opening: string;
Explicitly import the specific method needed
  1import * as vscode from "vscode";  2import * as config from "./config";
  3
  4type BracketType = {
Explicitly import the specific method needed
  1import * as vscode from "vscode";
  2import * as path from "path";
  3
  4import * as config from "./config";  5
  6export class DataModel {
  7    public config: config.Config;
Explicitly import the specific method needed
  1import * as vscode from "vscode";
  2import * as path from "path";  3
  4import * as config from "./config";
  5
Explicitly import the specific method needed
  1import * as vscode from "vscode";  2import * as path from "path";
  3
  4import * as config from "./config";
Explicitly import the specific method needed
 1import * as vscode from "vscode";
 2import * as utils from "./utils";
 3import * as doc from "./document_parser"; 4
 5import { SelectedText } from "./selected_text";
 6import { printConstructor } from "./print_constructor";
Explicitly import the specific method needed
 1import * as vscode from "vscode";
 2import * as utils from "./utils"; 3import * as doc from "./document_parser";
 4
 5import { SelectedText } from "./selected_text";
Explicitly import the specific method needed
 1import * as vscode from "vscode"; 2import * as utils from "./utils";
 3import * as doc from "./document_parser";
 4
Explicitly import the specific method needed
  1import * as vscode from "vscode";
  2import * as config from "./config";  3
  4type LineObject = {
  5    text: string;
Explicitly import the specific method needed
  1import * as vscode from "vscode";  2import * as config from "./config";
  3
  4type LineObject = {
Explicitly import the specific method needed
 1import * as vscode from "vscode"; 2
 3export const DEFAULTS = {
 4    printSymbol: "➡",