mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-25 04:12:14 +08:00
13 lines
250 B
JavaScript
13 lines
250 B
JavaScript
"use strict";
|
|
|
|
const { Linter } = require("./linter");
|
|
const interpolate = require("./interpolate");
|
|
const SourceCodeFixer = require("./source-code-fixer");
|
|
|
|
module.exports = {
|
|
Linter,
|
|
|
|
// For testers.
|
|
SourceCodeFixer,
|
|
interpolate
|
|
};
|