Spaces:
Sleeping
Sleeping
| import js from "@eslint/js"; | |
| import globals from "globals"; | |
| import tseslint from "typescript-eslint"; | |
| import prettier from "eslint-config-prettier"; | |
| export default tseslint.config( | |
| js.configs.recommended, | |
| ...tseslint.configs.recommended, | |
| { | |
| files: ["**/*.ts"], | |
| languageOptions: { | |
| globals: { | |
| ...globals.node | |
| } | |
| }, | |
| rules: { | |
| "@typescript-eslint/no-explicit-any": "warn", | |
| "@typescript-eslint/no-unused-vars": "off" | |
| } | |
| }, | |
| prettier | |
| ); | |