Skip to content

Commit

Permalink
Merge pull request #19 from eslint-kit/fix/eslint-kit-version-in-repo…
Browse files Browse the repository at this point in the history
…-link

[Fix] eslint-kit version in gh repo link
  • Loading branch information
Evgeny Zakharov authored Jul 13, 2023
2 parents 985e517 + 7dabb59 commit 520a51c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/modules/eslint-kit-api/eslint-kit-api.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ import { Injectable } from '@nestjs/common'
import axios from 'axios'

const repo = axios.create({
baseURL:
'https://raw.githubusercontent.com/eslint-kit/eslint-kit/release/latest',
baseURL: 'https://raw.githubusercontent.com/eslint-kit/eslint-kit/release/9',
})

@Injectable()
Expand All @@ -23,7 +22,7 @@ export class EslintKitApiService {
'react',
'react-new-jsx-transform',
'typescript',
].map((name) => `@eslint-kit/eslint-config-${name}`)
].map((name) => `@eslint-kit/eslint-config-${name}`),
)
}

Expand Down

0 comments on commit 520a51c

Please sign in to comment.