-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into cms/news/2024/07/2024-07-10-18fs-engineering…
…-craft-practices-at-10
- Loading branch information
Showing
108 changed files
with
4,794 additions
and
3,536 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 |
---|---|---|
@@ -1,11 +1,34 @@ | ||
env: | ||
browser: true | ||
es2021: true | ||
node: true | ||
extends: | ||
- airbnb-base | ||
- plugin:prettier/recommended | ||
overrides: [] | ||
parser: '@typescript-eslint/parser' | ||
parserOptions: | ||
ecmaVersion: latest | ||
rules: { "prettier/prettier": "error" } | ||
plugins: ["prettier"] | ||
sourceType: module | ||
plugins: | ||
- '@typescript-eslint' | ||
- prettier | ||
rules: | ||
prettier/prettier: error | ||
settings: | ||
import/resolver: | ||
node: | ||
extensions: ['.js', '.jsx', '.ts', '.tsx'] | ||
overrides: | ||
- files: ['*.js', '*.jsx'] | ||
rules: | ||
prettier/prettier: error | ||
- files: ['*.ts', '*.tsx'] | ||
extends: | ||
- plugin:@typescript-eslint/recommended | ||
rules: | ||
prettier/prettier: error | ||
no-console: off # This disables the console statement warning for TypeScript files | ||
consistent-return: off # This disables the consistent return warning for TypeScript files | ||
'@typescript-eslint/no-explicit-any': off # This disables the explicit any warning for TypeScript files | ||
'no-await-in-loop': off # This disables the await in loop warning for TypeScript files | ||
'no-restricted-syntax': off # This disables the restricted syntax warning for TypeScript files |
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 |
---|---|---|
@@ -1,27 +1,52 @@ | ||
## Summary | ||
|
||
Basic description of work done. Closes [#issue_no]. | ||
Basic description of work done. | ||
|
||
### Preview | ||
## Preview | ||
|
||
[Link to Preview]() | ||
|
||
<!-- | ||
⚠️ Significant visual changes require submitting previous design to wayback machine. | ||
--> | ||
|
||
### Solution | ||
## Solution | ||
|
||
### How To Test | ||
Provide a summary of the solution this PR offers. | ||
|
||
<!-- | ||
It can be helpful if we understand: | ||
1. What the solution is, | ||
2. Why this approach was chosen, | ||
3. How you implemented the change, and | ||
4. Possible limitations of this approach and alternate solution paths. | ||
--> | ||
|
||
|
||
## How To Test | ||
|
||
1. First Step | ||
2. Second Step | ||
3. Third Step | ||
|
||
--- | ||
<!-- | ||
For PRs that include dependency updates, uncomment this section and | ||
include a list of the changed dependencies and version numbers. | ||
--> | ||
|
||
<!-- | ||
## Dependency updates | ||
### Dev Checklist | ||
| Dependency name | Previous version | New version | | ||
| ---------------------------- | :--------------: | :---------: | | ||
| [Updated dependency example] | [1.0.0] | [1.0.1] | | ||
| [New dependency example] | -- | [3.0.1] | | ||
| [Removed dependency example] | [2.10.2] | -- | | ||
--> | ||
|
||
<!-- | ||
Before opening this PR, make sure you’ve done whichever of these applies to you: | ||
- [ ] Branch is up-to-date and includes latest from `main` | ||
- [ ] PR has correct labels | ||
- [ ] A11y testing (voice over testing, meets WCAG, run axe tools) | ||
- [ ] Code is formatted properly | ||
--> |
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
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,11 @@ | ||
{ | ||
"eslint.validate": [ | ||
"javascript", | ||
"javascriptreact", | ||
"typescript", | ||
"typescriptreact" | ||
], | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": "always" | ||
} | ||
} |
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
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
Oops, something went wrong.