mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
16 lines
337 B
JavaScript
16 lines
337 B
JavaScript
|
import globals from "globals";
|
||
|
import pluginJs from "@eslint/js";
|
||
|
|
||
|
|
||
|
/** @type {import('eslint').Linter.Config[]} */
|
||
|
export default [
|
||
|
{
|
||
|
languageOptions: {
|
||
|
globals: {
|
||
|
...globals.browser,
|
||
|
Base64 : "writeable" // to feed the Base64 class into the global scope
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
pluginJs.configs.recommended,
|
||
|
];
|