Merge branch 'main' into main
This commit is contained in:
commit
7bfab2ec5b
21 changed files with 213 additions and 108 deletions
|
|
@ -1,5 +1,6 @@
|
|||
# General
|
||||
.DS_Store
|
||||
__MACOSX/
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
Icon[
]
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
.import/
|
||||
export.cfg
|
||||
export_credentials.cfg
|
||||
*.tmp
|
||||
|
||||
# Imported translations (automatically generated from CSV files)
|
||||
*.translation
|
||||
|
|
|
|||
|
|
@ -81,6 +81,7 @@ out
|
|||
# Nuxt.js build / generate output
|
||||
.nuxt
|
||||
dist
|
||||
.output
|
||||
|
||||
# Gatsby files
|
||||
.cache/
|
||||
|
|
@ -134,6 +135,7 @@ dist
|
|||
!.yarn/sdks
|
||||
!.yarn/versions
|
||||
|
||||
# Vite logs files
|
||||
# Vite files
|
||||
vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
||||
.vite/
|
||||
|
|
|
|||
|
|
@ -131,6 +131,19 @@ __pypackages__/
|
|||
celerybeat-schedule
|
||||
celerybeat.pid
|
||||
|
||||
# Redis
|
||||
*.rdb
|
||||
*.aof
|
||||
*.pid
|
||||
|
||||
# RabbitMQ
|
||||
mnesia/
|
||||
rabbitmq/
|
||||
rabbitmq-data/
|
||||
|
||||
# ActiveMQ
|
||||
activemq-data/
|
||||
|
||||
# SageMath parsed files
|
||||
*.sage.py
|
||||
|
||||
|
|
|
|||
39
Salesforce.gitignore
Normal file
39
Salesforce.gitignore
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
# This file is used for Git repositories to specify intentionally untracked files that Git should ignore.
|
||||
# If you are not using git, you can delete this file. For more information see: https://git-scm.com/docs/gitignore
|
||||
# For useful gitignore templates see: https://github.com/github/gitignore
|
||||
|
||||
# Salesforce cache
|
||||
.sf/
|
||||
.sfdx/
|
||||
.localdevserver/
|
||||
deploy-options.json
|
||||
.localdev
|
||||
|
||||
# LWC VSCode autocomplete
|
||||
**/lwc/jsconfig.json
|
||||
|
||||
# LWC Jest coverage reports
|
||||
coverage/
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Windows system files
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
[Dd]esktop.ini
|
||||
$RECYCLE.BIN/
|
||||
|
||||
# Salesforce Analyzer results
|
||||
sca-results.csv
|
||||
sfca_results.json
|
||||
|
||||
# Local environment variables
|
||||
.env
|
||||
25
community/BoxLang/ColdBox.gitignore
Normal file
25
community/BoxLang/ColdBox.gitignore
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# Servelet Ignores
|
||||
WEB-INF
|
||||
|
||||
# Engines + Database + CBFS + Secrets
|
||||
.tmp/**
|
||||
.env
|
||||
.engine/**
|
||||
.cbfs/**
|
||||
|
||||
# Logs + Test Results
|
||||
logs/**
|
||||
tests/results/**
|
||||
|
||||
## Ignored Dependencies
|
||||
/boxlang_modules/*
|
||||
effective-pom.xml
|
||||
/coldbox/**
|
||||
/testbox/**
|
||||
/modules/**
|
||||
/lib/java/**
|
||||
|
||||
# NPM JS Assets (If applicable)
|
||||
**/node_modules/*
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
24
community/CFML/ColdBox.gitignore
Normal file
24
community/CFML/ColdBox.gitignore
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Servelet Ignores
|
||||
WEB-INF
|
||||
|
||||
# Engines + Database + CBFS + Secrets
|
||||
.tmp/**
|
||||
.env
|
||||
.engine/**
|
||||
.cbfs/**
|
||||
|
||||
# Logs + Test Results
|
||||
logs/**
|
||||
tests/results/**
|
||||
|
||||
## Ignored Dependencies
|
||||
effective-pom.xml
|
||||
/coldbox/**
|
||||
/testbox/**
|
||||
/modules/**
|
||||
/lib/java/**
|
||||
|
||||
# NPM JS Assets (If applicable)
|
||||
**/node_modules/*
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
Loading…
Add table
Add a link
Reference in a new issue