Skip to content

Commit

Permalink
Deploying to gh-pages from @ 52a3a17 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
janechu committed Jun 19, 2024
0 parents commit 97005ab
Show file tree
Hide file tree
Showing 7,296 changed files with 707,375 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
1 change: 1 addition & 0 deletions .actrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-P ubuntu-latest=nektos/act-environments-ubuntu:18.04
15 changes: 15 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Never lint test files
*.spec.ts
!*.pw.spec.ts

# Never lint node_modules
node_modules

# Never lint build output
dist

# Never lint coverage output
coverage

# Never lint karma configs
karma.conf.cjs
85 changes: 85 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
module.exports = {
root: true,
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint", "import"],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
rules: {
"no-unused-vars": "off",
"no-extra-boolean-cast": "off",
"no-empty-function": "off",
"@typescript-eslint/no-empty-function": [
"error",
{ allow: ["asyncMethods", "methods"] },
],
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/typedef": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"max-len": ["error", 140],
"import/order": "error",
"sort-imports": [
"error",
{
ignoreCase: true,
ignoreDeclarationSort: true,
},
],
"comma-dangle": "off",
"@typescript-eslint/no-empty-interface": [
"error",
{
allowSingleExtends: true,
},
],
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/naming-convention": [
"error",
{
selector: "default",
format: ["UPPER_CASE", "camelCase", "PascalCase"],
leadingUnderscore: "allow",
},
{
selector: "property",
format: null, // disable for property names because of our foo__expanded convention for JSS
// TODO: I think we can come up with a regex that ignores variables with __ in them
},
{
selector: "variable",
format: null, // disable for variable names because of our foo__expanded convention for JSS
// TODO: I think we can come up with a regex that ignores variables with __ in them
},
{
selector: "interface",
format: ["PascalCase"],
custom: {
regex: "^I[A-Z]",
match: false,
},
},
],
"@typescript-eslint/no-inferrable-types": "off",
"no-prototype-builtins": "off",
"no-fallthrough": "off",
"no-unexpected-multiline": "off",
"@typescript-eslint/no-unused-vars": ["warn", { args: "none" }],
"@typescript-eslint/no-explicit-any": "off",
},
overrides: [
{
files: ["**/*.js"],
extends: ["eslint:recommended"],
env: {
node: true,
"shared-node-browser": true,
},
rules: {
"@typescript-eslint/no-var-requires": "off",
},
},
],
};
5 changes: 5 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Set the default behavior, in case contributors don't have core.autocrlf set.
* text=auto

