ci: add Makefile and stricter eslint config
Deploy / Build (push) Has been cancelled
Deploy / Deploy to Stapler (push) Has been cancelled
Lint / ESLint (push) Has been cancelled
Lint / Oxlint (push) Has been cancelled
Lint / Type Check (push) Has been cancelled

This commit is contained in:
2026-05-02 00:08:13 +02:00
parent 1b626c1e89
commit 767fb8cfc6
12 changed files with 303 additions and 188 deletions
+10 -10
View File
@@ -4,15 +4,15 @@ import articlesConfig from '@articles/config.json'
export const NAME: string = packageJson.name
export const VERSION: string = packageJson.version
export const REPOSITORY: string = packageJson.repository
export const TITLE: string = articlesConfig['title']
export const SIGNATURE: string = articlesConfig['signature']
export const COPYRIGHT: string = articlesConfig['copyright']
export const RSS_LINK: string = articlesConfig['rss_link']
export const BACK_LINK: string = articlesConfig['back_link']
export const ABOUT_LINK: string = articlesConfig['about_link']
export const HOME_COUNT: number = articlesConfig['home_count']
export const PUBLISHED_ON: string = articlesConfig['published_on']
export const UPDATED_ON: string = articlesConfig['updated_on']
export const AUTHORED: string = articlesConfig['authored']
export const TITLE: string = articlesConfig.title
export const SIGNATURE: string = articlesConfig.signature
export const COPYRIGHT: string = articlesConfig.copyright
export const RSS_LINK: string = articlesConfig.rss_link
export const BACK_LINK: string = articlesConfig.back_link
export const ABOUT_LINK: string = articlesConfig.about_link
export const HOME_COUNT: number = articlesConfig.home_count
export const PUBLISHED_ON: string = articlesConfig.published_on
export const UPDATED_ON: string = articlesConfig.updated_on
export const AUTHORED: string = articlesConfig.authored
export const BASE_URL: string = import.meta.env.BASE_URL
export const PROD: boolean = import.meta.env.PROD