mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-19 10:57:19 +00:00
11 lines
197 B
JavaScript
11 lines
197 B
JavaScript
// @ts-check
|
|
|
|
import tseslint from "typescript-eslint";
|
|
import rootConfig from "../eslint.config.mjs";
|
|
|
|
export default tseslint.config(...rootConfig, {
|
|
rules: {
|
|
"no-console": "off",
|
|
},
|
|
});
|