Client side atproto account migrator in your web browser, along with services for backups and adversarial migrations. pdsmoover.com
pds atproto migrations moo cow
1export default [ 2 { 3 ignores: ['node_modules/**', 'dist/**'] 4 }, 5 { 6 languageOptions: { 7 ecmaVersion: 'latest', 8 sourceType: 'module', 9 globals: { 10 document: 'readonly', 11 navigator: 'readonly', 12 window: 'readonly', 13 console: 'readonly' 14 } 15 }, 16 linterOptions: { 17 reportUnusedDisableDirectives: true 18 }, 19 rules: { 20 'semi': ['error', 'always'], 21 'quotes': ['error', 'single'], 22 'indent': ['error', 2], 23 'no-unused-vars': 'warn' 24 } 25 } 26];