-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'apps/web/src/material-icons/' content from commit 60a3ddc0
git-subtree-dir: apps/web/src/material-icons git-subtree-split: 60a3ddc01505521f6cf4dbfa1e8129294c1a56ac
- Loading branch information
0 parents
commit fd0400f
Showing
1,136 changed files
with
18,190 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json | ||
language: "en-US" | ||
early_access: false | ||
reviews: | ||
profile: "chill" | ||
request_changes_workflow: false | ||
high_level_summary: false | ||
poem: false | ||
review_status: false | ||
collapse_walkthrough: true | ||
auto_review: | ||
enabled: true | ||
drafts: false | ||
tools: | ||
biome: | ||
enabled: true | ||
gitleaks: | ||
enabled: true | ||
path_instructions: | ||
- path: "**/*.svg" | ||
instructions: | | ||
Ignore SVG files in the repository. There're already internal checks which ensure that SVG files are in a proper shape. | ||
- path: "**/*.test.ts" | ||
instructions: | | ||
Review the following unit test code written using the Bun.js test library. Ensure that: | ||
- The code adheres to best practices associated with Bun and Jest. | ||
- Descriptive test names are used to clearly convey the intent of each test. | ||
chat: | ||
auto_reply: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"name": "vscode-material-icon-theme", | ||
|
||
// Use Microsoft's Ubuntu Base image for the dev container | ||
"image": "mcr.microsoft.com/devcontainers/base:ubuntu", | ||
"features": { | ||
"ghcr.io/michidk/devcontainers-features/bun:1": {} | ||
}, | ||
|
||
"privileged": true, | ||
|
||
"onCreateCommand": { | ||
// Install dependencies in the dev container | ||
"install-bun-packages": "bun install" | ||
}, | ||
|
||
"customizations": { | ||
"vscode": { | ||
"settings": { | ||
// Define suggested settings for the dev container | ||
"resmon.show.battery": false, | ||
"resmon.show.cpufreq": false | ||
}, | ||
"extensions": [ | ||
"biomejs.biome", | ||
"jock.svg", | ||
"EditorConfig.EditorConfig", | ||
"oven.bun-vscode", | ||
"DavidAnson.vscode-markdownlint" | ||
] | ||
} | ||
} | ||
} |
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,12 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.svg] | ||
insert_final_newline = false |
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 @@ | ||
# Normalize EOL for all files that Git considers text files | ||
* text=auto eol=lf | ||
|
||
# Explicit binary files for older Git versions (<2.10) | ||
*.png binary | ||
*.gif binary |
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,4 @@ | ||
# These are supported funding model platforms | ||
github: [pkief] | ||
buy_me_a_coffee: pkief | ||
custom: ['https://paypal.me/philippkief'] |
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,63 @@ | ||
name: 🏞️ Icon Request | ||
description: Ask for specific icons to be added | ||
title: "[Icon Request]: <icon_name>" | ||
labels: ["icon-request"] | ||
|
||
body: | ||
- type: checkboxes | ||
id: icon-type | ||
attributes: | ||
label: Icon Type | ||
options: | ||
- label: Folder | ||
- label: File | ||
required: true | ||
|
||
- type: textarea | ||
id: folder-names | ||
attributes: | ||
label: Folder names | ||
placeholder: | | ||
- folder-name | ||
- another-folder-name | ||
- ... | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: file-names | ||
attributes: | ||
label: File names | ||
placeholder: | | ||
- file-name | ||
- another-file-name | ||
- ... | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: graphic-ideas | ||
attributes: | ||
label: Graphic ideas | ||
description: A clear description of the icon you would like. If the icons are separate for folder and files, please create separate issues. | ||
placeholder: Include a link to sample icons if possible | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the icons here. | ||
placeholder: I consider these icons necessary because ... | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](../../CODE_OF_CONDUCT.md). | ||
options: | ||
- label: I agree to follow this project's **Code of Conduct** | ||
required: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
name: 🐛 Bug Report | ||
description: Create a report to help us improve | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: Describe the bug clearly | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: To Reproduce | ||
description: Steps to reproduce the behavior | ||
placeholder: | | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
description: A clear and concise description of what you expected to happen | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
description: If applicable, add screenshots to help explain your problem | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: computer-info | ||
attributes: | ||
label: Computer information | ||
description: | | ||
Examples: | ||
- **OS edition**: [e.g. Windows 11 Home] | ||
- **Extension version**: [e.g. 5.6.0] | ||
- **VSCode version**: [e.g. 1.91.1] | ||
value: | | ||
- **OS edition**: | ||
- **Extension version**: | ||
- **VSCode version**: | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context about the problem here. | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Code of Conduct | ||
description: By submitting this issue, you agree to follow our [Code of Conduct](../../CODE_OF_CONDUCT.md). | ||
options: | ||
- label: I agree to follow this project's **Code of Conduct** | ||
required: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: 'github-actions' # See documentation for possible values | ||
directory: '/' # Location of package manifests | ||
schedule: | ||
interval: 'weekly' | ||
assignees: | ||
- 'PKief' | ||
groups: | ||
github-actions: | ||
patterns: | ||
- 'actions/*' |
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,24 @@ | ||
# Add 'icons' label to any file changes within 'icons' folder or 'src/core/icons' typescript files | ||
icons: | ||
- changed-files: | ||
- any-glob-to-any-file: ['icons/*', 'src/core/icons/*.ts'] | ||
|
||
# Add 'translations' label to any changes within 'package.nls*.json' files or 'src/core/i18n' folder | ||
translations: | ||
- changed-files: | ||
- any-glob-to-any-file: ['package.nls*.json', 'src/core/i18n'] | ||
|
||
# Add 'docs' label to any changes to markdown files | ||
docs: | ||
- changed-files: | ||
- any-glob-to-any-file: '*.md' | ||
|
||
# Add 'workflows' label to any changes within '.github/workflows' folder or '.github/labeler.yml' file | ||
workflows: | ||
- changed-files: | ||
- any-glob-to-any-file: ['.github/workflows/*', '.github/labeler.yml'] | ||
|
||
# Add 'devcontainers' label to any changes within '.devcontainer' folder | ||
devcontainers: | ||
- changed-files: | ||
- any-glob-to-any-file: '.devcontainer/*' |
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,8 @@ | ||
# Description | ||
|
||
<!-- Please describe in a short sentence or bullet points what changes you have made. --> | ||
|
||
## Contribution Guidelines | ||
|
||
- [ ] By creating this pull request, I acknowledge that I have read the [Contribution Guidelines](https://github.com/material-extensions/vscode-material-icon-theme/blob/main/CONTRIBUTING.md) for this project. | ||
- [ ] I have read the [Code Of Conduct](https://github.com/material-extensions/vscode-material-icon-theme/blob/main/CODE_OF_CONDUCT.md) and promise to abide by these rules |
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,33 @@ | ||
name: Build + Test | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
runs-on: [ubuntu-latest] | ||
|
||
name: Build Material Icon Theme | ||
|
||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Setup Platform 🛠️ | ||
uses: oven-sh/setup-bun@4bc047ad259df6fc24a6c9b0f9a0cb08cf17fbe5 # v2 | ||
with: | ||
bun-version: 1.1.18 | ||
|
||
- name: Install dependencies 📦 | ||
run: bun install --frozen-lockfile | ||
|
||
- name: Test + Build 🚀 | ||
run: | | ||
bun test | ||
bun run vscode:prepublish |
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,28 @@ | ||
name: Check SVG icon colors | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'icons/*.svg' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
color-check: | ||
name: SVG Color Check | ||
runs-on: ubuntu-latest | ||
env: | ||
TARGET_BRANCH: ${{ github.event.pull_request.base.ref }} | ||
|
||
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
fetch-depth: 0 | ||
persist-credentials: false | ||
|
||
- name: Check colors 🎨 | ||
run: | | ||
svgFiles=$(git diff origin/${{ env.TARGET_BRANCH }} --diff-filter=ACMRTUX --name-only | grep '.svg$') | ||
npx svg-color-linter --colors material-colors.yml ${svgFiles} |
Oops, something went wrong.