Skip to content

Commit 844f794

Browse files
chore: fix lint warnings
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 36606bc commit 844f794

10 files changed

Lines changed: 27 additions & 27 deletions

File tree

.config/pickier.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import type { PickierConfig } from 'pickier'
2+
3+
const config: PickierConfig = {
4+
ignores: ['CLAUDE.md', '**/CHANGELOG.md'],
5+
}
6+
7+
export default config
8+

README.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<p align="center"><img src=".github/art/cover.jpg" alt="Social Card of this repo"></p>
22

3-
[![npm version][npm-version-src]][npm-version-href]
4-
[![GitHub Actions][github-actions-src]][github-actions-href]
3+
[![npm version](https://img.shields.io/npm/v/@stacksjs/gitit?style=flat-square)](https://npmjs.com/package/@stacksjs/gitit)
4+
[![GitHub Actions](https://img.shields.io/github/actions/workflow/status/stacksjs/gitit/ci.yml?style=flat-square&branch=main)](https://github.com/stacksjs/gitit/actions?query=workflow%3Aci)
55
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
66
<!-- [![npm downloads][npm-downloads-src]][npm-downloads-href] -->
7-
<!-- [![Codecov][codecov-src]][codecov-href] -->
7+
<!-- [![Codecov][codecov-src]](https://codecov.io/gh/stacksjs/gitit -->) -->
88

99
# gitit
1010

@@ -199,10 +199,5 @@ The MIT License (MIT). Please see [LICENSE](LICENSE.md) for more information.
199199
Made with 💙
200200

201201
<!-- Badges -->
202-
[npm-version-src]: https://img.shields.io/npm/v/@stacksjs/gitit?style=flat-square
203-
[npm-version-href]: https://npmjs.com/package/@stacksjs/gitit
204-
[github-actions-src]: https://img.shields.io/github/actions/workflow/status/stacksjs/gitit/ci.yml?style=flat-square&branch=main
205-
[github-actions-href]: https://github.com/stacksjs/gitit/actions?query=workflow%3Aci
206202

207203
<!-- [codecov-src]: https://img.shields.io/codecov/c/gh/stacksjs/gitit/main?style=flat-square
208-
[codecov-href]: https://codecov.io/gh/stacksjs/gitit -->

docs/advanced/bitbucket-private-repos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Bitbucket uses App Passwords for API authentication. To create one:
2121
5. Click the **Create app password** button
2222
6. Give your app password a descriptive name (e.g., "gitit Access")
2323
7. Select the following permissions:
24-
- **Repository**: Read
25-
- **Pull requests**: Read (optional)
24+
- **Repository**: Read
25+
- **Pull requests**: Read (optional)
2626
8. Click **Create**
2727
9. **Important**: Copy your app password immediately. You won't be able to see it again!
2828

docs/advanced/custom-templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ To create a custom template, simply create a Git repository with the files and s
2828

2929
You can add template variables to your files that will be processed during project creation:
3030

31-
```
31+
```json
3232
// package.json
3333
{
3434
"name": "{{ project_name }}",

docs/advanced/github-private-repos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ To access private repositories, you'll need a Personal Access Token:
2222
6. Click **Generate new token****Generate new token (classic)**
2323
7. Give your token a descriptive name (e.g., "gitit Access")
2424
8. Select the following scopes:
25-
- **repo** (Full control of private repositories)
26-
- **read:packages** (Optional - if you need to access template packages)
25+
- **repo** (Full control of private repositories)
26+
- **read:packages** (Optional - if you need to access template packages)
2727
9. Click **Generate token**
2828
10. **Important**: Copy your token immediately. You won't be able to see it again!
2929

docs/config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ const config: GitItConfig = {
100100
export default config
101101
```
102102

103-
_Then run:_
103+
Then run:
104104

105105
```bash
106106
gitit github:user/repo my-project

docs/features/authentication.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ await downloadTemplate('private-org/private-repo', {
6161
1. Go to [GitHub Settings > Developer Settings > Personal Access Tokens](https://github.com/settings/tokens)
6262
2. Click "Generate new token (classic)"
6363
3. Select scopes:
64-
- `repo` - Full control of private repositories
64+
- `repo` - Full control of private repositories
6565
4. Copy the generated token
6666

6767
```bash
@@ -76,14 +76,14 @@ For more security, use fine-grained tokens:
7676
1. Go to [GitHub Settings > Developer Settings > Fine-grained tokens](https://github.com/settings/tokens?type=beta)
7777
2. Select the repository or organization
7878
3. Set permissions:
79-
- Repository permissions > Contents > Read-only
79+
- Repository permissions > Contents > Read-only
8080
4. Generate and copy token
8181

8282
### GitLab Personal Access Token
8383

8484
1. Go to [GitLab Settings > Access Tokens](https://gitlab.com/-/profile/personal_access_tokens)
8585
2. Create a new token with:
86-
- `read_repository` scope
86+
- `read_repository` scope
8787
3. Copy the generated token
8888

8989
```bash
@@ -95,7 +95,7 @@ gitit gitlab:private-org/private-repo
9595

9696
1. Go to [Bitbucket Settings > App passwords](https://bitbucket.org/account/settings/app-passwords/)
9797
2. Create an app password with:
98-
- `Repositories: Read` permission
98+
- `Repositories: Read` permission
9999
3. Use format `username:app_password`
100100

101101
```bash

docs/intro.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
<p align="center"><img src="https://github.com/stacksjs/gitit/blob/main/.github/art/cover.jpg?raw=true" alt="Social Card of this repo"></p>
22

3-
# Easy Project Scaffolding
3+
# gitit
44

55
> A powerful template and project scaffolding tool to help kick-start development of your next project.
66
7-
# gitit
8-
97
Gitit is a modern template and project scaffolding tool designed to help you initialize new projects quickly and efficiently.
108

119
## Features
@@ -36,7 +34,7 @@ gitit github:user/repo my-project
3634
gitit github:user/repo my-project --install --shell
3735
```
3836

39-
_Check out the Usage section for more advanced examples._
37+
Check out the Usage section for more advanced examples.
4038

4139
## Changelog
4240

@@ -86,5 +84,4 @@ Made with 💙
8684

8785
<!-- Badges -->
8886

89-
<!-- [codecov-src]: https://img.shields.io/codecov/c/gh/stacksjs/rpx/main?style=flat-square
90-
[codecov-href]: https://codecov.io/gh/stacksjs/rpx -->
87+
<!-- [codecov-src]: https://img.shields.io/codecov/c/gh/stacksjs/rpx/main?style=flat-square -->

docs/postcardware.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Two things are true: Stacks OSS will always stay open-source, and we do love to receive postcards from wherever Stacks is used! 🌍
44

5-
_We also publish them on our website._
5+
We also publish them on our website.
66

77
## Address
88

docs/sponsors.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,6 @@ You can also try to convince your employer to sponsor Stacks as a business. This
126126

127127
***
128128

129-
##### Thanks to Vue.js for the inspiration of this sponsorship page
129+
#### Thanks to Vue.js for the inspiration of this sponsorship page
130130

131-
*You can find their sponsorship page [here](https://vuejs.org/sponsor/).*
131+
You can find their [sponsorship page](https://vuejs.org/sponsor/).

0 commit comments

Comments
 (0)