mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 06:49:29 -07:00
20 lines
398 B
JavaScript
20 lines
398 B
JavaScript
|
import globals from "globals";
|
||
|
import pluginJs from "@eslint/js";
|
||
|
|
||
|
|
||
|
export default [
|
||
|
{
|
||
|
languageOptions: { globals: globals.node },
|
||
|
rules: {
|
||
|
"no-unused-vars": [
|
||
|
"error",
|
||
|
{
|
||
|
"argsIgnorePattern": "^_",
|
||
|
"caughtErrorsIgnorePattern": "^_",
|
||
|
"destructuredArrayIgnorePattern": "^_",
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
pluginJs.configs.recommended,
|
||
|
];
|