Update lint rules

This commit is contained in:
schroda
2026-03-11 00:11:29 +01:00
parent 5dda4304d9
commit 72af9d52d1
377 changed files with 1132 additions and 1048 deletions

View File

@@ -6,7 +6,7 @@
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
import {
import type {
WeblateChangePayload,
WeblateChangeResult,
WeblateLanguagePayload,
@@ -52,7 +52,7 @@ export const getUsername = async (url: string): Promise<string> => {
export const getLanguageName = async (url: string): Promise<string> => {
const languagePayload = await fetchData<WeblateLanguagePayload>(url);
return languagePayload.language.name.replace(/\(([a-zA-Z]+) Han script\)/g, '($1)');
return languagePayload.language.name.replaceAll(/\(([a-zA-Z]+) Han script\)/g, '($1)');
};
export const fetchWeblateLanguageStats = async () =>
@@ -68,7 +68,7 @@ export const validateWeblateDates = (afterDate: string, beforeDate: string) => {
}
};
export const normalizeCode = (code: string): string => code.replace(/[-_]/g, '');
export const normalizeCode = (code: string): string => code.replaceAll(/[-_]/g, '');
export const getWeblateLanguageStatsFor = (
code: string,

View File

@@ -14,7 +14,7 @@ import {
getWeblateLanguageStatsFor,
meetsTranslatedPercentThreshold as meetsTranslatedPercentThresholdBase,
} from './Weblate.utils.ts';
import { WeblateLanguageStatistic } from './Weblate.types.ts';
import type { WeblateLanguageStatistic } from './Weblate.types.ts';
import { TRANSLATED_PERCENT_THRESHOLD } from './Weblate.constants.ts';
const I18N_INDEX_PATH = 'src/i18n/index.ts';
@@ -50,7 +50,7 @@ const formatLocalesArray = (locales: string[]): string => locales.map((locale) =
const updateI18nIndex = (locales: string[]): void => {
const content = fs.readFileSync(i18nIndexFilePath, 'utf-8');
const localesArrayStr = formatLocalesArray(locales);
const updatedContent = content.replace(
const updatedContent = content.replaceAll(
/(export const i18nResources = \[)[\s\S]*?(] as const)/g,
`$1${localesArrayStr}$2`,
);
@@ -60,7 +60,7 @@ const updateI18nIndex = (locales: string[]): void => {
const updateLinguiConfig = (locales: string[]): void => {
const content = fs.readFileSync(linguiConfigFilePath, 'utf-8');
const localesArrayStr = formatLocalesArray(locales);
const updatedContent = content.replace(/(locales: \[)[\s\S]*?(],)/g, `$1${localesArrayStr}$2`);
const updatedContent = content.replaceAll(/(locales: \[)[\s\S]*?(],)/g, `$1${localesArrayStr}$2`);
fs.writeFileSync(linguiConfigFilePath, updatedContent);
};