node-enterprise-starter
Version:
<h1 align="center">Node Enterprise Starter</h1>
25 lines (24 loc) • 456 B
JavaScript
import eslint from "@eslint/js"
import tseslint from "@typescript-eslint"
export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.recommended,
{
languageOptions: {
globals: {
...globals.node,
}
}
},
{
rules: {
"no-unused-vars": "error",
"no-undef": "error",
"prefer-const" : "error",
"no-console": "warn",
}
},
{
ignores: ["**/dist/", "**/node_modules/"]
}
)