mirror of
https://github.com/tsightler/ring-mqtt.git
synced 2025-09-26 12:51:10 +08:00
17 lines
249 B
JavaScript
17 lines
249 B
JavaScript
import globals from "globals";
|
|
import pluginJs from "@eslint/js";
|
|
|
|
|
|
export default [
|
|
{
|
|
languageOptions: {
|
|
globals: globals.node
|
|
}
|
|
},
|
|
pluginJs.configs.recommended,
|
|
{
|
|
rules: {
|
|
"no-prototype-builtins": "off"
|
|
}
|
|
}
|
|
]; |