webauthn4js
Version:
Node.js bindings to WebAuthn Go/Wasm library
34 lines (33 loc) • 643 B
JavaScript
module.exports = {
"env": {
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"semi": [
"error",
"always"
],
"brace-style": [
"error",
"1tbs"
],
"no-unused-vars": [
"error", {
"varsIgnorePattern": "^unused_",
"argsIgnorePattern": "^unused_"
}
]
}
};