eslint-plugin-goblock-custom-rules
Version:
ESLint plugin to enforce pattern rules in Clean Architecture (goBlockchain)
26 lines (25 loc) • 961 B
JavaScript
/*
* goAssets - API
* Copyright (C) 2024 goBlockchain
* All rights reserved.
*
* This software is the confidential and proprietary information of goBlockchain.
* You shall not disclose such confidential information and shall use it only in
* accordance with the terms of the license agreement you entered into with goBlockchain.
*
* Unauthorized copying of this file, via any medium, is strictly prohibited.
* Licensed under the goBlockchain license agreement.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.rules = void 0;
const noFindOutsideRepositoryRule_1 = __importDefault(require("./rules/noFindOutsideRepositoryRule"));
exports.rules = {
'no-find-outside-repository': noFindOutsideRepositoryRule_1.default,
};
exports.default = {
rules: exports.rules,
};
;