Skip to content

Commit f540b0a

Browse files
committed
feat: ✨ refactor the entire plugin to v2.0.0
1 parent 79472c7 commit f540b0a

23 files changed

Lines changed: 231 additions & 256 deletions

.commitlintrc.mjs

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

.gitattributes

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

.github/workflows/release.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: release-please
3+
on:
4+
push:
5+
branches:
6+
- main
7+
jobs:
8+
release-please:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
contents: write
12+
pull-requests: write
13+
steps:
14+
- uses: googleapis/release-please-action@v4
15+
with:
16+
config-file: release-please-config.json
17+
manifest-file: .release-please-manifest.json

.lefthook.yml

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

.luarc.json

Whitespace-only changes.

.releaserc

Whitespace-only changes.

.relese-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "2.0.0"
3+
}

.stylua.toml

Whitespace-only changes.

.yamlfmt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
# vim: filetype=yaml :
3+
formatter:
4+
type: basic
5+
indent: 2
6+
retain_line_breaks: true
7+
indentless_arrays: true
8+
include_document_start: true
9+
line_ending: lf

.yamllint

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# vim: filetype=yaml :
2+
extends: default
3+
rules:
4+
key-ordering: disable

0 commit comments

Comments
 (0)