mirror of
https://github.com/LukeHagar/crossws.git
synced 2025-12-06 04:19:26 +00:00
16 lines
299 B
JavaScript
16 lines
299 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
|
|
},
|
|
});
|