mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 19:13:14 -04:00
Updates files outside of x-pack to be triple-licensed under Elastic License 2.0, AGPL 3.0, or SSPL 1.0.
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the "Elastic License
|
|
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side
|
|
* Public License v 1"; you may not use this file except in compliance with, at
|
|
* your election, the "Elastic License 2.0", the "GNU Affero General Public
|
|
* License v3.0 only", or the "Server Side Public License, v 1".
|
|
*/
|
|
|
|
/** @typedef {import("eslint").Rule.RuleModule} Rule */
|
|
/** @typedef {import("@typescript-eslint/typescript-estree").TSESTree.ImportDeclaration} ImportDeclaration */
|
|
|
|
const ERROR_MSG =
|
|
'Using a trailing slash in package import statements causes issues with webpack and is inconsistent with the rest of the repository.';
|
|
|
|
/** @type {Rule} */
|
|
module.exports = {
|
|
meta: {
|
|
fixable: 'code',
|
|
schema: [],
|
|
},
|
|
create: (context) => ({
|
|
ImportDeclaration(_) {
|
|
const node = /** @type {ImportDeclaration} */ (_);
|
|
const req = node.source.value;
|
|
|
|
if (!req.startsWith('.') && req.endsWith('/')) {
|
|
context.report({
|
|
message: ERROR_MSG,
|
|
loc: node.source.loc,
|
|
fix(fixer) {
|
|
return fixer.replaceText(node.source, `'${req.slice(0, -1)}'`);
|
|
},
|
|
});
|
|
}
|
|
},
|
|
}),
|
|
};
|