Add Passkeys Support
Closes gh-13305
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
import globals from "globals";
|
||||
import eslintConfigPrettier from "eslint-plugin-prettier/recommended";
|
||||
|
||||
export default [
|
||||
{
|
||||
ignores: ["build/**/*"],
|
||||
},
|
||||
{
|
||||
files: ["lib/**/*.js"],
|
||||
languageOptions: {
|
||||
sourceType: "module",
|
||||
globals: {
|
||||
...globals.browser,
|
||||
gobalThis: "readonly",
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
files: ["test/**/*.js"],
|
||||
languageOptions: {
|
||||
globals: {
|
||||
...globals.browser,
|
||||
...globals.mocha,
|
||||
...globals.chai,
|
||||
...globals.nodeBuiltin,
|
||||
},
|
||||
},
|
||||
},
|
||||
eslintConfigPrettier,
|
||||
];
|
||||
Reference in New Issue
Block a user