discord-rpc/eslint.config.js
Naomi Carrigan 46ae51bd33
Some checks failed
Node.js CI / Lint and Test (push) Has been cancelled
feat: initial project
2025-02-18 15:19:25 -08:00

14 lines
369 B
JavaScript

import NaomisConfig from "@nhcarrigan/eslint-config";
export default [
...NaomisConfig,
{
rules: {
"max-lines-per-function": "off",
"max-statements": "off",
"unicorn/prefer-top-level-await": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"complexity": "off",
}
}
]