Skip to content

Commit 7d64e96

Browse files
fix linting issues
1 parent 52ac06e commit 7d64e96

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/combineThemes.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {basename, extname} from 'path'
33
import JSON5 from 'json5'
44

55
interface Theme {
6-
[key: string]: any
6+
[key: string]: unknown
77
}
88

99
function combineThemes(baseFilePath: string, overrideFilePath: string, outputFilePath: string): void {
@@ -20,7 +20,7 @@ function combine(base: Theme, override: Theme, overrideFileName: string): Theme
2020
const result = {...base}
2121

2222
for (const key in override) {
23-
if (override.hasOwnProperty(key) && result.hasOwnProperty(key)) {
23+
if (Object.prototype.hasOwnProperty.call(override, key) && Object.prototype.hasOwnProperty.call(result, key)) {
2424
const overrideValue = override[key]
2525

2626
if (overrideValue && typeof overrideValue === 'object' && overrideValue.$value) {
@@ -47,6 +47,7 @@ function combine(base: Theme, override: Theme, overrideFileName: string): Theme
4747
function main() {
4848
const args = process.argv.slice(2)
4949
if (args.length !== 3) {
50+
// eslint-disable-next-line no-console
5051
console.error('Usage: npx tsx combineThemes.ts <baseFilePath> <overrideFilePath> <outputFilePath>')
5152
process.exit(1)
5253
}

0 commit comments

Comments
 (0)