Margin is an open annotation layer for the internet. Powered by the AT Protocol. margin.at
extension web atproto comments
at main 21 lines 539 B view raw
1import js from '@eslint/js'; 2import tseslint from 'typescript-eslint'; 3import eslintConfigPrettier from 'eslint-config-prettier'; 4 5export default tseslint.config( 6 js.configs.recommended, 7 ...tseslint.configs.recommended, 8 eslintConfigPrettier, 9 { 10 ignores: ['.output/', '.wxt/', 'node_modules/', '*.config.js'], 11 }, 12 { 13 rules: { 14 '@typescript-eslint/no-explicit-any': 'off', 15 '@typescript-eslint/no-unused-vars': [ 16 'warn', 17 { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }, 18 ], 19 }, 20 } 21);