Skip to content

Commit

Permalink
feat: initial public release
Browse files Browse the repository at this point in the history
  • Loading branch information
rconnamacher committed Mar 11, 2024
0 parents commit bb40cd5
Show file tree
Hide file tree
Showing 41 changed files with 5,798 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rconnamacher
32 changes: 32 additions & 0 deletions .github/CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
Open source projects are “living.” Contributions in the form of issues and pull requests are welcomed and encouraged. When you contribute, you explicitly say you are part of the community and abide by its Code of Conduct.

# The Code

At Intuit, we foster a kind, respectful, harassment-free cooperative community. Our open source community works to:

- Be kind and respectful;
- Act as a global community;
- Conduct ourselves professionally.

As members of this community, we will not tolerate behaviors including, but not limited to:

- Violent threats or language;
- Discriminatory or derogatory jokes or language;
- Public or private harassment of any kind;
- Other conduct considered inappropriate in a professional setting.

## Reporting Concerns

If you see someone violating the Code of Conduct please email [email protected]

## Scope

This code of conduct applies to:

All repos and communities for Intuit-managed projects, whether or not the text is included in a Intuit-managed project’s repository;

Individuals or teams representing projects in official capacity, such as via official social media channels or at in-person meetups.

## Attribution

This Code of Conduct is partly inspired by and based on those of Amazon, CocoaPods, GitHub, Microsoft, thoughtbot, and on the Contributor Covenant version 1.4.1.
3 changes: 3 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Contributing Guidelines

So you're interested in giving us a hand? That's awesome! We are putting together some guidelines that should help you get started quickly and easily. If you need help with anything, please let us know by opening an Issue.
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

**Describe the bug**

<!-- A clear and concise description of what the bug is. -->

**To Reproduce**

<!-- Steps to reproduce the behavior: -->

**Expected behavior**

<!-- A clear and concise description of what you expected to happen. -->

**Screenshots**

<!-- If applicable, add screenshots to help explain your problem. -->

**Desktop (please complete the following information):**

- OS: [e.g. iOS]
- Node version [e.g. 10.17.0]
- Browser [e.g. chrome, safari]
- Browser version [e.g. 22]

**Additional context**

<!-- Add any other context about the problem here. -->
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**

<!-- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->

**Describe the solution you'd like**

<!-- A clear and concise description of what you want to happen. -->

**Describe alternatives you've considered**

<!-- A clear and concise description of any alternative solutions or features you've considered. -->

**Additional context**

<!-- Add any other context or screenshots about the feature request here. -->
17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Thank you for contributing this pull request!

Please make the PR against the `master` branch, add a description of what's changing, and link any relevant issues or PRs.

## What's changing, and why



## What else might be impacted?



## Checklist

[ ] Tested with `--debug`
[ ] Tested with headless command line
[ ] Documentation (function/class docs, comments, etc.)
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
coverage
*.tgz
.DS_Store

dist/*
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=https://registry.npmjs.org
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"editor.tabSize": 2
}
32 changes: 32 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
Open source projects are “living.” Contributions in the form of issues and pull requests are welcomed and encouraged. When you contribute, you explicitly say you are part of the community and abide by its Code of Conduct.

# The Code

At Intuit, we foster a kind, respectful, harassment-free cooperative community. Our open source community works to:

- Be kind and respectful;
- Act as a global community;
- Conduct ourselves professionally.

As members of this community, we will not tolerate behaviors including, but not limited to:

- Violent threats or language;
- Discriminatory or derogatory jokes or language;
- Public or private harassment of any kind;
- Other conduct considered inappropriate in a professional setting.

## Reporting Concerns

If you see someone violating the Code of Conduct please email [email protected]

## Scope

This code of conduct applies to:

All repos and communities for Intuit-managed projects, whether or not the text is included in a Intuit-managed project’s repository;

Individuals or teams representing projects in official capacity, such as via official social media channels or at in-person meetups.

## Attribution

This Code of Conduct is partly inspired by and based on those of Amazon, CocoaPods, GitHub, Microsoft, thoughtbot, and on the Contributor Covenant version 1.4.1.
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## Contributing

We do not allow contributors to claim issues. If you find something interesting you can contribute to the repo, feel free to raise a PR.

1. Make sure you're running the latest version of Node 20 LTE
1. Fork the repo
1. Install dependencies locally: `npm install`
1. Make your changes locally
1. Make sure tests pass: `npm test`
1. Run your updates locally in another repository using `npm link`
1. Ensure the code coverage is the same or higher than before your changes.
1. Create a PR to the `main` branch
13 changes: 13 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2019-2024 Intuit Inc

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Loading

0 comments on commit bb40cd5

Please sign in to comment.