Skip to content

Commit

Permalink
Run ordering fixes after all other fixes (#25278)
Browse files Browse the repository at this point in the history
  • Loading branch information
queengooborg authored Dec 1, 2024
1 parent 5c9b6f9 commit ef9555f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lint/fix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ import { LintOptions } from './utils.js';
const dirname = fileURLToPath(new URL('.', import.meta.url));

const FIXES = Object.freeze({
browser_order: fixBrowserOrder,
feature_order: fixFeatureOrder,
property_order: fixPropertyOrder,
statement_order: fixStatementOrder,
descriptions: fixDescriptions,
flags: fixFlags,
links: fixLinks,
mdn_urls: fixMDNURLs,
status: fixStatus,
mirror: fixMirror,
browser_order: fixBrowserOrder,
feature_order: fixFeatureOrder,
property_order: fixPropertyOrder,
statement_order: fixStatementOrder,
});

/**
Expand Down

0 comments on commit ef9555f

Please sign in to comment.