Skip to content

Commit 02759f8

Browse files
committed
add a pre-commit hook and prettier formatting
1 parent f2c07c1 commit 02759f8

Some content is hidden

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

44 files changed

+2472
-1698
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Bug report
33
about: Report a bug / error in the code
4-
title: "[bug]"
4+
title: '[bug]'
55
labels: bug, investigating
66
assignees: ''
7-
87
---
98

109
**Describe the bug**
@@ -15,6 +14,7 @@ A clear and concise description of what the bug is.
1514
-**Fork [this REPL as a reduced test case](https://svelte.dev/repl/030797781fd64ad88302d1343f5b2c43?version=3.32.1)** for any bug/issue submissions!
1615

1716
Steps to reproduce the behavior:
17+
1818
1. Go to '...'
1919
2. Click on '....'
2020
3. Scroll down to '....'

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
22
name: Feature Request
33
about: Submit a request for a feature to be added
4-
title: "[feature] ..."
4+
title: '[feature] ...'
55
labels: feature request, investigating
66
assignees: ''
7-
87
---
98

109
**Describe the feature**

.prettierignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,22 @@
22
pnpm-lock.yaml
33
package-lock.json
44
yarn.lock
5+
yarn-error.log
6+
npm-error.log
7+
node_modules
8+
9+
.vscode/
10+
.DS_Store
11+
.astro
12+
dist/
13+
/build
14+
/docs
15+
/tests/**/build
16+
/tests/**/dist
17+
/.svelte-kit
18+
/package
19+
.env
20+
.env.*
21+
!.env.example
22+
vite.config.js.timestamp-*
23+
vite.config.ts.timestamp-*

CONTRIBUTING.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# What can I contribute?
32

43
## 🌟 suggestions/requests for new features or changes
@@ -19,6 +18,6 @@ When making changes/edits to the code you should use the `/test/` folder and che
1918

2019
## 🧪 help with creating a proper test-suite
2120

22-
I am considering how to add a test-suite as this component has a lot of different options and possible outcomes. I am not currently familiar with how to do this in Svelte, so any help/advice is appreciated.
21+
I am considering how to add a test-suite as this component has a lot of different options and possible outcomes. I am not currently familiar with how to do this in Svelte, so any help/advice is appreciated.
2322

2423
**The main goal would be to make it super simple to setup and run / expand for anyone contributing, and I wouldn't accept if it seems obtuse.**

README.md

Lines changed: 54 additions & 54 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)