@u3u/eslint-config
Version:
My ESLint config
60 lines (55 loc) • 1.69 kB
JavaScript
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
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 __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/json.ts
var json_exports = {};
__export(json_exports, {
default: () => json_default
});
module.exports = __toCommonJS(json_exports);
// src/utils/define-config.ts
var defineConfig = (config) => {
return config;
};
// src/json.ts
var json_default = defineConfig({
overrides: [
{
extends: "plugin:eslint-plugin-json-es/recommended",
files: ["*.json"],
parser: "eslint-plugin-json-es",
rules: {
"unicorn/numeric-separators-style": "off"
}
},
{
files: ["package.json"],
parser: "eslint-plugin-json-es",
rules: {
"ext/lines-between-object-properties": "off",
"sort-keys/sort-keys-fix": "off"
}
}
]
});
// fix-cjs-exports
if (module.exports.default) {
Object.assign(module.exports.default, module.exports);
module.exports = module.exports.default;
delete module.exports.default;
}
;