Skip to content

Commit

Permalink
Merge branch 'main' into renovate/dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] committed Jul 3, 2023
2 parents cde74d6 + 3b4163f commit 90001f8
Show file tree
Hide file tree
Showing 6 changed files with 857 additions and 346 deletions.
298 changes: 213 additions & 85 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,98 +1,197 @@
# Logs
logs
############################
# OS X
############################

.DS_Store
.AppleDouble
.LSOverride
Icon
.Spotlight-V100
.Trashes
._*


############################
# Linux
############################

*~


############################
# Windows
############################

Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp


############################
# Packages
############################

*.7z
*.csv
*.dat
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
*.com
*.class
*.dll
*.exe
*.o
*.seed
*.so
*.swo
*.swp
*.swn
*.swm
*.out
*.pid
*.seed
*.pid.lock
*.suo
*.ntvs*
*.njsproj
*.sln

# Output of 'npm pack'
*.tgz


############################
# Logs and databases
############################

.tmp
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*
.pnpm-debug.log*
*.sql
*.sqlite
*.sqlite3

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock
############################
# Misc.
############################

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
*#
ssl
.idea
nbproject
public/uploads/*
!public/uploads/.gitkeep

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output
############################
# Node.js
############################

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt
lib-cov
lcov.info
pids
logs
results
node_modules
.node_history
.npmrc
.nvmrc

# Bower dependency directory (https://bower.io/)
bower_components
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Optional REPL history
.node_repl_history

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Snowpack dependency directory (https://snowpack.dev/)
web_modules/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional prettier cache
.prettiercache
# Yarn Integrity file
.yarn-integrity

# Optional eslint cache
.eslintcache
# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.yarn/releases/yarn-*.cjs
.pnp.*

# Optional stylelint cache
.stylelintcache

# Optional cspell cache
.cspellcache
############################
# Builders
############################

# Vercel folder
.vercel

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history
# Turbo Repo
.turbo

# Output of 'npm pack'
*.tgz
# Local Netlify
.netlify

# Yarn Integrity file
.yarn-integrity
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# dotenv environment variable files
.env
.env.development
.env.production
.env.local
.env.development.local
.env.production.local
.env.test.local
# Bower dependency directory (https://bower.io/)
bower_components

# parcel-bundler cache (https://parceljs.org/)
.cache
.parcel-cache
# Dependency directories
jspm_packages/

# Vercel folder
.vercel
# Snowpack dependency directory (https://snowpack.dev/)
web_modules/


############################
# Tests
############################

testApp

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output


############################
# Frameworks
############################

# Next.js build output
.next
Expand All @@ -115,15 +214,6 @@ out
**/public/sitemap.xml
**/public/sitemap-0.xml

# Sentry
.sentryclirc

# Storybook Build
storybook-static

# Turbo Repo
.turbo

# Nuxt.js build / generate output
.nuxt
dist
Expand All @@ -134,10 +224,6 @@ dist
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# Local Netlify
.netlify
.idea

# vuepress build output
.vuepress/dist

Expand All @@ -148,6 +234,11 @@ dist
# Docusaurus cache and generated files
.docusaurus


############################
# Extras
############################

# Serverless directories
.serverless/

Expand All @@ -163,24 +254,62 @@ dist
# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
# Sentry
.sentryclirc

# Storybook Build
storybook-static

# TypeScript cache
*.tsbuildinfo


############################
# Environment Variables
############################

.env
.env.development
.env.production
.env.local
.env.development.local
.env.production.local
.env.test.local


############################
# Strapi
############################

.env
license.txt
exports
*.cache
dist
build
.strapi-updater.json


############################
# Locals
############################

# Editor directories and files
.vscode/*
!.vscode/extensions.json
!.vscode/settings.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

# Optional prettier cache
.prettiercache

# Optional eslint cache
.eslintcache

# Optional stylelint cache
.stylelintcache

# Optional cspell cache
.cspellcache

# Release-it
release-it/remote-commits.json
Expand All @@ -191,6 +320,5 @@ package-lock.json
yarn.lock
pnpm-lock.yaml

# Library files
# Extras(if any)
CHANGELOG.md
dist
Loading

0 comments on commit 90001f8

Please sign in to comment.