Skip to content

Commit c07b7ef

Browse files
committed
chore: drop prettier and use antfu lint config
1 parent 4085c3c commit c07b7ef

Some content is hidden

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

48 files changed

+1401
-478
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.cjs

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/---bug-report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: "\U0001F41B Bug report"
1+
name: 🐛 Bug report
22
description: Something's not working
3-
labels: ["bug"]
3+
labels: [bug]
44
assignees: danielroe
55
body:
66
- type: textarea

.github/ISSUE_TEMPLATE/---documentation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: "\U0001F4DA Documentation"
1+
name: 📚 Documentation
22
description: How do I ... ?
3-
labels: ["documentation"]
3+
labels: [documentation]
44
assignees: danielroe
55
body:
66
- type: textarea

.github/ISSUE_TEMPLATE/---feature-suggestion.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: "\U0001F195 Feature suggestion"
1+
name: 🆕 Feature suggestion
22
description: Suggest an idea
3-
labels: ["enhancement"]
3+
labels: [enhancement]
44
assignees: danielroe
55
body:
66
- type: textarea

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/setup-node@v4
1919
with:
2020
node-version: 16
21-
cache: "pnpm"
21+
cache: pnpm
2222

2323
- name: 📦 Install dependencies
2424
run: pnpm install --frozen-lockfile
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/setup-node@v4
3636
with:
3737
node-version: 16
38-
cache: "pnpm"
38+
cache: pnpm
3939

4040
- name: 📦 Install dependencies
4141
run: pnpm install --frozen-lockfile

.github/workflows/codeql.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
name: "CodeQL"
1+
name: CodeQL
22

33
on:
44
push:
5-
branches: [ "main" ]
5+
branches: [main]
66
pull_request:
7-
branches: [ "main" ]
7+
branches: [main]
88
schedule:
9-
- cron: "2 2 * * 0"
9+
- cron: '2 2 * * 0'
1010

1111
jobs:
1212
analyze:
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
language: [ javascript ]
23+
language: [javascript]
2424

2525
steps:
2626
- name: Checkout
@@ -38,4 +38,4 @@ jobs:
3838
- name: Perform CodeQL Analysis
3939
uses: github/codeql-action/analyze@v3
4040
with:
41-
category: "/language:${{ matrix.language }}"
41+
category: '/language:${{ matrix.language }}'

.github/workflows/performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/setup-node@v4
1313
with:
1414
node-version: 16
15-
cache: "pnpm"
15+
cache: pnpm
1616

1717
- name: 📦 Install dependencies
1818
run: pnpm install --frozen-lockfile

build.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { defineBuildConfig } from 'unbuild'
2+
23
export default defineBuildConfig({
34
declaration: true,
45
rollup: { emitCJS: true },

docs/components/content/Logo.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
<template>
2-
<div class="font-bold flex flex-row items-center gap-2">🦄 magic-regexp</div>
2+
<div class="font-bold flex flex-row items-center gap-2">
3+
🦄 magic-regexp
4+
</div>
35
</template>

0 commit comments

Comments
 (0)