mirror of
https://github.com/github/codeql-action.git
synced 2025-12-31 03:30:14 +08:00
10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
"use strict";
|
|
|
|
module.exports = {
|
|
rules: {
|
|
"match-regex": require("./lib/rules/match-regex"),
|
|
"match-exported": require("./lib/rules/match-exported"),
|
|
"no-index": require("./lib/rules/no-index")
|
|
}
|
|
};
|