Make any typing linting opt-out instead of opt-in (#6542)

# Description of Changes
Reconfigure linting of `any` type to an opt-out instead of an opt-in
strategy now that we're close enough to everything supporting it. Also
slightly expands the scope of things included in the linting.
This commit is contained in:
James Brunton
2026-06-05 14:11:26 +00:00
committed by GitHub
parent 9ab404b2e6
commit e79f4a044f
9 changed files with 45 additions and 43 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ declare module "*.module.css";
declare module "assets/material-symbols-icons.json" {
const value: {
prefix: string;
icons: Record<string, any>;
icons: Record<string, unknown>;
width?: number;
height?: number;
};