forked from import-js/eslint-plugin-import
-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
165 changed files
with
7,664 additions
and
8,055 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"extends": "@1stg/tsconfig/node", | ||
"compilerOptions": { | ||
"allowJs": true, | ||
"noEmit": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/node_modules/cliui/build/index.cjs b/node_modules/cliui/build/index.cjs | ||
index 82126b6..009c42d 100644 | ||
--- a/node_modules/cliui/build/index.cjs | ||
+++ b/node_modules/cliui/build/index.cjs | ||
@@ -289,7 +289,7 @@ function cliui(opts, _mixin) { | ||
|
||
// Bootstrap cliui with CommonJS dependencies: | ||
const stringWidth = require('string-width'); | ||
-const stripAnsi = require('strip-ansi'); | ||
+const stripAnsi = require('strip-ansi-cjs'); | ||
const wrap = require('wrap-ansi'); | ||
function ui(opts) { | ||
return cliui(opts, { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
diff --git a/node_modules/string-length/index.js b/node_modules/string-length/index.js | ||
index c2589a2..3040f0a 100644 | ||
--- a/node_modules/string-length/index.js | ||
+++ b/node_modules/string-length/index.js | ||
@@ -1,5 +1,5 @@ | ||
'use strict'; | ||
-const stripAnsi = require('strip-ansi'); | ||
+const stripAnsi = require('strip-ansi-cjs'); | ||
const charRegex = require('char-regex'); | ||
|
||
const stringLength = string => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
diff --git a/node_modules/string-width/index.js b/node_modules/string-width/index.js | ||
index f4d261a..7ea642a 100644 | ||
--- a/node_modules/string-width/index.js | ||
+++ b/node_modules/string-width/index.js | ||
@@ -1,5 +1,5 @@ | ||
'use strict'; | ||
-const stripAnsi = require('strip-ansi'); | ||
+const stripAnsi = require('strip-ansi-cjs'); | ||
const isFullwidthCodePoint = require('is-fullwidth-code-point'); | ||
const emojiRegex = require('emoji-regex'); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/node_modules/wrap-ansi/index.js b/node_modules/wrap-ansi/index.js | ||
index d502255..1ed059c 100755 | ||
--- a/node_modules/wrap-ansi/index.js | ||
+++ b/node_modules/wrap-ansi/index.js | ||
@@ -1,6 +1,6 @@ | ||
'use strict'; | ||
const stringWidth = require('string-width'); | ||
-const stripAnsi = require('strip-ansi'); | ||
+const stripAnsi = require('strip-ansi-cjs'); | ||
const ansiStyles = require('ansi-styles'); | ||
|
||
const ESCAPES = new Set([ |
Oops, something went wrong.