-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(linting): fix linting problems with JSCPD
- Loading branch information
Showing
13 changed files
with
76 additions
and
75 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
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,37 @@ | ||
title: '[ACCESS]: ' | ||
labels: ['discussion', 'discussions/accessibility'] | ||
body: | ||
- type: dropdown | ||
attributes: | ||
label: Select accessibility topic | ||
description: Please specify the area of accessibility you want to discuss. | ||
options: | ||
- 'UI/UX Accessibility' | ||
- 'Web Content Accessibility Guidelines (WCAG)' | ||
- 'Screen Reader Support' | ||
- 'Keyboard Navigation' | ||
- 'Color Contrast Issues' | ||
- 'Other Accessibility Concerns' | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Description | ||
description: Provide a detailed explanation of the accessibility topic or issue. | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
attributes: | ||
label: Affected platforms | ||
description: Select the platforms where this accessibility issue is observed. | ||
options: | ||
- 'Web Application' | ||
- 'Desktop Application' | ||
- 'Mobile Application' | ||
- 'Other' | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Suggested Solutions (Optional) | ||
description: If you have any suggestions for addressing the issue, provide them here. |
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -126,3 +126,6 @@ ts*.buildinfo* | |
|
||
# Python VENV | ||
**/venv/ | ||
|
||
# JSCPD reports | ||
report/ |
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,6 @@ | ||
{ | ||
"threshold": 0, | ||
"reporters": ["html", "console", "badge"], | ||
"ignore": ["**/__snapshots__/**", "**/venv/**", "**/node_modules/**", "./report/**"], | ||
"absolute": true | ||
} |
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