social components inlay-proto.up.railway.app/
atproto components sdui
at main 21 lines 493 B view raw
1import tseslint from "typescript-eslint"; 2 3const eslintConfig = [ 4 ...tseslint.configs.recommended, 5 { 6 files: ["**/*.ts", "**/*.tsx"], 7 rules: { 8 "@typescript-eslint/no-unused-vars": [ 9 "error", 10 { argsIgnorePattern: "^_", varsIgnorePattern: "^_" }, 11 ], 12 "@typescript-eslint/no-explicit-any": "off", 13 "@typescript-eslint/no-namespace": "off", 14 }, 15 }, 16 { 17 ignores: ["docs/**", "dist/**", "generated/**"], 18 }, 19]; 20 21export default eslintConfig;