1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Add Passkeys Support

Closes gh-13305
This commit is contained in:
Rob Winch
2024-10-17 21:40:51 -05:00
parent f280aa390b
commit b0e8730d70
157 changed files with 19203 additions and 5 deletions
+30
View File
@@ -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,
];