diff options
author | 2023-05-04 23:22:17 +0800 | |
---|---|---|
committer | 2023-05-04 23:22:17 +0800 | |
commit | b6dc0edc94cebdee74d67f5919f46c28cd96b9f8 (patch) | |
tree | ef97add33058dd7f65e662f402cf7ce24b7482e8 /source/features/list-prs-for-file.tsx | |
parent | 0f0d7435a649466084fab40bb7fe0481b0c73dba (diff) | |
download | refined-github-b6dc0edc94cebdee74d67f5919f46c28cd96b9f8.tar.gz refined-github-b6dc0edc94cebdee74d67f5919f46c28cd96b9f8.tar.zst refined-github-b6dc0edc94cebdee74d67f5919f46c28cd96b9f8.zip |
Lint (ESM file imports + named functions) (#6613)
Diffstat (limited to 'source/features/list-prs-for-file.tsx')
-rw-r--r-- | source/features/list-prs-for-file.tsx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source/features/list-prs-for-file.tsx b/source/features/list-prs-for-file.tsx index 169b3069..4e30fbab 100644 --- a/source/features/list-prs-for-file.tsx +++ b/source/features/list-prs-for-file.tsx @@ -4,12 +4,12 @@ import {isFirefox} from 'webext-detect-page'; import * as pageDetect from 'github-url-detection'; import {AlertIcon, GitPullRequestIcon} from '@primer/octicons-react'; -import features from '../feature-manager'; -import * as api from '../github-helpers/api'; -import getDefaultBranch from '../github-helpers/get-default-branch'; -import {buildRepoURL, cacheByRepo} from '../github-helpers'; -import GitHubURL from '../github-helpers/github-url'; -import observe from '../helpers/selector-observer'; +import features from '../feature-manager.js'; +import * as api from '../github-helpers/api.js'; +import getDefaultBranch from '../github-helpers/get-default-branch.js'; +import {buildRepoURL, cacheByRepo} from '../github-helpers/index.js'; +import GitHubURL from '../github-helpers/github-url.js'; +import observe from '../helpers/selector-observer.js'; function getPRUrl(prNumber: number): string { // https://caniuse.com/url-scroll-to-text-fragment |