Skip to content

Commit a6ca9fe

Browse files
committed
feat: initial package structure for @poupe/eslint-plugin-vue-types
Create TypeScript type definitions package for eslint-plugin-vue compatible with ESLint 9.x. This initial commit establishes the package structure with: - Build configuration using unbuild - ESLint and TypeScript configuration - Documentation files (README, CHANGELOG, LICENSE, AGENT.md) - GitHub Actions workflows for CI/CD - Renovate configuration for dependency management - Placeholder exports for future type definitions Signed-off-by: Alejandro Mery <[email protected]>
0 parents  commit a6ca9fe

File tree

17 files changed

+5257
-0
lines changed

17 files changed

+5257
-0
lines changed

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
end_of_line = lf
8+
indent_style = tab
9+
indent_size = 8
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
max_line_length = 80
13+
14+
[*.{json,yaml,yml,js,cjs,mjs,ts,md}]
15+
indent_style = space
16+
indent_size = 2

.github/workflows/build.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Build
2+
on:
3+
push:
4+
branches-ignore:
5+
- '**-wip'
6+
pull_request:
7+
8+
jobs:
9+
make:
10+
runs-on: ubuntu-latest
11+
# Pull requests from the same repository won't trigger this checks as they were already triggered by the push
12+
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: 18
18+
- name: Enable corepack
19+
run: corepack enable
20+
- name: Install dependencies
21+
run: pnpm install
22+
- name: Lint
23+
run: pnpm lint
24+
- name: build
25+
run: pnpm build
26+
- name: publish
27+
run: pnpm pkg-pr-new publish --package-manager=pnpm --pnpm

.github/workflows/renovate.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: renovate-config-validator
2+
on:
3+
push:
4+
paths:
5+
- 'renovate.json'
6+
pull_request:
7+
paths:
8+
- 'renovate.json'
9+
10+
jobs:
11+
renovate-config-validator:
12+
runs-on: ubuntu-latest
13+
if: (github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository)
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
- uses: actions/setup-node@v4
18+
with:
19+
node-version: 18
20+
21+
- name: Run renovate-config-validator
22+
run: npx --yes --package renovate -- renovate-config-validator --strict

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Logs
2+
logs
3+
*.log
4+
5+
# Dependency directories
6+
node_modules/
7+
8+
# Generated output
9+
dist

0 commit comments

Comments
 (0)