Skip to content

Commit c18569f

Browse files
committed
feat(add): initial files
0 parents  commit c18569f

File tree

176 files changed

+16026
-0
lines changed

Some content is hidden

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

176 files changed

+16026
-0
lines changed

.eslintcache

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"/home/shinobi/Projects/libre_links/pages/api/users/[handle].js":"1","/home/shinobi/Projects/libre_links/utils/helpers.js":"2","/home/shinobi/Projects/libre_links/pages/api/auth/[...nextauth].js":"3"},{"size":561,"mtime":1695595084956,"results":"4","hashOfConfig":"5"},{"size":2481,"mtime":1696451625251,"results":"6","hashOfConfig":"5"},{"size":1861,"mtime":1696459585749,"results":"7","hashOfConfig":"5"},{"filePath":"8","messages":"9","suppressedMessages":"10","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"870enr",{"filePath":"11","messages":"12","suppressedMessages":"13","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"14","messages":"15","suppressedMessages":"16","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/home/shinobi/Projects/libre_links/pages/api/users/[handle].js",[],[],"/home/shinobi/Projects/libre_links/utils/helpers.js",[],[],"/home/shinobi/Projects/libre_links/pages/api/auth/[...nextauth].js",[],[]]

.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["next/core-web-vitals","prettier"]
3+
}

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: '🐞 Bug Report'
2+
description: Use this template to report a bug.
3+
title: '[Bug]: <Brief Description>'
4+
body:
5+
- type: textarea
6+
id: '3'
7+
attributes:
8+
label: Description
9+
description: Please provide a clear and concise description of the issue.
10+
validations:
11+
required: true
12+
- type: textarea
13+
id: '4'
14+
attributes:
15+
label: Screenshots (if applicable)
16+
- type: dropdown
17+
id: '2'
18+
attributes:
19+
label: Affected Browser
20+
options:
21+
- Firefox
22+
- Chrome
23+
- Safari
24+
- Brave
25+
- Microsoft Edge
26+
- Other
27+
validations:
28+
required: true
29+
- type: checkboxes
30+
id: '1'
31+
attributes:
32+
label: Checklist
33+
options:
34+
- label: 'Checked for similar issues'
35+
required: true
36+
- label: 'Willing to work on this issue (optional)'
37+
required: false

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "🌟 Feature Request"
2+
description: "Propose a new feature."
3+
title: "[Feature]: <Brief feature name>"
4+
body:
5+
- type: textarea
6+
id: "3"
7+
attributes:
8+
label: "Description"
9+
description: "Please describe your feature request concisely."
10+
validations:
11+
required: true
12+
- type: textarea
13+
id: "15"
14+
attributes:
15+
label: "Screenshots (if applicable)"
16+
- type: checkboxes
17+
id: "1"
18+
attributes:
19+
label: "Checklist"
20+
options:
21+
- label: "Checked existing issues"
22+
required: true
23+
- label: "Willing to contribute (optional)"
24+
required: false

.github/demo.gif

2.37 MB
Loading

.github/pull_request_template.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!-- If your PR fixes an open issue, use `Closes #999` to link your PR with the issue. #999 stands for the issue number you are fixing. -->
2+
3+
## Fixes Issue
4+
5+
<!--
6+
Example: Closes #31
7+
-->
8+
9+
## Proposed Changes
10+
11+
<!--
12+
List all the proposed changes in your PR.
13+
-->
14+
15+
## Screenshots
16+
17+
<!--
18+
Add all the screenshots that support your changes.
19+
-->

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
package-lock.json
8+
yarn.lock
9+
bun.lock
10+
bun.lockb
11+
12+
# testing
13+
/coverage
14+
15+
# next.js
16+
/.next/
17+
/out/
18+
19+
# production
20+
/build
21+
22+
# misc
23+
.DS_Store
24+
*.pem
25+
26+
# debug
27+
npm-debug.log*
28+
yarn-debug.log*
29+
yarn-error.log*
30+
31+
# local env files
32+
.env*.local
33+
.env
34+
35+
# vercel
36+
.vercel
37+
38+
# typescript
39+
*.tsbuildinfo
40+
next-env.d.ts
41+
42+
# vscode
43+
/vscode
44+

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx lint-staged

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
build
3+
dist

0 commit comments

Comments
 (0)