Files
Alfred/eslint-rules/local-rules.js

13 lines
281 B
JavaScript

import { enforceCatchType } from "./enforce-catch-type.js";
import { noEmptyFunction } from "./no-empty-function.js";
export default {
meta: {
name: "local-rules",
},
rules: {
"enforce-catch-type": enforceCatchType,
"no-empty-function": noEmptyFunction,
},
};