@u3u/eslint-config
Version:
My ESLint config
98 lines (92 loc) • 3.03 kB
JavaScript
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/index.ts
var src_exports = {};
__export(src_exports, {
default: () => src_default
});
module.exports = __toCommonJS(src_exports);
// src/utils/define-config.ts
var defineConfig = (config) => {
return config;
};
// src/utils/env.ts
var import_node_fs = __toESM(require("fs"));
var import_node_path = __toESM(require("path"));
var import_local_pkg = require("local-pkg");
var env = {
get hasTsconfig() {
return import_node_fs.default.existsSync(env.tsconfigPath);
},
get isAstro() {
return (0, import_local_pkg.isPackageExists)("astro");
},
get isReact() {
return (0, import_local_pkg.isPackageExists)("react");
},
get isTs() {
return (0, import_local_pkg.isPackageExists)("typescript");
},
get isVue() {
return (0, import_local_pkg.isPackageExists)("vue");
},
get tsconfig() {
return process.env.ESLINT_TSCONFIG || "tsconfig.json";
},
get tsconfigPath() {
return import_node_path.default.resolve(process.cwd(), env.tsconfig);
},
get useTsForJs() {
return process.env.USE_TS_FOR_JS === "true";
}
};
// src/index.ts
var { isAstro, isReact, isTs, isVue } = env;
var src_default = defineConfig({
extends: [
//
"./base",
"./import",
"./regexp",
"./unicorn",
isReact && "./react",
isTs && "./ts",
isVue && "./vue",
isAstro && "./astro",
"./json",
"./md",
"./mdx"
].filter(Boolean).map((item) => require.resolve(item))
});
// fix-cjs-exports
if (module.exports.default) {
Object.assign(module.exports.default, module.exports);
module.exports = module.exports.default;
delete module.exports.default;
}
;