Skip to content

Commit 2b17964

Browse files
Merge pull request #612 from devoxa/renovate/devoxa-eslint-config-4.x
Update dependency @devoxa/eslint-config from 3.0.11 to 4.0.0
2 parents 6292787 + 739da67 commit 2b17964

File tree

6 files changed

+1038
-592
lines changed

6 files changed

+1038
-592
lines changed

eslint.config.cjs

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const config = require('@devoxa/eslint-config')
2+
3+
module.exports = config({
4+
ignoreFiles: ['.gitignore'],
5+
})

package.json

+3-6
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,24 @@
1414
"test": "jest",
1515
"format": "prettier --ignore-path='.gitignore' --list-different --write .",
1616
"format:check": "prettier --ignore-path='.gitignore' --check .",
17-
"lint": "eslint --ignore-path='.gitignore' '{src,tests}/**/*.ts'",
17+
"lint": "eslint '{src,tests}/**/*.ts'",
1818
"build": "rm -rf dist/ && tsc && chmod +x dist/src/bin.js",
1919
"preversion": "yarn build"
2020
},
21-
"eslintConfig": {
22-
"extends": "@devoxa"
23-
},
2421
"prettier": "@devoxa/prettier-config",
2522
"dependencies": {
2623
"colors": "1.4.0",
2724
"commander": "12.1.0",
2825
"zod": "3.23.8"
2926
},
3027
"devDependencies": {
31-
"@devoxa/eslint-config": "3.0.11",
28+
"@devoxa/eslint-config": "4.0.0",
3229
"@devoxa/prettier-config": "2.0.3",
3330
"@swc/core": "1.10.0",
3431
"@swc/jest": "0.2.37",
3532
"@types/jest": "29.5.14",
3633
"@types/node": "20.9.5",
37-
"eslint": "8.57.1",
34+
"eslint": "9.16.0",
3835
"jest": "29.7.0",
3936
"prettier": "3.4.2",
4037
"typescript": "5.7.2"

src/bin.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ const CONFIG_SCHEMA = z.object({
1414
prohibitedText: z.array(z.custom<RegExp>((value) => value instanceof RegExp)).default([]),
1515
})
1616

17+
type Config = z.infer<typeof CONFIG_SCHEMA>
18+
1719
program
1820
.name('i18next-test')
1921
.version(pkg.version)
@@ -31,8 +33,8 @@ program.on('--help', function () {
3133
program.parse(process.argv)
3234
run()
3335

34-
function run() {
35-
const config = loadConfig(program.opts().config)
36+
function run(): void {
37+
const config = loadConfig(program.opts().config as string)
3638

3739
let hasErrors = false
3840
for (const localeDirectory of fs.readdirSync(config.localePath)) {
@@ -63,11 +65,12 @@ function run() {
6365
}
6466
}
6567

66-
function loadConfig(configPath: string) {
68+
function loadConfig(configPath: string): Config {
6769
let config = {}
6870

6971
try {
70-
config = require(path.resolve(configPath))
72+
// eslint-disable-next-line @typescript-eslint/no-require-imports
73+
config = require(path.resolve(configPath)) as object
7174
} catch (err) {
7275
if (!(err instanceof Error)) throw err
7376

@@ -90,7 +93,7 @@ function loadConfig(configPath: string) {
9093
}
9194
}
9295

93-
function printErrors(errors: Array<string>, padding: string) {
96+
function printErrors(errors: Array<string>, padding: string): void {
9497
for (const error of errors) {
9598
const lines = error.split('\n')
9699

src/index.ts

+14-14
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ export interface TestLocaleFileOptions {
1212
prohibitedText: Array<RegExp>
1313
}
1414

15-
export function testLocaleFile(options: TestLocaleFileOptions) {
15+
export function testLocaleFile(options: TestLocaleFileOptions): Array<string> {
1616
let localeMap: Record<string, string>
1717
try {
18-
localeMap = JSON.parse(options.fileContent)
18+
localeMap = JSON.parse(options.fileContent) as Record<string, string>
1919
} catch {
2020
return ['File content could not be parsed as locale JSON']
2121
}
@@ -28,20 +28,20 @@ export function testLocaleFile(options: TestLocaleFileOptions) {
2828

2929
for (const key in localeMap) {
3030
if (options.namespace === options.defaultNamespace) {
31-
errors.push(colors.cyan(`"${key}"`) + ` is missing an explicit namespace`)
31+
errors.push(colors.cyan(`"${key}"`) + ' is missing an explicit namespace')
3232
}
3333

3434
if (options.namespace.endsWith('_old')) {
35-
errors.push(colors.cyan(`"${key}"`) + ` is tagged as removed from source code`)
35+
errors.push(colors.cyan(`"${key}"`) + ' is tagged as removed from source code')
3636
}
3737

3838
if (localeMap[key] === '') {
39-
errors.push(colors.cyan(`"${key}"`) + ` does not have a translation`)
39+
errors.push(colors.cyan(`"${key}"`) + ' does not have a translation')
4040
}
4141

4242
const maybeSameWord = key.length < 24 && !key.includes(' ')
4343
if (options.locale !== options.defaultLocale && localeMap[key] === key && !maybeSameWord) {
44-
errors.push(colors.cyan(`"${key}"`) + ` has a translation equal to the source language`)
44+
errors.push(colors.cyan(`"${key}"`) + ' has a translation equal to the source language')
4545
}
4646

4747
// We expect the count and name of the component markers to be exactly the same,
@@ -54,7 +54,7 @@ export function testLocaleFile(options: TestLocaleFileOptions) {
5454
JSON.stringify(sort(componentMarkersTranslation))
5555
) {
5656
const message = [
57-
colors.cyan(`"${key}"`) + ` has mismatching component markers in the translation`,
57+
colors.cyan(`"${key}"`) + ' has mismatching component markers in the translation',
5858
colors.green('Expected: ') + JSON.stringify(sort(componentMarkersKey)),
5959
colors.red('Received: ') + JSON.stringify(sort(componentMarkersTranslation)),
6060
].join('\n')
@@ -65,7 +65,7 @@ export function testLocaleFile(options: TestLocaleFileOptions) {
6565
// Check that opened component markers are closed in the correct order.
6666
if (!validComponentMarkerStructure(componentMarkersTranslation)) {
6767
const message = [
68-
colors.cyan(`"${key}"`) + ` has invalid component marker structure in the translation`,
68+
colors.cyan(`"${key}"`) + ' has invalid component marker structure in the translation',
6969
colors.red('Received: ') + JSON.stringify(componentMarkersTranslation),
7070
].join('\n')
7171

@@ -82,7 +82,7 @@ export function testLocaleFile(options: TestLocaleFileOptions) {
8282

8383
if (hasUnknownMarker) {
8484
const message = [
85-
colors.cyan(`"${key}"`) + ` has mismatching interpolation markers in the translation`,
85+
colors.cyan(`"${key}"`) + ' has mismatching interpolation markers in the translation',
8686
colors.green('Expected: ') + JSON.stringify(sort(interpolationMarkersKey)),
8787
colors.red('Received: ') + JSON.stringify(sort(interpolationMarkersTranslation)),
8888
].join('\n')
@@ -97,7 +97,7 @@ export function testLocaleFile(options: TestLocaleFileOptions) {
9797
const translationMatch = localeMap[key].match(prohibitedTextRegex)
9898
if (translationMatch) {
9999
const message = [
100-
colors.cyan(`"${key}"`) + ` has prohibited text in the translation`,
100+
colors.cyan(`"${key}"`) + ' has prohibited text in the translation',
101101
colors.red('Prohibited: ') + colorByMatch('red', localeMap[key], translationMatch),
102102
].join('\n')
103103

@@ -109,19 +109,19 @@ export function testLocaleFile(options: TestLocaleFileOptions) {
109109
return errors
110110
}
111111

112-
function parseComponentMarkers(string: string) {
112+
function parseComponentMarkers(string: string): Array<string> {
113113
return Array.from(string.matchAll(/<.*?>/g)).map((x) => x[0])
114114
}
115115

116-
function parseInterpolationMarkers(string: string) {
116+
function parseInterpolationMarkers(string: string): Array<string> {
117117
return Array.from(string.matchAll(/\{\{.*?\}\}/g)).map((x) => x[0])
118118
}
119119

120120
function sort<T>(array: Array<T>): Array<T> {
121121
return [...array].sort()
122122
}
123123

124-
function validComponentMarkerStructure(componentMarkers: Array<string>) {
124+
function validComponentMarkerStructure(componentMarkers: Array<string>): boolean {
125125
// Filter out self-closing tags since they don't require any structure
126126
componentMarkers = componentMarkers.filter((x) => !x.match(/<.*\/>/))
127127

@@ -146,7 +146,7 @@ function validComponentMarkerStructure(componentMarkers: Array<string>) {
146146
return true
147147
}
148148

149-
function colorByMatch(color: ColorsOption, string: string, match: RegExpMatchArray) {
149+
function colorByMatch(color: ColorsOption, string: string, match: RegExpMatchArray): string {
150150
const startIndex = match.index || 0
151151
const endIndex = startIndex + match[0].length
152152

tests/index.spec.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { testLocaleFile } from '../src/index'
22

33
jest.mock('colors/safe', () => ({
4-
cyan: (x: string) => x,
5-
green: (x: string) => x,
6-
red: (x: string) => x,
4+
cyan: (x: string): string => x,
5+
green: (x: string): string => x,
6+
red: (x: string): string => x,
77
}))
88

99
describe('i18next-test', () => {
@@ -35,7 +35,7 @@ describe('i18next-test', () => {
3535

3636
test('errors when the locale file could not be parsed as JSON (1)', () => {
3737
const errors = testLocaleFile({
38-
fileContent: `{`,
38+
fileContent: '{',
3939
locale: 'de',
4040
defaultLocale: 'en',
4141
namespace: 'sign-in',
@@ -225,7 +225,7 @@ Received: ["{{countt2}}"]`,
225225
})
226226

227227
expect(errors).toEqual([
228-
`\"Sign in to the page\" has prohibited text in the translation
228+
`"Sign in to the page" has prohibited text in the translation
229229
Prohibited: Log in to the page`,
230230
])
231231
})
@@ -243,7 +243,7 @@ Prohibited: Log in to the page`,
243243
prohibitedText: [],
244244
})
245245

246-
expect(errors).toEqual([`"Sign in" is tagged as removed from source code`])
246+
expect(errors).toEqual(['"Sign in" is tagged as removed from source code'])
247247
})
248248

249249
test('errors for keys that are missing an explicit namespace', () => {
@@ -258,6 +258,6 @@ Prohibited: Log in to the page`,
258258
prohibitedText: [],
259259
})
260260

261-
expect(errors).toEqual([`"Sign in" is missing an explicit namespace`])
261+
expect(errors).toEqual(['"Sign in" is missing an explicit namespace'])
262262
})
263263
})

0 commit comments

Comments
 (0)