2025-02-18 12:40:55 +00:00
|
|
|
// plugin.js
|
|
|
|
|
|
|
|
|
|
import {default as no_print} from "./rules/no-print-fn.js";
|
2025-03-03 15:06:27 +00:00
|
|
|
import {default as no_printing_tojson} from "./rules/no-printing-tojson.js";
|
2025-02-18 12:40:55 +00:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
rules: {
|
2025-03-03 15:06:27 +00:00
|
|
|
"no-print-fn": no_print,
|
|
|
|
|
"no-printing-tojson": no_printing_tojson,
|
2025-02-18 12:40:55 +00:00
|
|
|
},
|
|
|
|
|
};
|