Skip to content

Commit d08ac9b

Browse files
committed
fix: lint errors
1 parent 682451e commit d08ac9b

File tree

101 files changed

+3117
-781
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+3117
-781
lines changed

.github/CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,8 @@ There are some caveats to these packages:
203203

204204
The packages can import each other directly using their package names. Note that when importing a package, the name listed in its `package.json` should be used. Most of the time the `@intlify/` prefix is needed:
205205

206+
<!-- eslint-skip -->
207+
206208
```js
207209
import { baseCompile } from '@intlify/compiler'
208210
```

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "\U0001F41E Bug report"
1+
name: "\U0001F41E Bug report" # eslint-disable-line yml/plain-scalar
22
description: Report an issue
33
labels: ['Status: Review Needed']
44
body:

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "\U0001F680 New feature proposal"
1+
name: "\U0001F680 New feature proposal" # eslint-disable-line yml/plain-scalar
22
description: Propose a new feature
33
labels: ['Status: Proposal']
44
body:

.github/labels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,18 +86,18 @@
8686
- name: 'Status: Review Needed'
8787
description: Request for review comments
8888
color: '#fbca04'
89-
- name: '🧹 p1-chore'
89+
- name: '🧹 p1-chore' # eslint-disable-line yml/plain-scalar
9090
description: 'Priority 1: no change in change code behavior'
9191
color: '#FDDFD7'
92-
- name: '🍰 p2-nice-to-have'
92+
- name: '🍰 p2-nice-to-have' # eslint-disable-line yml/plain-scalar
9393
description: "Priority 2: nothing is broken but it's worth addressing"
9494
color: '#0e8a16'
95-
- name: '🔨 p3-minor-bug'
95+
- name: '🔨 p3-minor-bug' # eslint-disable-line yml/plain-scalar
9696
description: 'Priority 3: a bug in an edge case that only affects very specific usage'
9797
color: '#fbca04'
98-
- name: '❗ p4-important'
98+
- name: '❗ p4-important' # eslint-disable-line yml/plain-scalar
9999
description: 'Priority 4: bugs that violate documented behavior, or significantly impact perf'
100100
color: '#d93f0b'
101-
- name: '🔥 p5-urgent'
101+
- name: '🔥 p5-urgent' # eslint-disable-line yml/plain-scalar
102102
description: 'Priority 5: build-breaking bugs that affect most users and should be fixed ASAP'
103103
color: '#ee0701'

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
3939
with:
4040
node-version: ${{ matrix.node }}
41-
cache: 'pnpm'
41+
cache: 'pnpm' # eslint-disable-line yml/plain-scalar
4242

4343
- name: Install dependencies
4444
run: pnpm install --frozen-lockfile
@@ -68,7 +68,7 @@ jobs:
6868
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
6969
with:
7070
node-version: ${{ matrix.node }}
71-
cache: 'pnpm'
71+
cache: 'pnpm' # eslint-disable-line yml/plain-scalar
7272

7373
- name: Install dependencies
7474
run: pnpm install --frozen-lockfile
@@ -108,7 +108,7 @@ jobs:
108108
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
109109
with:
110110
node-version: ${{ matrix.node }}
111-
cache: 'pnpm'
111+
cache: 'pnpm' # eslint-disable-line yml/plain-scalar
112112

113113
- name: Install dependencies
114114
run: pnpm install --frozen-lockfile
@@ -145,7 +145,7 @@ jobs:
145145
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
146146
with:
147147
node-version: ${{ matrix.node }}
148-
cache: 'pnpm'
148+
cache: 'pnpm' # eslint-disable-line yml/plain-scalar
149149

150150
- name: Install dependencies
151151
run: pnpm install --frozen-lockfile
@@ -180,7 +180,7 @@ jobs:
180180
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
181181
with:
182182
node-version: ${{ matrix.node }}
183-
cache: 'pnpm'
183+
cache: 'pnpm' # eslint-disable-line yml/plain-scalar
184184

185185
- name: Install dependencies
186186
run: pnpm install --frozen-lockfile
@@ -225,7 +225,7 @@ jobs:
225225
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
226226
with:
227227
node-version: ${{ matrix.node }}
228-
cache: 'pnpm'
228+
cache: 'pnpm' # eslint-disable-line yml/plain-scalar
229229

230230
- name: Install dependencies
231231
run: pnpm install --frozen-lockfile

.github/workflows/github-label-sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ on:
77
paths:
88
- .github/labels.yml
99
- .github/workflows/github-label-sync.yml
10-
workflow_dispatch:
10+
workflow_dispatch: # eslint-disable-line yml/no-empty-mapping-value
1111

1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: r7kamura/github-label-sync-action@061649dd3b80eb5bafad0316466f72962e62c300 #v0.1.0
16+
- uses: r7kamura/github-label-sync-action@061649dd3b80eb5bafad0316466f72962e62c300 # v0.1.0

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
id: split
3939
with:
4040
msg: ${{ github.ref }}
41-
separator: '/'
41+
separator: '/' # eslint-disable-line yml/plain-scalar
4242

4343
- name: Create Github Release
4444
run: gh release create ${{ steps.split.outputs._2 }} --generate-notes

.github/workflows/size-report.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: Size report
22

33
on:
44
workflow_run:
5-
workflows: ['Size data']
5+
workflows: ['Size data'] # eslint-disable-line yml/plain-scalar
66
types:
77
- completed
8-
workflow_dispatch:
8+
workflow_dispatch: # eslint-disable-line yml/no-empty-mapping-value
99

1010
permissions:
1111
contents: read
@@ -83,4 +83,4 @@ jobs:
8383
body: |
8484
${{ steps.size-report.outputs.content }}
8585
<!-- INTLIFY_VUE_I18N_SIZE -->
86-
body-include: '<!-- INTLIFY_VUE_I18N_SIZE -->'
86+
body-include: '<!-- INTLIFY_VUE_I18N_SIZE -->' # eslint-disable-line yml/plain-scalar

BACKERS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ The development of Gunish is supported by my OSS sponsors!
66

77
<p align="center">
88
<a href="https://cdn.jsdelivr.net/gh/kazupon/sponsors/sponsors.svg">
9-
<img src='https://cdn.jsdelivr.net/gh/kazupon/sponsors/sponsors.svg'/>
9+
<img alt="bakers" src='https://cdn.jsdelivr.net/gh/kazupon/sponsors/sponsors.svg'/>
1010
</a>
1111
</p>

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# vue-i18n
22

3+
<!-- eslint-disable markdown/no-missing-label-refs -->
4+
35
> [!NOTE]
46
> This is the repository for Vue I18n 9 for Vue 3
57
8+
<!-- eslint-enable markdown/no-missing-label-refs -->
9+
610
Internationalization plugin for Vue.js
711

812
<h2 align="center">Supporting Vue I18n & Intlify Project</h2>
@@ -14,7 +18,7 @@ Vue I18n is part of the Vue Ecosystem and Intlify Project is an open source proj
1418

1519
<p align="center">
1620
<a href="https://cdn.jsdelivr.net/gh/kazupon/sponsors/sponsors.svg">
17-
<img src='https://cdn.jsdelivr.net/gh/kazupon/sponsors/sponsors.svg'/>
21+
<img alt="sponsors" src='https://cdn.jsdelivr.net/gh/kazupon/sponsors/sponsors.svg'/>
1822
</a>
1923
</p>
2024

0 commit comments

Comments
 (0)