Skip to content

Commit

Permalink
Merge pull request #52 from Web3Auth/feat/manage-mfa
Browse files Browse the repository at this point in the history
Feat/manage mfa
  • Loading branch information
chaitanyapotti authored Jan 21, 2025
2 parents ad4174b + 3786fcd commit 3152ce0
Show file tree
Hide file tree
Showing 20 changed files with 2,289 additions and 3,481 deletions.
45 changes: 0 additions & 45 deletions .eslintrc.js

This file was deleted.

27 changes: 27 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import toruslabsVue from '@toruslabs/eslint-config-vue'

export default [
...toruslabsVue,
{
rules: {
'tailwindcss/no-custom-classname': 'off',
'vue/multi-word-component-names': 'off',
'no-console': 'off',
'prettier/prettier': [
'error',
{ semi: false, tabWidth: 2, singleQuote: true, printWidth: 100, trailingComma: 'none' }
],
camelcase: 0,
'import/extensions': [
'error',
'ignorePackages',
{
js: 'never',
jsx: 'never',
ts: 'never',
tsx: 'never'
}
]
}
}
]
Loading

0 comments on commit 3152ce0

Please sign in to comment.