Skip to content

Commit 54bf402

Browse files
committed
style: fix lint
1 parent d45e3c3 commit 54bf402

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# These are supported funding model platforms
22

3-
github: [LittleSound,nekomeowww]
3+
github: [LittleSound, nekomeowww]
44
# patreon: # Replace with a single Patreon username
55
# open_collective: # Replace with a single Open Collective username
66
# ko_fi: # Replace with a single Ko-fi username

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release Obsidian plugin
33
on:
44
push:
55
tags:
6-
- "*"
6+
- '*'
77

88
env:
99
STORE_PATH: ''

build.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
import { copyFile, rm } from 'node:fs/promises'
22
import { join } from 'node:path'
3-
43
import { cwd } from 'node:process'
4+
55
import builtins from 'builtin-modules'
6+
67
import { defineBuildConfig } from 'unbuild'
78

89
import { generateObsidianPluginManifest } from './scripts/manifest'

scripts/manifest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { writeFile } from 'node:fs/promises'
2-
32
import { join } from 'node:path'
43
import { cwd } from 'node:process'
4+
55
import packageJSON from '../package.json' with { type: 'json' }
66

77
interface ObsidianPluginManifest {

0 commit comments

Comments
 (0)