You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
707 lines
81 KiB
707 lines
81 KiB
2 years ago
|
'use strict';var _slicedToArray = function () {function sliceIterator(arr, i) {var _arr = [];var _n = true;var _d = false;var _e = undefined;try {for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {_arr.push(_s.value);if (i && _arr.length === i) break;}} catch (err) {_d = true;_e = err;} finally {try {if (!_n && _i["return"]) _i["return"]();} finally {if (_d) throw _e;}}return _arr;}return function (arr, i) {if (Array.isArray(arr)) {return arr;} else if (Symbol.iterator in Object(arr)) {return sliceIterator(arr, i);} else {throw new TypeError("Invalid attempt to destructure non-iterable instance");}};}();
|
||
|
|
||
|
var _minimatch = require('minimatch');var _minimatch2 = _interopRequireDefault(_minimatch);
|
||
|
var _importType = require('../core/importType');var _importType2 = _interopRequireDefault(_importType);
|
||
|
var _staticRequire = require('../core/staticRequire');var _staticRequire2 = _interopRequireDefault(_staticRequire);
|
||
|
var _docsUrl = require('../docsUrl');var _docsUrl2 = _interopRequireDefault(_docsUrl);function _interopRequireDefault(obj) {return obj && obj.__esModule ? obj : { 'default': obj };}
|
||
|
|
||
|
var defaultGroups = ['builtin', 'external', 'parent', 'sibling', 'index'];
|
||
|
|
||
|
// REPORTING AND FIXING
|
||
|
|
||
|
function reverse(array) {
|
||
|
return array.map(function (v) {
|
||
|
return Object.assign({}, v, { rank: -v.rank });
|
||
|
}).reverse();
|
||
|
}
|
||
|
|
||
|
function getTokensOrCommentsAfter(sourceCode, node, count) {
|
||
|
var currentNodeOrToken = node;
|
||
|
var result = [];
|
||
|
for (var i = 0; i < count; i++) {
|
||
|
currentNodeOrToken = sourceCode.getTokenOrCommentAfter(currentNodeOrToken);
|
||
|
if (currentNodeOrToken == null) {
|
||
|
break;
|
||
|
}
|
||
|
result.push(currentNodeOrToken);
|
||
|
}
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
function getTokensOrCommentsBefore(sourceCode, node, count) {
|
||
|
var currentNodeOrToken = node;
|
||
|
var result = [];
|
||
|
for (var i = 0; i < count; i++) {
|
||
|
currentNodeOrToken = sourceCode.getTokenOrCommentBefore(currentNodeOrToken);
|
||
|
if (currentNodeOrToken == null) {
|
||
|
break;
|
||
|
}
|
||
|
result.push(currentNodeOrToken);
|
||
|
}
|
||
|
return result.reverse();
|
||
|
}
|
||
|
|
||
|
function takeTokensAfterWhile(sourceCode, node, condition) {
|
||
|
var tokens = getTokensOrCommentsAfter(sourceCode, node, 100);
|
||
|
var result = [];
|
||
|
for (var i = 0; i < tokens.length; i++) {
|
||
|
if (condition(tokens[i])) {
|
||
|
result.push(tokens[i]);
|
||
|
} else {
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
function takeTokensBeforeWhile(sourceCode, node, condition) {
|
||
|
var tokens = getTokensOrCommentsBefore(sourceCode, node, 100);
|
||
|
var result = [];
|
||
|
for (var i = tokens.length - 1; i >= 0; i--) {
|
||
|
if (condition(tokens[i])) {
|
||
|
result.push(tokens[i]);
|
||
|
} else {
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
return result.reverse();
|
||
|
}
|
||
|
|
||
|
function findOutOfOrder(imported) {
|
||
|
if (imported.length === 0) {
|
||
|
return [];
|
||
|
}
|
||
|
var maxSeenRankNode = imported[0];
|
||
|
return imported.filter(function (importedModule) {
|
||
|
var res = importedModule.rank < maxSeenRankNode.rank;
|
||
|
if (maxSeenRankNode.rank < importedModule.rank) {
|
||
|
maxSeenRankNode = importedModule;
|
||
|
}
|
||
|
return res;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function findRootNode(node) {
|
||
|
var parent = node;
|
||
|
while (parent.parent != null && parent.parent.body == null) {
|
||
|
parent = parent.parent;
|
||
|
}
|
||
|
return parent;
|
||
|
}
|
||
|
|
||
|
function findEndOfLineWithComments(sourceCode, node) {
|
||
|
var tokensToEndOfLine = takeTokensAfterWhile(sourceCode, node, commentOnSameLineAs(node));
|
||
|
var endOfTokens = tokensToEndOfLine.length > 0 ?
|
||
|
tokensToEndOfLine[tokensToEndOfLine.length - 1].range[1] :
|
||
|
node.range[1];
|
||
|
var result = endOfTokens;
|
||
|
for (var i = endOfTokens; i < sourceCode.text.length; i++) {
|
||
|
if (sourceCode.text[i] === '\n') {
|
||
|
result = i + 1;
|
||
|
break;
|
||
|
}
|
||
|
if (sourceCode.text[i] !== ' ' && sourceCode.text[i] !== '\t' && sourceCode.text[i] !== '\r') {
|
||
|
break;
|
||
|
}
|
||
|
result = i + 1;
|
||
|
}
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
function commentOnSameLineAs(node) {
|
||
|
return function (token) {return (token.type === 'Block' || token.type === 'Line') &&
|
||
|
token.loc.start.line === token.loc.end.line &&
|
||
|
token.loc.end.line === node.loc.end.line;};
|
||
|
}
|
||
|
|
||
|
function findStartOfLineWithComments(sourceCode, node) {
|
||
|
var tokensToEndOfLine = takeTokensBeforeWhile(sourceCode, node, commentOnSameLineAs(node));
|
||
|
var startOfTokens = tokensToEndOfLine.length > 0 ? tokensToEndOfLine[0].range[0] : node.range[0];
|
||
|
var result = startOfTokens;
|
||
|
for (var i = startOfTokens - 1; i > 0; i--) {
|
||
|
if (sourceCode.text[i] !== ' ' && sourceCode.text[i] !== '\t') {
|
||
|
break;
|
||
|
}
|
||
|
result = i;
|
||
|
}
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
function isPlainRequireModule(node) {
|
||
|
if (node.type !== 'VariableDeclaration') {
|
||
|
return false;
|
||
|
}
|
||
|
if (node.declarations.length !== 1) {
|
||
|
return false;
|
||
|
}
|
||
|
var decl = node.declarations[0];
|
||
|
var result = decl.id && (
|
||
|
decl.id.type === 'Identifier' || decl.id.type === 'ObjectPattern') &&
|
||
|
decl.init != null &&
|
||
|
decl.init.type === 'CallExpression' &&
|
||
|
decl.init.callee != null &&
|
||
|
decl.init.callee.name === 'require' &&
|
||
|
decl.init.arguments != null &&
|
||
|
decl.init.arguments.length === 1 &&
|
||
|
decl.init.arguments[0].type === 'Literal';
|
||
|
return result;
|
||
|
}
|
||
|
|
||
|
function isPlainImportModule(node) {
|
||
|
return node.type === 'ImportDeclaration' && node.specifiers != null && node.specifiers.length > 0;
|
||
|
}
|
||
|
|
||
|
function isPlainImportEquals(node) {
|
||
|
return node.type === 'TSImportEqualsDeclaration' && node.moduleReference.expression;
|
||
|
}
|
||
|
|
||
|
function canCrossNodeWhileReorder(node) {
|
||
|
return isPlainRequireModule(node) || isPlainImportModule(node) || isPlainImportEquals(node);
|
||
|
}
|
||
|
|
||
|
function canReorderItems(firstNode, secondNode) {
|
||
|
var parent = firstNode.parent;var _sort =
|
||
|
[
|
||
|
parent.body.indexOf(firstNode),
|
||
|
parent.body.indexOf(secondNode)].
|
||
|
sort(),_sort2 = _slicedToArray(_sort, 2),firstIndex = _sort2[0],secondIndex = _sort2[1];
|
||
|
var nodesBetween = parent.body.slice(firstIndex, secondIndex + 1);var _iteratorNormalCompletion = true;var _didIteratorError = false;var _iteratorError = undefined;try {
|
||
|
for (var _iterator = nodesBetween[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {var nodeBetween = _step.value;
|
||
|
if (!canCrossNodeWhileReorder(nodeBetween)) {
|
||
|
return false;
|
||
|
}
|
||
|
}} catch (err) {_didIteratorError = true;_iteratorError = err;} finally {try {if (!_iteratorNormalCompletion && _iterator['return']) {_iterator['return']();}} finally {if (_didIteratorError) {throw _iteratorError;}}}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
function fixOutOfOrder(context, firstNode, secondNode, order) {
|
||
|
var sourceCode = context.getSourceCode();
|
||
|
|
||
|
var firstRoot = findRootNode(firstNode.node);
|
||
|
var firstRootStart = findStartOfLineWithComments(sourceCode, firstRoot);
|
||
|
var firstRootEnd = findEndOfLineWithComments(sourceCode, firstRoot);
|
||
|
|
||
|
var secondRoot = findRootNode(secondNode.node);
|
||
|
var secondRootStart = findStartOfLineWithComments(sourceCode, secondRoot);
|
||
|
var secondRootEnd = findEndOfLineWithComments(sourceCode, secondRoot);
|
||
|
var canFix = canReorderItems(firstRoot, secondRoot);
|
||
|
|
||
|
var newCode = sourceCode.text.substring(secondRootStart, secondRootEnd);
|
||
|
if (newCode[newCode.length - 1] !== '\n') {
|
||
|
newCode = newCode + '\n';
|
||
|
}
|
||
|
|
||
|
var message = '`' + String(secondNode.displayName) + '` import should occur ' + String(order) + ' import of `' + String(firstNode.displayName) + '`';
|
||
|
|
||
|
if (order === 'before') {
|
||
|
context.report({
|
||
|
node: secondNode.node,
|
||
|
message: message,
|
||
|
fix: canFix && function (fixer) {return (
|
||
|
fixer.replaceTextRange(
|
||
|
[firstRootStart, secondRootEnd],
|
||
|
newCode + sourceCode.text.substring(firstRootStart, secondRootStart)));} });
|
||
|
|
||
|
|
||
|
} else if (order === 'after') {
|
||
|
context.report({
|
||
|
node: secondNode.node,
|
||
|
message: message,
|
||
|
fix: canFix && function (fixer) {return (
|
||
|
fixer.replaceTextRange(
|
||
|
[secondRootStart, firstRootEnd],
|
||
|
sourceCode.text.substring(secondRootEnd, firstRootEnd) + newCode));} });
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function reportOutOfOrder(context, imported, outOfOrder, order) {
|
||
|
outOfOrder.forEach(function (imp) {
|
||
|
var found = imported.find(function () {function hasHigherRank(importedItem) {
|
||
|
return importedItem.rank > imp.rank;
|
||
|
}return hasHigherRank;}());
|
||
|
fixOutOfOrder(context, found, imp, order);
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function makeOutOfOrderReport(context, imported) {
|
||
|
var outOfOrder = findOutOfOrder(imported);
|
||
|
if (!outOfOrder.length) {
|
||
|
return;
|
||
|
}
|
||
|
// There are things to report. Try to minimize the number of reported errors.
|
||
|
var reversedImported = reverse(imported);
|
||
|
var reversedOrder = findOutOfOrder(reversedImported);
|
||
|
if (reversedOrder.length < outOfOrder.length) {
|
||
|
reportOutOfOrder(context, reversedImported, reversedOrder, 'after');
|
||
|
return;
|
||
|
}
|
||
|
reportOutOfOrder(context, imported, outOfOrder, 'before');
|
||
|
}
|
||
|
|
||
|
function getSorter(ascending) {
|
||
|
var multiplier = ascending ? 1 : -1;
|
||
|
|
||
|
return function () {function importsSorter(importA, importB) {
|
||
|
var result = void 0;
|
||
|
|
||
|
if (importA < importB) {
|
||
|
result = -1;
|
||
|
} else if (importA > importB) {
|
||
|
result = 1;
|
||
|
} else {
|
||
|
result = 0;
|
||
|
}
|
||
|
|
||
|
return result * multiplier;
|
||
|
}return importsSorter;}();
|
||
|
}
|
||
|
|
||
|
function mutateRanksToAlphabetize(imported, alphabetizeOptions) {
|
||
|
var groupedByRanks = imported.reduce(function (acc, importedItem) {
|
||
|
if (!Array.isArray(acc[importedItem.rank])) {
|
||
|
acc[importedItem.rank] = [];
|
||
|
}
|
||
|
acc[importedItem.rank].push(importedItem);
|
||
|
return acc;
|
||
|
}, {});
|
||
|
|
||
|
var groupRanks = Object.keys(groupedByRanks);
|
||
|
|
||
|
var sorterFn = getSorter(alphabetizeOptions.order === 'asc');
|
||
|
var comparator = alphabetizeOptions.caseInsensitive ?
|
||
|
function (a, b) {return sorterFn(String(a.value).toLowerCase(), String(b.value).toLowerCase());} :
|
||
|
function (a, b) {return sorterFn(a.value, b.value);};
|
||
|
|
||
|
// sort imports locally within their group
|
||
|
groupRanks.forEach(function (groupRank) {
|
||
|
groupedByRanks[groupRank].sort(comparator);
|
||
|
});
|
||
|
|
||
|
// assign globally unique rank to each import
|
||
|
var newRank = 0;
|
||
|
var alphabetizedRanks = groupRanks.sort().reduce(function (acc, groupRank) {
|
||
|
groupedByRanks[groupRank].forEach(function (importedItem) {
|
||
|
acc[String(importedItem.value) + '|' + String(importedItem.node.importKind)] = parseInt(groupRank, 10) + newRank;
|
||
|
newRank += 1;
|
||
|
});
|
||
|
return acc;
|
||
|
}, {});
|
||
|
|
||
|
// mutate the original group-rank with alphabetized-rank
|
||
|
imported.forEach(function (importedItem) {
|
||
|
importedItem.rank = alphabetizedRanks[String(importedItem.value) + '|' + String(importedItem.node.importKind)];
|
||
|
});
|
||
|
}
|
||
|
|
||
|
// DETECTING
|
||
|
|
||
|
function computePathRank(ranks, pathGroups, path, maxPosition) {
|
||
|
for (var i = 0, l = pathGroups.length; i < l; i++) {var _pathGroups$i =
|
||
|
pathGroups[i],pattern = _pathGroups$i.pattern,patternOptions = _pathGroups$i.patternOptions,group = _pathGroups$i.group,_pathGroups$i$positio = _pathGroups$i.position,position = _pathGroups$i$positio === undefined ? 1 : _pathGroups$i$positio;
|
||
|
if ((0, _minimatch2['default'])(path, pattern, patternOptions || { nocomment: true })) {
|
||
|
return ranks[group] + position / maxPosition;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function computeRank(context, ranks, importEntry, excludedImportTypes) {
|
||
|
var impType = void 0;
|
||
|
var rank = void 0;
|
||
|
if (importEntry.type === 'import:object') {
|
||
|
impType = 'object';
|
||
|
} else if (importEntry.node.importKind === 'type' && ranks.omittedTypes.indexOf('type') === -1) {
|
||
|
impType = 'type';
|
||
|
} else {
|
||
|
impType = (0, _importType2['default'])(importEntry.value, context);
|
||
|
}
|
||
|
if (!excludedImportTypes.has(impType)) {
|
||
|
rank = computePathRank(ranks.groups, ranks.pathGroups, importEntry.value, ranks.maxPosition);
|
||
|
}
|
||
|
if (typeof rank === 'undefined') {
|
||
|
rank = ranks.groups[impType];
|
||
|
}
|
||
|
if (importEntry.type !== 'import' && !importEntry.type.startsWith('import:')) {
|
||
|
rank += 100;
|
||
|
}
|
||
|
|
||
|
return rank;
|
||
|
}
|
||
|
|
||
|
function registerNode(context, importEntry, ranks, imported, excludedImportTypes) {
|
||
|
var rank = computeRank(context, ranks, importEntry, excludedImportTypes);
|
||
|
if (rank !== -1) {
|
||
|
imported.push(Object.assign({}, importEntry, { rank: rank }));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function getRequireBlock(node) {
|
||
|
var n = node;
|
||
|
// Handle cases like `const baz = require('foo').bar.baz`
|
||
|
// and `const foo = require('foo')()`
|
||
|
while (
|
||
|
n.parent.type === 'MemberExpression' && n.parent.object === n ||
|
||
|
n.parent.type === 'CallExpression' && n.parent.callee === n)
|
||
|
{
|
||
|
n = n.parent;
|
||
|
}
|
||
|
if (
|
||
|
n.parent.type === 'VariableDeclarator' &&
|
||
|
n.parent.parent.type === 'VariableDeclaration' &&
|
||
|
n.parent.parent.parent.type === 'Program')
|
||
|
{
|
||
|
return n.parent.parent.parent;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var types = ['builtin', 'external', 'internal', 'unknown', 'parent', 'sibling', 'index', 'object', 'type'];
|
||
|
|
||
|
// Creates an object with type-rank pairs.
|
||
|
// Example: { index: 0, sibling: 1, parent: 1, external: 1, builtin: 2, internal: 2 }
|
||
|
// Will throw an error if it contains a type that does not exist, or has a duplicate
|
||
|
function convertGroupsToRanks(groups) {
|
||
|
var rankObject = groups.reduce(function (res, group, index) {
|
||
|
if (typeof group === 'string') {
|
||
|
group = [group];
|
||
|
}
|
||
|
group.forEach(function (groupItem) {
|
||
|
if (types.indexOf(groupItem) === -1) {
|
||
|
throw new Error('Incorrect configuration of the rule: Unknown type `' +
|
||
|
JSON.stringify(groupItem) + '`');
|
||
|
}
|
||
|
if (res[groupItem] !== undefined) {
|
||
|
throw new Error('Incorrect configuration of the rule: `' + groupItem + '` is duplicated');
|
||
|
}
|
||
|
res[groupItem] = index;
|
||
|
});
|
||
|
return res;
|
||
|
}, {});
|
||
|
|
||
|
var omittedTypes = types.filter(function (type) {
|
||
|
return rankObject[type] === undefined;
|
||
|
});
|
||
|
|
||
|
var ranks = omittedTypes.reduce(function (res, type) {
|
||
|
res[type] = groups.length;
|
||
|
return res;
|
||
|
}, rankObject);
|
||
|
|
||
|
return { groups: ranks, omittedTypes: omittedTypes };
|
||
|
}
|
||
|
|
||
|
function convertPathGroupsForRanks(pathGroups) {
|
||
|
var after = {};
|
||
|
var before = {};
|
||
|
|
||
|
var transformed = pathGroups.map(function (pathGroup, index) {var
|
||
|
group = pathGroup.group,positionString = pathGroup.position;
|
||
|
var position = 0;
|
||
|
if (positionString === 'after') {
|
||
|
if (!after[group]) {
|
||
|
after[group] = 1;
|
||
|
}
|
||
|
position = after[group]++;
|
||
|
} else if (positionString === 'before') {
|
||
|
if (!before[group]) {
|
||
|
before[group] = [];
|
||
|
}
|
||
|
before[group].push(index);
|
||
|
}
|
||
|
|
||
|
return Object.assign({}, pathGroup, { position: position });
|
||
|
});
|
||
|
|
||
|
var maxPosition = 1;
|
||
|
|
||
|
Object.keys(before).forEach(function (group) {
|
||
|
var groupLength = before[group].length;
|
||
|
before[group].forEach(function (groupIndex, index) {
|
||
|
transformed[groupIndex].position = -1 * (groupLength - index);
|
||
|
});
|
||
|
maxPosition = Math.max(maxPosition, groupLength);
|
||
|
});
|
||
|
|
||
|
Object.keys(after).forEach(function (key) {
|
||
|
var groupNextPosition = after[key];
|
||
|
maxPosition = Math.max(maxPosition, groupNextPosition - 1);
|
||
|
});
|
||
|
|
||
|
return {
|
||
|
pathGroups: transformed,
|
||
|
maxPosition: maxPosition > 10 ? Math.pow(10, Math.ceil(Math.log10(maxPosition))) : 10 };
|
||
|
|
||
|
}
|
||
|
|
||
|
function fixNewLineAfterImport(context, previousImport) {
|
||
|
var prevRoot = findRootNode(previousImport.node);
|
||
|
var tokensToEndOfLine = takeTokensAfterWhile(
|
||
|
context.getSourceCode(), prevRoot, commentOnSameLineAs(prevRoot));
|
||
|
|
||
|
var endOfLine = prevRoot.range[1];
|
||
|
if (tokensToEndOfLine.length > 0) {
|
||
|
endOfLine = tokensToEndOfLine[tokensToEndOfLine.length - 1].range[1];
|
||
|
}
|
||
|
return function (fixer) {return fixer.insertTextAfterRange([prevRoot.range[0], endOfLine], '\n');};
|
||
|
}
|
||
|
|
||
|
function removeNewLineAfterImport(context, currentImport, previousImport) {
|
||
|
var sourceCode = context.getSourceCode();
|
||
|
var prevRoot = findRootNode(previousImport.node);
|
||
|
var currRoot = findRootNode(currentImport.node);
|
||
|
var rangeToRemove = [
|
||
|
findEndOfLineWithComments(sourceCode, prevRoot),
|
||
|
findStartOfLineWithComments(sourceCode, currRoot)];
|
||
|
|
||
|
if (/^\s*$/.test(sourceCode.text.substring(rangeToRemove[0], rangeToRemove[1]))) {
|
||
|
return function (fixer) {return fixer.removeRange(rangeToRemove);};
|
||
|
}
|
||
|
return undefined;
|
||
|
}
|
||
|
|
||
|
function makeNewlinesBetweenReport(context, imported, newlinesBetweenImports) {
|
||
|
var getNumberOfEmptyLinesBetween = function getNumberOfEmptyLinesBetween(currentImport, previousImport) {
|
||
|
var linesBetweenImports = context.getSourceCode().lines.slice(
|
||
|
previousImport.node.loc.end.line,
|
||
|
currentImport.node.loc.start.line - 1);
|
||
|
|
||
|
|
||
|
return linesBetweenImports.filter(function (line) {return !line.trim().length;}).length;
|
||
|
};
|
||
|
var previousImport = imported[0];
|
||
|
|
||
|
imported.slice(1).forEach(function (currentImport) {
|
||
|
var emptyLinesBetween = getNumberOfEmptyLinesBetween(currentImport, previousImport);
|
||
|
|
||
|
if (newlinesBetweenImports === 'always' ||
|
||
|
newlinesBetweenImports === 'always-and-inside-groups') {
|
||
|
if (currentImport.rank !== previousImport.rank && emptyLinesBetween === 0) {
|
||
|
context.report({
|
||
|
node: previousImport.node,
|
||
|
message: 'There should be at least one empty line between import groups',
|
||
|
fix: fixNewLineAfterImport(context, previousImport) });
|
||
|
|
||
|
} else if (currentImport.rank === previousImport.rank &&
|
||
|
emptyLinesBetween > 0 &&
|
||
|
newlinesBetweenImports !== 'always-and-inside-groups') {
|
||
|
context.report({
|
||
|
node: previousImport.node,
|
||
|
message: 'There should be no empty line within import group',
|
||
|
fix: removeNewLineAfterImport(context, currentImport, previousImport) });
|
||
|
|
||
|
}
|
||
|
} else if (emptyLinesBetween > 0) {
|
||
|
context.report({
|
||
|
node: previousImport.node,
|
||
|
message: 'There should be no empty line between import groups',
|
||
|
fix: removeNewLineAfterImport(context, currentImport, previousImport) });
|
||
|
|
||
|
}
|
||
|
|
||
|
previousImport = currentImport;
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function getAlphabetizeConfig(options) {
|
||
|
var alphabetize = options.alphabetize || {};
|
||
|
var order = alphabetize.order || 'ignore';
|
||
|
var caseInsensitive = alphabetize.caseInsensitive || false;
|
||
|
|
||
|
return { order: order, caseInsensitive: caseInsensitive };
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
meta: {
|
||
|
type: 'suggestion',
|
||
|
docs: {
|
||
|
url: (0, _docsUrl2['default'])('order') },
|
||
|
|
||
|
|
||
|
fixable: 'code',
|
||
|
schema: [
|
||
|
{
|
||
|
type: 'object',
|
||
|
properties: {
|
||
|
groups: {
|
||
|
type: 'array' },
|
||
|
|
||
|
pathGroupsExcludedImportTypes: {
|
||
|
type: 'array' },
|
||
|
|
||
|
pathGroups: {
|
||
|
type: 'array',
|
||
|
items: {
|
||
|
type: 'object',
|
||
|
properties: {
|
||
|
pattern: {
|
||
|
type: 'string' },
|
||
|
|
||
|
patternOptions: {
|
||
|
type: 'object' },
|
||
|
|
||
|
group: {
|
||
|
type: 'string',
|
||
|
'enum': types },
|
||
|
|
||
|
position: {
|
||
|
type: 'string',
|
||
|
'enum': ['after', 'before'] } },
|
||
|
|
||
|
|
||
|
required: ['pattern', 'group'] } },
|
||
|
|
||
|
|
||
|
'newlines-between': {
|
||
|
'enum': [
|
||
|
'ignore',
|
||
|
'always',
|
||
|
'always-and-inside-groups',
|
||
|
'never'] },
|
||
|
|
||
|
|
||
|
alphabetize: {
|
||
|
type: 'object',
|
||
|
properties: {
|
||
|
caseInsensitive: {
|
||
|
type: 'boolean',
|
||
|
'default': false },
|
||
|
|
||
|
order: {
|
||
|
'enum': ['ignore', 'asc', 'desc'],
|
||
|
'default': 'ignore' } },
|
||
|
|
||
|
|
||
|
additionalProperties: false },
|
||
|
|
||
|
warnOnUnassignedImports: {
|
||
|
type: 'boolean',
|
||
|
'default': false } },
|
||
|
|
||
|
|
||
|
additionalProperties: false }] },
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
create: function () {function importOrderRule(context) {
|
||
|
var options = context.options[0] || {};
|
||
|
var newlinesBetweenImports = options['newlines-between'] || 'ignore';
|
||
|
var pathGroupsExcludedImportTypes = new Set(options['pathGroupsExcludedImportTypes'] || ['builtin', 'external', 'object']);
|
||
|
var alphabetize = getAlphabetizeConfig(options);
|
||
|
var ranks = void 0;
|
||
|
|
||
|
try {var _convertPathGroupsFor =
|
||
|
convertPathGroupsForRanks(options.pathGroups || []),pathGroups = _convertPathGroupsFor.pathGroups,maxPosition = _convertPathGroupsFor.maxPosition;var _convertGroupsToRanks =
|
||
|
convertGroupsToRanks(options.groups || defaultGroups),groups = _convertGroupsToRanks.groups,omittedTypes = _convertGroupsToRanks.omittedTypes;
|
||
|
ranks = {
|
||
|
groups: groups,
|
||
|
omittedTypes: omittedTypes,
|
||
|
pathGroups: pathGroups,
|
||
|
maxPosition: maxPosition };
|
||
|
|
||
|
} catch (error) {
|
||
|
// Malformed configuration
|
||
|
return {
|
||
|
Program: function () {function Program(node) {
|
||
|
context.report(node, error.message);
|
||
|
}return Program;}() };
|
||
|
|
||
|
}
|
||
|
var importMap = new Map();
|
||
|
|
||
|
function getBlockImports(node) {
|
||
|
if (!importMap.has(node)) {
|
||
|
importMap.set(node, []);
|
||
|
}
|
||
|
return importMap.get(node);
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
ImportDeclaration: function () {function handleImports(node) {
|
||
|
// Ignoring unassigned imports unless warnOnUnassignedImports is set
|
||
|
if (node.specifiers.length || options.warnOnUnassignedImports) {
|
||
|
var name = node.source.value;
|
||
|
registerNode(
|
||
|
context,
|
||
|
{
|
||
|
node: node,
|
||
|
value: name,
|
||
|
displayName: name,
|
||
|
type: 'import' },
|
||
|
|
||
|
ranks,
|
||
|
getBlockImports(node.parent),
|
||
|
pathGroupsExcludedImportTypes);
|
||
|
|
||
|
}
|
||
|
}return handleImports;}(),
|
||
|
TSImportEqualsDeclaration: function () {function handleImports(node) {
|
||
|
var displayName = void 0;
|
||
|
var value = void 0;
|
||
|
var type = void 0;
|
||
|
// skip "export import"s
|
||
|
if (node.isExport) {
|
||
|
return;
|
||
|
}
|
||
|
if (node.moduleReference.type === 'TSExternalModuleReference') {
|
||
|
value = node.moduleReference.expression.value;
|
||
|
displayName = value;
|
||
|
type = 'import';
|
||
|
} else {
|
||
|
value = '';
|
||
|
displayName = context.getSourceCode().getText(node.moduleReference);
|
||
|
type = 'import:object';
|
||
|
}
|
||
|
registerNode(
|
||
|
context,
|
||
|
{
|
||
|
node: node,
|
||
|
value: value,
|
||
|
displayName: displayName,
|
||
|
type: type },
|
||
|
|
||
|
ranks,
|
||
|
getBlockImports(node.parent),
|
||
|
pathGroupsExcludedImportTypes);
|
||
|
|
||
|
}return handleImports;}(),
|
||
|
CallExpression: function () {function handleRequires(node) {
|
||
|
if (!(0, _staticRequire2['default'])(node)) {
|
||
|
return;
|
||
|
}
|
||
|
var block = getRequireBlock(node);
|
||
|
if (!block) {
|
||
|
return;
|
||
|
}
|
||
|
var name = node.arguments[0].value;
|
||
|
registerNode(
|
||
|
context,
|
||
|
{
|
||
|
node: node,
|
||
|
value: name,
|
||
|
displayName: name,
|
||
|
type: 'require' },
|
||
|
|
||
|
ranks,
|
||
|
getBlockImports(block),
|
||
|
pathGroupsExcludedImportTypes);
|
||
|
|
||
|
}return handleRequires;}(),
|
||
|
'Program:exit': function () {function reportAndReset() {
|
||
|
importMap.forEach(function (imported) {
|
||
|
if (newlinesBetweenImports !== 'ignore') {
|
||
|
makeNewlinesBetweenReport(context, imported, newlinesBetweenImports);
|
||
|
}
|
||
|
|
||
|
if (alphabetize.order !== 'ignore') {
|
||
|
mutateRanksToAlphabetize(imported, alphabetize);
|
||
|
}
|
||
|
|
||
|
makeOutOfOrderReport(context, imported);
|
||
|
});
|
||
|
|
||
|
importMap.clear();
|
||
|
}return reportAndReset;}() };
|
||
|
|
||
|
}return importOrderRule;}() };
|
||
|
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uL3NyYy9ydWxlcy9vcmRlci5qcyJdLCJuYW1lcyI6WyJkZWZhdWx0R3JvdXBzIiwicmV2ZXJzZSIsImFycmF5IiwibWFwIiwidiIsIk9iamVjdCIsImFzc2lnbiIsInJhbmsiLCJnZXRUb2tlbnNPckNvbW1lbnRzQWZ0ZXIiLCJzb3VyY2VDb2RlIiwibm9kZSIsImNvdW50IiwiY3VycmVudE5vZGVPclRva2VuIiwicmVzdWx0IiwiaSIsImdldFRva2VuT3JDb21tZW50QWZ0ZXIiLCJwdXNoIiwiZ2V0VG9rZW5zT3JDb21tZW50c0JlZm9yZSIsImdldFRva2VuT3JDb21tZW50QmVmb3JlIiwidGFrZVRva2Vuc0FmdGVyV2hpbGUiLCJjb25kaXRpb24iLCJ0b2tlbnMiLCJsZW5ndGgiLCJ0YWtlVG9rZW5zQmVmb3JlV2hpbGUiLCJmaW5kT3V0T2ZPcmRlciIsImltcG9ydGVkIiwibWF4U2VlblJhbmtOb2RlIiwiZmlsdGVyIiwiaW1wb3J0ZWRNb2R1bGUiLCJyZXMiLCJmaW5kUm9vdE5vZGUiLCJwYXJlbnQiLCJib2R5IiwiZmluZEVuZE9mTGluZVdpdGhDb21tZW50cyIsInRva2Vuc1RvRW5kT2ZMaW5lIiwiY29tbWVudE9uU2FtZUxpbmVBcyIsImVuZE9mVG9rZW5zIiwicmFuZ2UiLCJ0ZXh0IiwidG9rZW4iLCJ0eXBlIiwibG9jIiwic3RhcnQiLCJsaW5lIiwiZW5kIiwiZmluZFN0YXJ0T2ZMaW5lV2l0aENvbW1lbnRzIiwic3RhcnRPZlRva2VucyIsImlzUGxhaW5SZXF1aXJlTW9kdWxlIiwiZGVjbGFyYXRpb25zIiwiZGVjbCIsImlkIiwiaW5pdCIsImNhbGxlZSIsIm5hbWUiLCJhcmd1bWVudHMiLCJpc1BsYWluSW1wb3J0TW9kdWxlIiwic3BlY2lmaWVycyIsImlzUGxhaW5JbXBvcnRFcXVhbHMiLCJtb2R1bGVSZWZlcmVuY2UiLCJleHByZXNzaW9uIiwiY2FuQ3Jvc3NOb2RlV2hpbGVSZW9yZGVyIiwiY2FuUmVvcmRlckl0ZW1zIiwiZmlyc3ROb2RlIiwic2Vjb25kTm9kZSIsImluZGV4T2YiLCJzb3J0IiwiZmlyc3RJbmRleCIsInNlY29uZEluZGV4Iiwibm9kZXNCZXR3ZWVuIiwic2xpY2UiLCJub2RlQmV0d2VlbiIsImZpeE91dE9mT3JkZXIiLCJjb250ZXh0Iiwib3JkZXIiLCJnZXRTb3VyY2VDb2RlIiwiZmlyc3RSb290IiwiZmlyc3RSb290U3RhcnQiLCJmaXJzdFJvb3RFbmQiLCJzZWNvbmRSb290Iiwic2Vjb25kUm9vdFN0YXJ0Iiwic2Vjb25kUm9vdEVuZCIsImNhbkZpeCIsIm5ld0NvZGUiLCJzdWJzdHJpbmciLCJtZXNzYWdlIiwiZGlzcGxheU5hbWUiLCJyZXBvcnQiLCJmaXgiLCJmaXhlciIsInJlcGxhY2VUZXh0UmFuZ2UiLCJyZXBvcnRPdXRPZk9yZGVyIiwib3V0T2ZPcmRlciIsImZvckVhY2giLCJpbXAiLCJmb3VuZCIsImZpbmQiLCJoYXNIaWdoZXJSYW5rIiwiaW1wb3J0ZWRJdGVtIiwibWFrZU91dE9mT3JkZXJSZXBvcnQiLCJyZXZlcnNlZEltcG9ydGVkIiwicmV2ZXJzZWRPcmRlciIsImdldFNvcnRlciIsImFzY2VuZGluZyIsIm11bHRpcGxpZXIiLCJpbXBvcnRzU29ydGVyIiwiaW1wb3J0QSIsImltcG9ydEIiLCJtdXRhdGVSYW5rc1RvQWxwaGFiZXRpemUiLCJhbHBoYWJldGl6ZU9wdGlvbnMiLCJncm91cGVkQnlSYW5rcyIsInJlZHVjZSIsImFjYyIsIkFycmF5IiwiaXNBcnJheSIsImdyb3VwUmFua3MiLCJrZXlzIiwic29ydGVyRm4iLCJjb21wYXJhdG9yIiwiY2FzZUluc2Vuc2l0aXZlIiwiYSIsImIiLCJTdHJpbmciLCJ2YWx1ZSIsInRvTG93ZXJDYXNlIiwiZ3JvdXBSYW5rIiwibmV3UmFuayIsImFscGhhYmV0aXplZFJhbmtzIiwiaW1wb3J0S2luZCIsInBhcnNlSW50IiwiY29tcHV0ZVBhdGhSYW5rIiwicmFua3MiLCJwYXRoR3JvdXBzIiwicGF0aCIsIm1heFBvc2l0aW9uIiwibCIsInBhdHRlcm4iLCJwYXR0ZXJuT3B0aW9ucyIsImdyb3VwIiwicG9zaXRpb24iLCJub2NvbW1lbnQiLCJjb21wdXRlUmFuayIsImltcG9ydEVudHJ5IiwiZXhjbHVkZWRJbXBvcnRUeXBlcyIsImltcFR5cGUiLCJvbWl0dGVkVHlwZXMiLCJoYXMiLCJncm91cHMiLCJzdGFydHNXaXRoIiwicmVnaXN0ZXJOb2RlIiwiZ2V0UmVxdWlyZUJsb2NrIiwibiIsIm9iamVjdCIsInR5cGVzIiwiY29udmVydEdyb3Vwc1RvUmFua3MiLCJyYW5rT2JqZWN0IiwiaW5kZXgiLCJncm91cEl0ZW0iLCJFcnJvciIsIkpTT04iLCJzdHJpbmdpZnkiLCJ1bmRlZmluZWQiLCJjb252ZXJ0UGF0aEdyb3Vwc0ZvclJhbmtzIiwiYWZ0ZXIiLCJiZWZvcmUiLCJ0cmFuc2Zvcm1lZCIsInBhdGhHcm91cCIsInBvc2l0aW9uU3RyaW5nIiwiZ3JvdXBMZW5ndGgiLCJncm91cEluZGV4IiwiTWF0aCIsIm1heCIsImtleSIsImdyb3VwTmV4dFBvc2l0aW9uIiwicG93IiwiY2VpbCIsImxvZzEwIiwiZml4TmV3TGluZUFmdGVySW1wb3J0IiwicHJldmlvdXNJbXBvcnQiLCJwcmV2Um9vdCIsImVuZE9mTGluZSIsImluc2VydFRleHRBZnRlclJhbmdlIiwicmVtb3ZlTmV3TGluZUFmdGVySW1wb3J0IiwiY3VycmVudEltcG9ydCIsImN1cnJSb290IiwicmFuZ2VUb1JlbW92ZSIsInRlc3QiLCJyZW1vdmVSYW5nZSIsIm1ha2VOZXdsaW5lc0JldHdlZW5SZXBvcnQiLCJuZXdsaW5lc0JldHdlZW5JbXBvcnRzIiwiZ2V0TnVtYmVyT2ZFbXB0eUxpbmVzQmV0d2VlbiIsImxpbmVzQmV0d2VlbkltcG9ydHMiLCJsaW5lcyIsInRyaW0iLCJlbXB0eUxpbmVzQmV0d2VlbiIsImdldEFscGhhYmV0aXplQ29uZmlnIiwib3B0aW9ucyIsImFscGhhYmV0aXplIiwibW9kdWxlIiwiZXhwb3J0cyIsIm1ldGEiLCJkb2NzIiwidXJsIiwiZml4YWJsZSIsInNjaGVtYSIsInByb3BlcnRpZXMiLCJwYXRoR3JvdXBzRXhjbHVkZWRJbXBvcnRUeXBlcyIsIml0ZW1zIiwicmVxdWlyZWQiLCJhZGRpdGlvbmFsUHJvcGVydGllcyIsIndhcm5PblVuYXNzaWduZWRJbXBvcnRzIiwiY3JlYXRlIiwiaW1wb3J0T3JkZXJSdWxlIiwiU2V0IiwiZXJyb3IiLCJQcm9ncmFtIiwiaW1wb3J0TWFwIiwiTWFwIiwiZ2V0QmxvY2tJbXBvcnRzIiwic2V0IiwiZ2V0IiwiSW1wb3J0RGVjbGFyYXRpb24iLCJoYW5kbGVJbXBvcnRzIiwic291cmNlIiwiVFNJbXBvcnRFcXVhbHNEZWNsYXJhdGlvbiIsImlzRXhwb3J0IiwiZ2V0VGV4dCIsIkNhbGxFeHByZXNzaW9
|