mirror of
https://github.com/home-assistant/frontend.git
synced 2026-09-13 04:01:57 +01:00
21 lines
524 B
JavaScript
21 lines
524 B
JavaScript
// @ts-check
|
|
|
|
import globals from "globals";
|
|
import tseslint from "typescript-eslint";
|
|
import rootConfig from "../eslint.config.mjs";
|
|
|
|
export default tseslint.config(...rootConfig, {
|
|
languageOptions: {
|
|
globals: globals.node,
|
|
},
|
|
rules: {
|
|
"no-console": "off",
|
|
"import-x/no-extraneous-dependencies": "off",
|
|
"import-x/extensions": "off",
|
|
"import-x/no-dynamic-require": "off",
|
|
"global-require": "off",
|
|
"@typescript-eslint/no-require-imports": "off",
|
|
"prefer-arrow-callback": "off",
|
|
},
|
|
});
|