chore: migrate eslint to flat config

eslint 9 ignores .eslintrc.* by default, so replace .eslintrc.cjs with a
flat eslint.config.mjs (in the style of graycoreio/daffodil)
This commit is contained in:
Damien Retzinger
2026-06-09 17:31:29 -04:00
parent 8a6a886d7e
commit 14a0e38d64
11 changed files with 271 additions and 147 deletions
@@ -3,7 +3,7 @@ import { Repository } from "./repository";
/**
* Get the next version of Magento, as determined by the repository.
*/
export const getNextVersion = (repository: Repository, date: Date) => {
export const getNextVersion = (repository: Repository, _date: Date) => {
switch(repository){
case "https://nightly.mage-os.org":
case "https://upstream-nightly.mage-os.org":