update .gitignore
This commit is contained in:
118
.gitignore
vendored
118
.gitignore
vendored
@@ -1,41 +1,95 @@
|
|||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
### NextJS ###
|
||||||
|
# Next build dir
|
||||||
|
.next/
|
||||||
|
|
||||||
# dependencies
|
### PhpStorm ###
|
||||||
/node_modules
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
||||||
/.pnp
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||||
.pnp.*
|
|
||||||
.yarn/*
|
|
||||||
!.yarn/patches
|
|
||||||
!.yarn/plugins
|
|
||||||
!.yarn/releases
|
|
||||||
!.yarn/versions
|
|
||||||
|
|
||||||
# testing
|
# User-specific stuff
|
||||||
/coverage
|
.idea
|
||||||
|
|
||||||
# next.js
|
# CMake
|
||||||
/.next/
|
cmake-build-*/
|
||||||
/out/
|
# File-based project format
|
||||||
|
*.iws
|
||||||
|
|
||||||
# production
|
# IntelliJ
|
||||||
/build
|
out/
|
||||||
|
|
||||||
# misc
|
# mpeltonen/sbt-idea plugin
|
||||||
.DS_Store
|
.idea_modules/
|
||||||
*.pem
|
|
||||||
|
|
||||||
# debug
|
# JIRA plugin
|
||||||
npm-debug.log*
|
atlassian-ide-plugin.xml
|
||||||
yarn-debug.log*
|
|
||||||
yarn-error.log*
|
|
||||||
.pnpm-debug.log*
|
|
||||||
|
|
||||||
# env files (can opt-in for committing if needed)
|
# Cursive Clojure plugin
|
||||||
.env*
|
.idea/replstate.xml
|
||||||
|
|
||||||
# vercel
|
# SonarLint plugin
|
||||||
.vercel
|
.idea/sonarlint/
|
||||||
|
|
||||||
# typescript
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||||
*.tsbuildinfo
|
com_crashlytics_export_strings.xml
|
||||||
next-env.d.ts
|
crashlytics.properties
|
||||||
|
crashlytics-build.properties
|
||||||
|
fabric.properties
|
||||||
|
|
||||||
|
# Editor-based Rest Client
|
||||||
|
.idea/httpRequests
|
||||||
|
|
||||||
|
# Android studio 3.1+ serialized cache file
|
||||||
|
.idea/caches/build_file_checksums.ser
|
||||||
|
|
||||||
|
### PhpStorm Patch ###
|
||||||
|
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
||||||
|
|
||||||
|
# *.iml
|
||||||
|
# modules.xml
|
||||||
|
# .idea/misc.xml
|
||||||
|
# *.ipr
|
||||||
|
|
||||||
|
# Sonarlint plugin
|
||||||
|
# https://plugins.jetbrains.com/plugin/7973-sonarlint
|
||||||
|
.idea/**/sonarlint/
|
||||||
|
|
||||||
|
# SonarQube Plugin
|
||||||
|
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
|
||||||
|
.idea/**/sonarIssues.xml
|
||||||
|
|
||||||
|
# Markdown Navigator plugin
|
||||||
|
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
|
||||||
|
.idea/**/markdown-navigator.xml
|
||||||
|
.idea/**/markdown-navigator-enh.xml
|
||||||
|
.idea/**/markdown-navigator/
|
||||||
|
|
||||||
|
# Cache file creation bug
|
||||||
|
# See https://youtrack.jetbrains.com/issue/JBR-2257
|
||||||
|
.idea/$CACHE_FILE$
|
||||||
|
|
||||||
|
# CodeStream plugin
|
||||||
|
# https://plugins.jetbrains.com/plugin/12206-codestream
|
||||||
|
.idea/codestream.xml
|
||||||
|
|
||||||
|
# Azure Toolkit for IntelliJ plugin
|
||||||
|
# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
|
||||||
|
.idea/**/azureSettings.xml
|
||||||
|
|
||||||
|
### react ###
|
||||||
|
.DS_*
|
||||||
|
*.log
|
||||||
|
logs
|
||||||
|
**/*.backup.*
|
||||||
|
**/*.back.*
|
||||||
|
|
||||||
|
node_modules
|
||||||
|
bower_components
|
||||||
|
|
||||||
|
*.sublime*
|
||||||
|
|
||||||
|
psd
|
||||||
|
thumb
|
||||||
|
sketch
|
||||||
|
|
||||||
|
# sensitive data
|
||||||
|
.env
|
||||||
Reference in New Issue
Block a user