-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 9c7a485
Showing
31 changed files
with
6,434 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
module.exports = { | ||
root: true, | ||
parser: '@typescript-eslint/parser', | ||
plugins: [ | ||
'@typescript-eslint', | ||
], | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'prettier', | ||
], | ||
rules: { | ||
"@typescript-eslint/no-explicit-any": "off" | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
## Creating an Issue | ||
|
||
To create an issue, please follow one of [these issue templates](https://github.com/workday/canvas-tokens/issues/new/choose). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: 🐛 Bug report | ||
labels: 'bug' | ||
about: Submit a bug report | ||
--- | ||
|
||
## 🐛 Bug Report | ||
|
||
### Expected Behavior | ||
|
||
<!-- What's the behavior you're expecting to see? --> | ||
|
||
### Actual Behavior | ||
|
||
<!-- What's actually happening instead? --> | ||
|
||
### Steps to Reproduce | ||
|
||
<!-- Please provide clear steps to reproduce the issue. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: 🚀 Feature Proposal | ||
labels: 'feature' | ||
about: Submit a proposal for a new feature | ||
--- | ||
|
||
## 🚀 Feature Proposal | ||
|
||
<!-- Please write a clear and concise description of what the feature is. --> | ||
|
||
### Motivation | ||
|
||
<!-- Please outline the motivation for the proposal. --> | ||
|
||
### Acceptance Criteria | ||
|
||
<!-- External contributors can skip this. This can be added by maintainers. --> | ||
|
||
<!-- - [ ] Add checklist items here--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
name: 🤔 Question | ||
label: 'question' | ||
about: Submit a question about CK Analytics | ||
--- | ||
|
||
## 🤔 Question | ||
|
||
<!-- Please provide a clear question with sufficient context. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
name: 🔍 Spike | ||
label: 'spike' | ||
about: Submit a proposal for technical exploration | ||
--- | ||
|
||
## 🔍 Spike | ||
|
||
<!-- Please provide a short summary of the spike. --> | ||
|
||
### Questions | ||
|
||
<!-- What questions would be answered once this spike was completed? --> | ||
|
||
### Documentation | ||
|
||
<!-- How should we document what is learned from this exploration? --> | ||
|
||
## Existing Issues | ||
|
||
<!-- Please list any existing issues related to this spike. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
name: 💡 Suggestion | ||
labels: 'suggestion' | ||
about: Submit a suggestion | ||
--- | ||
|
||
## 💡 Suggestion | ||
|
||
<!-- Please provide a clear and concise description of your suggestion. --> | ||
|
||
### Motivation | ||
|
||
<!-- Please outline the motivation for this suggestion. --> | ||
|
||
### Example | ||
|
||
<!-- Please provide an example of this suggestion in practice. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
## Issue | ||
|
||
<!-- #IssueNumber --> | ||
|
||
## Overview | ||
|
||
<!-- Give a brief description of what this PR does. --> | ||
|
||
## Where Should the Reviewer Start? | ||
|
||
<!-- e.g. `packages/canvas-tokens/index.ts` --> | ||
|
||
## Testing Manually | ||
|
||
<!-- List steps to test this locally. --> | ||
|
||
## Thank You GIF | ||
<!-- _Share a fun [gif](https://giphy.com) to say thanks to your reviewer:_ --> | ||
|
||
<!--  --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# compiled output | ||
dist | ||
tmp | ||
/out-tsc | ||
|
||
# dependencies | ||
node_modules | ||
|
||
# IDE - VSCode | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
|
||
# misc | ||
/.sass-cache | ||
/connect.lock | ||
/coverage | ||
/libpeerconnection.log | ||
npm-debug.log | ||
yarn-error.log | ||
testem.log | ||
/typings | ||
|
||
# System Files | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx --no -- commitlint --edit ${1} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
registry=https://registry.npmjs.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
v16.20.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
module.exports = { | ||
arrowParens: 'avoid', | ||
bracketSpacing: false, | ||
jsxBracketSameLine: false, | ||
printWidth: 100, | ||
proseWrap: 'always', | ||
semi: true, | ||
singleQuote: true, | ||
tabWidth: 2, | ||
trailingComma: 'es5', | ||
useTabs: false, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"recommendations": [ | ||
|
||
"nrwl.angular-console" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Contributing | ||
|
||
## First-Time Contributions | ||
|
||
If you're a first-time contributor, welcome! We use the | ||
["good first issue" label](https://github.com/workday/canvas-tokens/labels/good%20first%20issue) | ||
to identify issues that you can pick up any time. If the issue is unclear, feel free to reach out in | ||
our #canvas-kit-contrib Slack channel. We're happy to help you get started! If there are no | ||
`good first issue`s, we always appreciate documentation updates. If our docs are unclear, | ||
incomplete, or incorrect, you can submit a pull request to make an update. If you'd like to work on | ||
something else, please reach out in our #canvas-kit-contrib Slack channel, and we'll help you find | ||
something. Please read our contribution guidelines below for more detailed information on making a | ||
contribution. | ||
|
||
## How to Contribute | ||
|
||
### Finding an Issue | ||
|
||
You can find all the issues for this repository in our | ||
[GitHub Issues](https://github.com/workday/canvas-tokens/issues). | ||
|
||
### Creating an Issue | ||
|
||
If you find something you'd like added, feel free to | ||
[create an issue](https://github.com/workday/canvas-tokens/issues/new/choose), but please be | ||
sure to [review existing issues](https://github.com/workday/canvas-tokens/issues) first to | ||
reduce duplicates. | ||
|
||
### Submitting a Pull Request | ||
|
||
### Git Guidelines | ||
|
||
This project uses [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) to keep | ||
commit messages consistent. |
Oops, something went wrong.