-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2131 from exadel-inc/tech/eslint-5-fixes
refactor(eslint): restructure eslint module rules, simplify usage
- Loading branch information
Showing
8 changed files
with
34 additions
and
24 deletions.
There are no files selected for viewing
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,13 @@ | ||
import deprecatedGenerateUid from './deprecated.generate-uid'; | ||
import deprecatedDeepCompare from './deprecated.deep-compare'; | ||
import deprecatedEventUtils from './deprecated.event-utils'; | ||
import deprecatedTraversingQuery from './deprecated.traversing-query'; | ||
import deprecatedToggleableActionParams from './deprecated.toggleable-action-params'; | ||
|
||
export default { | ||
'deprecated-4/generate-uid': deprecatedGenerateUid, | ||
'deprecated-4/deep-compare': deprecatedDeepCompare, | ||
'deprecated-4/event-utils': deprecatedEventUtils, | ||
'deprecated-4/traversing-query': deprecatedTraversingQuery, | ||
'deprecated-4/toggleable-action-params': deprecatedToggleableActionParams | ||
}; |
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 @@ | ||
import deprecatedAlertActionParams from './deprecated.alert-action-params'; | ||
import deprecatedPanelActionParams from './deprecated.panel-action-params'; | ||
import deprecatedPopupActionParams from './deprecated.popup-action-params'; | ||
import deprecatedTooltipActionParams from './deprecated.tooltip-action-params'; | ||
|
||
export default { | ||
'deprecated-5/alert-action-params': deprecatedAlertActionParams, | ||
'deprecated-5/panel-action-params': deprecatedPanelActionParams, | ||
'deprecated-5/popup-action-params': deprecatedPopupActionParams, | ||
'deprecated-5/tooltip-action-params': deprecatedTooltipActionParams | ||
}; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.