# prevent Github from including yarn source
.yarn/releases/*.cjs linguist-vendored
39 changes: 39 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Approval for at least one *code owner* is required all packages.

# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more *code owners*.
# The last matching pattern has the most precendence.

# These *code owners* will be the default owners for everything in the repository.
* @chrisdholt @janechu @nicholasrice @radium-v

# File type specific owners
# Markdown specific files
*.md @awentzel @chrisdholt @falkicon
/docs/ @awentzel @chrisdholt @falkicon

# GitHub management
.github/ @awentzel @janechu @chrisdholt @nicholasrice
.github/workflows/ @awentzel @chrisdholt @nicholasrice

# Build scripts
*.yml @awentzel @janechu @nicholasrice @chrisdholt
build/ @janechu @nicholasrice @chrisdholt @awentzel

# Specifications
/specs/ @chrisdholt @janechu @nicholasrice

# Sites
/sites/website/ @awentzel @chrisdholt @falkicon

# Package specific owners

# Utilities
/packages/utilities/fast-web-utilities/ @janechu @chrisdholt @nicholasrice

# Web components
/packages/web-components/fast-element/ @chrisdholt @janechu @nicholasrice
/packages/web-components/fast-foundation/ @chrisdholt @bheston @scomea @radium-v @kingoftac

# the change directory has no owners
/change/
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
name: '🐛 Bug Report'
about: Did FAST not work as expected?
title: "fix: [what is the issue?] in [where is the issue?]"
labels: 'status:triage'
---

<!---
Thanks for filing an issue 😄 ! Before you submit, please read the following:
Search open/closed issues before submitting. Someone may have reported the same issue before.
-->

# 🐛 Bug Report

<!--- Provide a general summary of the issue here -->

## 💻 Repro or Code Sample

<!-- Please provide steps to reproduce the issue and/or a code repository, gist, code snippet or sample files -->

## 🤔 Expected Behavior

<!--- Tell us what should happen -->

## 😯 Current Behavior

<!--- Tell us what happens instead of the expected behavior -->
<!--- If you are seeing an error, please include the full error message and stack trace -->
<!--- If applicable, provide screenshots -->

## 💁 Possible Solution

<!--- Not obligatory, but suggest a fix/reason for the bug -->
<!--- Please let us know if you'd be willing to contribute the fix; we'd be happy to work with you -->

## 🔦 Context

<!--- How has this issue affected you? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->

## 🌍 Your Environment

<!--- Include as many relevant details as possible about the environment you experienced the bug in -->

* OS & Device: [e.g. MacOS, iOS, Windows, Linux] on [iPhone 7, PC]
* Browser [e.g. Microsoft Edge, Google Chrome, Apple Safari, Mozilla FireFox]
* Version [e.g. 1.8.0]
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: 📚 Documentation
about: Find an inaccuracy in the documentation or something missing?
title: "docs: fix/add [what] to/in [where]"
labels: 'status:triage'
---

<!---
Thanks for filing an issue 😄 ! Before you submit, please read the following:
Search open/closed issues before submitting. Someone may have reported the same issue before.
-->

# 🙋 Documentation Request

<!--- Provide a general summary of what is missing or incorrect in the documentation -->

## 💁 Possible Solution

<!--- Not obligatory, but feel free to suggest a content outline for larger topics -->
40 changes: 40 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
name: 🙋 Feature Request
about: Want us to add something to FAST?
title: "feat: add [what] to/in [where]"
labels: 'status:triage'
---

<!---
Thanks for filing an issue 😄 ! Before you submit, please read the following:
Search open/closed issues before submitting. Someone may have requested the same feature before.
-->

# 🙋 Feature Request

<!--- Provide a general summary of the feature here -->

## 🤔 Expected Behavior

<!--- Tell us how the feature should work -->

## 😯 Current Behavior

<!--- Explain how the feature would alter/enhance current behavior -->

## 💁 Possible Solution

<!--- Ideas how to implement this feature -->
<!--- What implementation solution would be ideal for you? -->

## 🔦 Context

<!--- What are you trying to accomplish? -->
<!--- How has not having this feature affected you? -->
<!--- What alternatives have you considered? -->

## 💻 Examples

<!-- Examples help us understand the requested feature better -->
<!-- Attach screenshots or images if they would add detail to your request -->
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/rfc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: 💬 Request For Comment (RFC)
about: Want comments from the team and community on your proposal?
title: "rfc: add [what] to/in [where]"
labels: 'status:triage'
---

<!---
Thanks for filing an issue 😄 ! Before you submit, please read the following:
Search open/closed issues before submitting. Someone may have created a similar RFC before.
-->

# 💬 RFC

<!--- Provide a detailed summary of the feature here -->

## 🔦 Context

<!--- What are you trying to accomplish? How has not having this feature affected you? -->
<!--- What alternatives have you considered? What are you trying to accomplish? -->
<!--- Providing context helps us come up with a solution that is most useful in the real world -->

## 💻 Examples

<!-- Examples help us understand the requested feature better -->
<!-- Attach screenshots or images if they would add detail to your request -->
56 changes: 56 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
<!---
Thanks for filing a pull request 😄 ! Before you submit, please read the following:
Search open/closed issues before submitting. Someone may have pushed the same thing before!
Provide a summary of your changes in the title field above.
-->

# Pull Request

## 📖 Description

<!---
Provide some background and a description of your work.
What problem does this change solve?
Is this a breaking change, chore, fix, feature, etc?
-->

### 🎫 Issues

<!---
* List and link relevant issues here.
-->

## 👩‍💻 Reviewer Notes

<!---
Provide some notes for reviewers to help them provide targeted feedback and testing.
Do you recommend a smoke test for this PR? What steps should be followed?
Are there particular areas of the code the reviewer should focus on?
-->

## 📑 Test Plan

<!---
Please provide a summary of the tests affected by this work and any unique strategies employed in testing the features/fixes.
-->

## ✅ Checklist

### General

<!--- Review the list and put an x in the boxes that apply. -->

- [ ] I have included a change request file using `$ yarn change`
- [ ] I have added tests for my changes.
- [ ] I have tested my changes.
- [ ] I have updated the project documentation to reflect my changes.
- [ ] I have read the [CONTRIBUTING](https://github.com/microsoft/fast/blob/master/CONTRIBUTING.md) documentation and followed the [standards](https://github.com/microsoft/fast/blob/master/CODE_OF_CONDUCT.md#our-standards) for this project.

## ⏭ Next Steps

<!---
If there is relevant follow-up work to this PR, please list any existing issues or provide brief descriptions of what you would like to do next.
-->
Loading

0 comments on commit 97005ab

Please sign in to comment.