rs-runner
Version:
RS is a CLI tool for quickly detecting package.json scripts, and running them.
24 lines (22 loc) • 585 B
JavaScript
const eslint = require("@eslint/js");
const tseslint = require("typescript-eslint");
module.exports = tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
languageOptions: {
parserOptions: {
project: "./tsconfig.json",
},
},
rules: {
"no-console": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": ["error", { "caughtErrors": "none" }],
"no-prototype-builtins": "off",
},
},
{
ignores: ["dist/", "node_modules/"],
}
);