Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump eslint-import-resolver-typescript from 3.8.7 to 4.0.0 #1511

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
273 changes: 250 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -81,7 +81,7 @@
"eslint": "^8.56.0",
"eslint-config-prettier": "^10.0.2",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-mdx": "^3.1.3",
"eslint-plugin-github": "^5.0.1",

Unchanged files with check annotations Beta

const getCurrentSha = async branch => {
if (!octokit) {
const {Octokit} = await import('@octokit/rest')

Check failure on line 20 in cli/lib/gh.js

GitHub Actions / Lint

Unable to resolve path to module '@octokit/rest'
octokit = new Octokit({auth: process.env.GITHUB_TOKEN})
}
const {data} = await octokit.repos.getBranch({
const getFile = async ({sha, ref, path}) => {
if (!octokit) {
const {Octokit} = await import('@octokit/rest')

Check failure on line 32 in cli/lib/gh.js

GitHub Actions / Lint

Unable to resolve path to module '@octokit/rest'
octokit = new Octokit({auth: process.env.GITHUB_TOKEN})
}
const {data} = await (sha
const pathExists = async (ref, path) => {
if (!octokit) {
const {Octokit} = await import('@octokit/rest')

Check failure on line 50 in cli/lib/gh.js

GitHub Actions / Lint

Unable to resolve path to module '@octokit/rest'
octokit = new Octokit({auth: process.env.GITHUB_TOKEN})
}
try {
import {SKIP_TO_SEARCH_ID} from './src/constants'

Check failure on line 1 in gatsby-browser.js

GitHub Actions / Lint

Unable to resolve path to module './src/constants'
export {default as wrapPageElement} from './src/page'

Check failure on line 3 in gatsby-browser.js

GitHub Actions / Lint

Unable to resolve path to module './src/page'
export {default as wrapRootElement} from './src/root'

Check failure on line 4 in gatsby-browser.js

GitHub Actions / Lint

Unable to resolve path to module './src/root'
export const shouldUpdateScroll = ({routerProps}) => {
const {scrollUpdate = true} = routerProps.location.state ?? {}
export {default as wrapPageElement} from './src/page'

Check failure on line 1 in gatsby-ssr.js

GitHub Actions / Lint

Unable to resolve path to module './src/page'
export {default as wrapRootElement} from './src/root'

Check failure on line 2 in gatsby-ssr.js

GitHub Actions / Lint

Unable to resolve path to module './src/root'
import '@testing-library/jest-dom/jest-globals'

Check failure on line 1 in jest-setup.js

GitHub Actions / Lint

Unable to resolve path to module '@testing-library/jest-dom/jest-globals'
global.CSS = {supports: () => false}

Check failure on line 1 in src/components/__tests__/page-footer.test.js

GitHub Actions / Lint

Unable to resolve path to module '@testing-library/react'