UNPKG

rainlink

Version:

Another lavalink wrapper but focus on stability and rich features

45 lines (40 loc) 1.37 kB
import typescriptEslint from "@typescript-eslint/eslint-plugin"; import globals from "globals"; import tsParser from "@typescript-eslint/parser"; import path from "node:path"; import { fileURLToPath } from "node:url"; import js from "@eslint/js"; import { FlatCompat } from "@eslint/eslintrc"; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); const compat = new FlatCompat({ baseDirectory: __dirname, recommendedConfig: js.configs.recommended, allConfig: js.configs.all }); export default [ ...compat.extends("eslint:recommended", "plugin:@typescript-eslint/recommended"), { plugins: { "@typescript-eslint": typescriptEslint, }, languageOptions: { globals: { ...globals.browser, }, parser: tsParser, ecmaVersion: "latest", sourceType: "module", }, rules: { indent: ["error", "tab"], quotes: ["error", "single"], "no-console": "error", "@typescript-eslint/no-explicit-any": "off", "no-mixed-spaces-and-tabs": "off", "no-useless-escape": "off", "@typescript-eslint/no-unsafe-declaration-merging": "off", "@typescript-eslint/no-unused-expressions": "off" }, }, ];