Update dependency eslint-plugin-import to v1.16.0 - abandoned#13
Open
renovate[bot] wants to merge 1 commit intomasterfrom
Open
Update dependency eslint-plugin-import to v1.16.0 - abandoned#13renovate[bot] wants to merge 1 commit intomasterfrom
renovate[bot] wants to merge 1 commit intomasterfrom
Conversation
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
Author
Autoclosing SkippedThis PR has been flagged for autoclosing. However, it is being skipped due to the branch being already modified. Please close/delete it manually or report a bug if you think this is in error. |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.6.1->1.16.0Release Notes
import-js/eslint-plugin-import
v1.16.0Compare Source
Added
no-dynamic-require] rule: forbidrequire()calls with expressions. ([#567], [#568])no-internal-modules] rule: restrict deep package imports to specific folders. ([#485], thanks [@spalger]!)extensions]: allow override of a chosen default with options object ([#555], thanks [@ljharb]!)Fixed
no-named-as-default] no longer false-positives onexport default from '...'([#566], thanks [@preco21])default]: allow re-export of values from ignored files as default ([#545], thanks [@skyrpex])v1.15.0Compare Source
Added
allowoption to [no-nodejs-modules] to allow exceptions ([#452], [#509]).no-absolute-path] rule ([#530], [#538])max-dependencies] for specifying the maximum number of dependencies (bothimportandrequire) a module can have. (see [#489], thanks [@tizmagik])no-extraneous-dependencies], after much bikeshedding. Thanks, [@knpwrs]! ([#527])Fixed
no-named-as-default-member] Allow default import to have a property named "default" ([#507], [#508], thanks [@jquense] for both!)v1.14.0Compare Source
Added
import/parserssetting]: parse some dependencies (i.e. TypeScript!) with a different parser than the ESLint-configured parser. ([#503])Fixed
namespace] exception for get property fromnamespaceimport, which are re-export from commonjs module ([#499] fixes [#416], thanks [@wKich])v1.13.0Compare Source
Added
allowComputedoption for [namespace] rule. If set totrue, won't reportcomputed member references to namespaces. (see [#456])
Changed
no-nodejs-modules] error message to include the module's name ([#453], [#461])Fixed
import/extensionssetting] is respected in spite of the appearance of importsin an imported file. (fixes [#478], thanks [@rhys-vdw])
v1.12.0Compare Source
Added
import/external-module-folderssetting]: a possibility to configure folders for "external" modules ([#444], thanks [@zloirock])v1.11.1Compare Source
Fixed
newline-after-import] exception forswitchbranches withrequires iff parsed assourceType:'module'.(still [#441], thanks again [@ljharb])
v1.11.0Compare Source
Added
peerDependenciesoption to [no-extraneous-dependencies] to allow/forbid peer dependencies ([#423], [#428], thanks [@jfmengels]!).Fixed
newline-after-import] exception for multiplerequires in an arrowfunction expression (e.g.
() => require('a') || require('b')). ([#441], thanks [@ljharb])v1.10.3Compare Source
Fixed
Symboldependencies (i.e.for-ofloops) due to Node 0.10 polyfillissue (see [#415]). Should not make any discernible semantic difference.
v1.10.2Compare Source
Fixed
npm prepublishof 1.10.1.Several
rm -rf node_modules && npm iandgulp clean && npm prepublishs later, it is rebuilt and republished as 1.10.2. Thanks [@rhettlivingston] for noticing and reporting!v1.10.0Compare Source
Added
no-restricted-paths]. ([#155]/[#371], thanks [@lo1tuma])import/core-modulessetting]: allow configuration of additional module names,to be treated as builtin modules (a la
path, etc. in Node). ([#275] + [#365], thanks [@sindresorhus] for driving)Fixed
newline-after-importrelated to the use of switch cases. (fixes [#386], thanks [@ljharb] for reporting) ([#395])v1.9.2Compare Source
Fixed
export] and [no-deprecated] rules. ([#348], [#370])v1.9.1Compare Source
Fixed
v1.9.0Compare Source
Added
no-deprecated]. ([#321], thanks [@josh])Fixed
prefer-default-export] handlesexport functionandexport constin same file ([#359], thanks [@scottnonnenberg])v1.8.1Compare Source
Fixed
export * from 'foo'now properly ignores adefaultexport fromfoo, if any. ([#328]/[#332], thanks [@jkimbo])This impacts all static analysis of imported names. ([
default], [named], [namespace], [export])order]'snewline-betweenoption handle multiline import statements ([#313], thanks [@singles])order]'snewline-betweenoption handle not assigned import statements ([#313], thanks [@singles])order]'snewline-betweenoption ignorerequirestatements inside object literals ([#313], thanks [@singles])prefer-default-export] properly handles deep destructuring,export * from ..., and files with no exports. ([#342]+[#343], thanks [@scottnonnenberg])v1.8.0Compare Source
Added
prefer-default-export], new rule. ([#308], thanks [@gavriguy])Fixed
no-mutable-exports]. ([#317], fixed by [#322]. thanks [@borisyankov] + [@jfmengels])no-extraneous-dependencies] handle scoped packages ([#316], thanks [@jfmengels])v1.7.0Compare Source
Added
newline-after-import], new rule. ([#245], thanks [@singles])optionalDependenciesoption to [no-extraneous-dependencies] to allow/forbid optional dependencies ([#266], thanks [@jfmengels]).newlines-betweenoption to [order] rule ([#298], thanks [@singles])no-mutable-exports] rule ([#290], thanks [@josh])import/extensionssetting]: a list of file extensions to parse as modulesand search for
exports. If unspecified, all extensions are considered valid (for now).In v2, this will likely default to
['.js', MODULE_EXT]. ([#297], to fix [#267])Fixed
extensions]: fallback to source path for extension enforcement if importedmodule is not resolved. Also, never report for builtins (i.e.
path). ([#296])Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.