mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 17:50:07 +08:00
24 lines
532 B
JavaScript
24 lines
532 B
JavaScript
/**
|
|
* @fileoverview Main package entrypoint.
|
|
* @author Nicholas C. Zakas
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
const { name, version } = require("../package.json");
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Public Interface
|
|
//------------------------------------------------------------------------------
|
|
|
|
module.exports = {
|
|
meta: {
|
|
name,
|
|
version
|
|
},
|
|
configs: {
|
|
all: require("./configs/eslint-all"),
|
|
recommended: require("./configs/eslint-recommended")
|
|
}
|
|
};
|