skilld-frontend/.eslintrc.json

11 lines
253 B
JSON
Raw Permalink Normal View History

{
"extends": "next/core-web-vitals",
"plugins": ["@typescript-eslint"],
"rules": {
"@typescript-eslint/no-unused-vars": ["warn", { "args": "none" }],
"import/no-unresolved": "off",
"import/named": "off",
"no-console": "warn"
}
}