mirror of
https://github.com/adrianjagielak/home-assistant-futurehome.git
synced 2025-10-10 22:42:06 -06:00
27 lines
601 B
JavaScript
27 lines
601 B
JavaScript
|
import js from "@eslint/js";
|
||
|
import globals from "globals";
|
||
|
import tseslint from "typescript-eslint";
|
||
|
import { defineConfig } from "eslint/config";
|
||
|
|
||
|
export default defineConfig([
|
||
|
js.configs.recommended,
|
||
|
tseslint.configs.recommended,
|
||
|
{
|
||
|
files: ["**/*.{ts,tsx}"],
|
||
|
languageOptions: {
|
||
|
parser: tseslint.parser,
|
||
|
parserOptions: {
|
||
|
ecmaVersion: "latest",
|
||
|
sourceType: "module",
|
||
|
},
|
||
|
globals: globals.node,
|
||
|
},
|
||
|
plugins: {
|
||
|
"@typescript-eslint": tseslint.plugin,
|
||
|
},
|
||
|
rules: {
|
||
|
"@typescript-eslint/no-explicit-any": "off",
|
||
|
},
|
||
|
},
|
||
|
]);
|