mirror of
https://github.com/simple-icons/simple-icons.git
synced 2024-12-16 01:10:30 +02:00
e0df400494
* Add prettier as a dependency * Add format command and configure prettier I opted for single quotes to be in line with other simple-icons projects I ignore the data file because changing its formatting is quite a bit of trouble for all open PRs. * Run prettier * Replace all functions by arrow functions * Move prettier configuration to config file Move it to a file so editors (and other software) can pick up on the configuration. I went with .js because (a) it allows for comments and (2) it seems most of the config files are in JavaScript already. * Add prettier --check when running npm run lint (This adds it to the CI as well) * Add husky and format changes before committing * Use object destructuring for imports consistently * Add shebang and fileoverview to jsonlint.js
65 lines
1.9 KiB
YAML
65 lines
1.9 KiB
YAML
name: Packages
|
|
description: Report problems and suggest ideas for the packages
|
|
labels: [package]
|
|
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: >-
|
|
Before opening a new issue, make sure it isn't covered by an existing issue.
|
|
Please search for [issues with the `package` label][package-issues] (including
|
|
closed issues) before you continue.
|
|
|
|
|
|
[package-issues]: https://github.com/simple-icons/simple-icons/issues?q=is%3Aissue+label%3Apackage+is%3Aopen
|
|
|
|
- type: dropdown
|
|
attributes:
|
|
label: Kind of Issue
|
|
description: >-
|
|
If your issue type is not here, select "other" and explain in the
|
|
"Description" field below.
|
|
options: [Bug, Feature, Performance, Other]
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
attributes:
|
|
label: This issue concerns the...
|
|
options: [NPM package, Packagist package]
|
|
multiple: true
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
attributes:
|
|
label: Package Version
|
|
placeholder: 'Example: 5.11.0'
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: Other Software
|
|
description: >-
|
|
The software that you are using the package with (Node.js & NPM, PHP & Packagist,
|
|
Browser(s), other) and their versions. You can put "None" if you are unsure.
|
|
placeholder: |
|
|
Example:
|
|
Node.js v16
|
|
Chrome 92.0.4515.159 (Official Build) (64-bit)
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: Description
|
|
description: |
|
|
Anything relevant, for example:
|
|
- For bugs: "Steps to reproduce" and "Expected behavior"
|
|
- For feature requests: An example of a use case
|
|
- For performance: An example where performance is poor
|
|
placeholder: 'Example: The NPM package does not work for my use case...'
|
|
validations:
|
|
required: true
|