Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(biome): use vcs options #1967

Merged
merged 1 commit into from
Jan 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
lib/
storybook-static/

### Generated by gibo (https://github.com/simonwhitaker/gibo)

Check warning on line 4 in .gitignore

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (gibo)
### https://raw.github.com/github/gitignore/4488915eec0b3a45b5c63ead28f286819c0917de/Node.gitignore

# Logs
Expand All @@ -14,12 +17,12 @@
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids

Check warning on line 20 in .gitignore

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (pids)
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover

Check warning on line 25 in .gitignore

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (jscoverage)
lib-cov

# Coverage directory used by tools like istanbul
Expand All @@ -36,7 +39,7 @@
bower_components

# node-waf configuration
.lock-wscript

Check warning on line 42 in .gitignore

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (wscript)

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
Expand All @@ -58,9 +61,9 @@
.eslintcache

# Optional stylelint cache
.stylelintcache

Check warning on line 64 in .gitignore

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (stylelintcache)

# Microbundle cache

Check warning on line 66 in .gitignore

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Microbundle)
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
Expand Down Expand Up @@ -90,8 +93,8 @@
.next
out

# Nuxt.js build / generate output

Check warning on line 96 in .gitignore

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (Nuxt)
.nuxt

Check warning on line 97 in .gitignore

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (nuxt)
dist

# Gatsby files
Expand All @@ -100,8 +103,8 @@
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output

Check warning on line 106 in .gitignore

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (vuepress)
.vuepress/dist

Check warning on line 107 in .gitignore

View workflow job for this annotation

GitHub Actions / spellcheck

Unknown word (vuepress)

# vuepress v2.x temp and cache directory
.temp
Expand Down
13 changes: 4 additions & 9 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,10 @@
"organizeImports": {
"enabled": true
},
"files": {
"ignore": [
"./packages/ui/storybook-static/**",
"./apps/web/.next/**",
"./target/**",
"lib/**",
"dist/**",
"coverage/**"
]
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"formatter": {
"indentStyle": "space"
Expand Down
2 changes: 0 additions & 2 deletions packages/ui/.gitignore

This file was deleted.

Loading