mirror of
https://github.com/parnic/MMM-IntelliCenter.git
synced 2025-06-16 05:10:14 -05:00
17 lines
250 B
JavaScript
17 lines
250 B
JavaScript
import eslint from "@eslint/js";
|
|
import globals from "globals";
|
|
|
|
export default [
|
|
eslint.configs.recommended,
|
|
{
|
|
ignores: ["eslint.config.mjs"],
|
|
},
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.node,
|
|
},
|
|
},
|
|
},
|
|
];
|