PromucFlow_constructor/app/client/packages/eslint-plugin/src/index.ts

17 lines
260 B
TypeScript
Raw Normal View History

import { objectKeysRule } from "./object-keys/rule";
const plugin = {
rules: {
"object-keys": objectKeysRule,
},
configs: {
recommended: {
rules: {
"@appsmith/object-keys": "warn",
},
},
},
};
module.exports = plugin;