mirror of
https://github.com/Mibew/simple-icons.git
synced 2025-05-28 21:16:27 +03:00
* 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
36 lines
1.2 KiB
YAML
36 lines
1.2 KiB
YAML
name: Icon removal
|
|
description: Report an icon for removal
|
|
title: 'Remove: '
|
|
labels: [removal request]
|
|
|
|
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 `removal request` or `breaking change` label][removal-issues]
|
|
(including closed issues) before you continue. If you find one for the brand
|
|
you're reporting then leave a comment on it or add a reaction.
|
|
|
|
|
|
[removal-issues]: https://github.com/simple-icons/simple-icons/issues?q=is%3Aissue+label%3A%22removal+request%22%2C%22breaking+change%22+is%3Aopen+
|
|
|
|
- type: input
|
|
attributes:
|
|
label: Brand Name
|
|
placeholder: 'Example: Simple Icons'
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
attributes:
|
|
label: Reason for Removal
|
|
description: |
|
|
- If the brand no longer exists, include a link supporting that claim.
|
|
- If the brand should be removed for another reason, explain why.
|
|
placeholder: >-
|
|
Example: [this blogpost](https://example.com) announced the brand has been
|
|
discontinued...
|
|
validations:
|
|
required: true
|