apigeelint
Version:
Node module and tool to lint a bundle for an Apigee API Proxy or sharedflow.
19 lines (18 loc) • 400 B
JavaScript
module.exports = [
{
languageOptions: {
ecmaVersion: 2022,
sourceType: "script",
},
rules: {
semi: ["error", "always"],
"no-unused-vars": [
"error",
{ argsIgnorePattern: "^_", varsIgnorePattern: "^_" },
],
"no-var": "error",
"prefer-const": "error",
},
ignores: ["lib/package/plugins/BN004-unusedVariables.js"],
},
];