@u3u/eslint-config
Version:
My ESLint config
110 lines (104 loc) • 3.67 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/astro.ts
var astro_exports = {};
__export(astro_exports, {
default: () => astro_default
});
module.exports = __toCommonJS(astro_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/astro.ts
var { hasTsconfig, useTsForJs } = env;
var astro_default = defineConfig({
extends: [
// 'plugin:astro/recommended'
],
overrides: [
{
extends: hasTsconfig ? [require.resolve("./ts-for-js")] : useTsForJs ? [require.resolve("./disable-type-aware")] : [],
files: ["*.astro"],
parser: "astro-eslint-parser",
parserOptions: {
extraFileExtensions: [".astro"],
parser: "@typescript-eslint/parser"
},
plugins: ["astro"],
rules: {
// https://ota-meshi.github.io/eslint-plugin-astro/rules/
"astro/no-deprecated-astro-fetchcontent": "warn",
"astro/no-set-text-directive": "warn",
"astro/prefer-class-list-directive": "warn",
"astro/prefer-object-class-list": "warn",
"astro/prefer-split-class-list": "warn",
"react/jsx-key": "off",
// Wait for https://github.com/withastro/prettier-plugin-astro/issues/325
"react/self-closing-comp": "off"
}
}
]
});
// fix-cjs-exports
if (module.exports.default) {
Object.assign(module.exports.default, module.exports);
module.exports = module.exports.default;
delete module.exports.default;
}
;