mirror of
https://github.com/LukeHagar/crossws.git
synced 2025-12-06 04:19:26 +00:00
13 lines
349 B
JavaScript
13 lines
349 B
JavaScript
import unjs from "eslint-config-unjs";
|
|
|
|
// https://github.com/unjs/eslint-config
|
|
export default unjs({
|
|
ignores: ["types", "**/.wrangler", "**/.docs/**"],
|
|
rules: {
|
|
"@typescript-eslint/no-unused-vars": 0,
|
|
"no-useless-constructor": 0,
|
|
"unicorn/consistent-function-scoping": 0,
|
|
"@typescript-eslint/no-empty-object-type": 0,
|
|
},
|
|
});
|