Skip to content

Commit 94db7ee

Browse files
committed
Run ESLint on CI
1 parent 8a9c74d commit 94db7ee

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ module.exports = {
136136
{
137137
files: [
138138
`src/pages/blog/**/*.{${MARKDOWN_EXT}}`,
139+
`src/pages/graphql-js/running-an-express-graphql-server.mdx`,
139140
`src/code/**/*.{${MARKDOWN_EXT}}`,
140141
`src/app/conf/**/*.{${MARKDOWN_EXT}}`,
141142
],

.github/workflows/prettier.yml renamed to .github/workflows/check.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Prettier Check
1+
name: Lint and check formatting
22

33
on: pull_request
44

@@ -16,5 +16,9 @@ jobs:
1616

1717
- name: Install Dependencies
1818
run: pnpm i
19+
20+
- name: Run ESLint
21+
run: pnpm lint --quiet
22+
1923
- name: Run Prettier Check
2024
run: pnpm format:check

src/app/conf/2025/components/call-for-proposals.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ function NotesTab() {
112112
<a
113113
className="typography-link dark:text-neu-50"
114114
target="_blank"
115+
rel="noreferrer"
115116
href="https://training.linuxfoundation.org/linux-courses/open-source-compliance-courses/inclusive-speaker-orientation"
116117
>
117118
Inclusive Speaker Orientation Course
@@ -171,6 +172,7 @@ function NotesTab() {
171172
href="https://youtu.be/2I5fYBLCfUA"
172173
target="_blank"
173174
className="typography-link dark:text-neu-50"
175+
rel="noreferrer"
174176
>
175177
Getting Over Your Imposter Syndrome to Become a Conference Speaker
176178
</a>
@@ -358,6 +360,7 @@ export function CallForProposals() {
358360
target="_blank"
359361
href="https://sessionize.com/playbook/submit-your-session-for-an-event"
360362
className="typography-link dark:text-neu-50"
363+
rel="noreferrer"
361364
>
362365
how to submit your session
363366
</a>{" "}

0 commit comments

Comments
 (0)