Skip to content

Commit

Permalink
Reorder and clean gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
juanjol committed Sep 23, 2024
1 parent 824cbf2 commit 58a890f
Showing 1 changed file with 61 additions and 62 deletions.
123 changes: 61 additions & 62 deletions aljibe-kickstart/.gitignore
Original file line number Diff line number Diff line change
@@ -1,90 +1,89 @@
#ddev-generated
# Ignore directories generated by Composer.
# !! All modifications to this file should be done under
# the "Custom ignore rules" section at the end of the file.

# -------------------------
# Generic ignore rules
## Ensure .gitkeep files are commited so folder structure get respected.
!.gitkeep

## OS X files.
.DS_STORE
.Ds_Store
.DS_Store

## Linux files.
.directory

## Database and compressed files.
*.mysql
*.sql
*.gz
*.zip
*.rar
*.7z

# -------------------------
# Drupal
## Composer managed paths.
/drush/contrib/
/vendor/
/web/core/
/web/modules/contrib/
/web/themes/contrib/
/web/profiles/contrib/
/web/libraries/
/create-project.gif

# Ignore xdebug docker-compose file
docker-compose.xdebug.override.yml

# Ignore sensitive information.
## Sensitive information.
/web/sites/*/settings.local.php

# Ignore local drush settings
## Local drush settings
/web/sites/*/local.drush.yml

# Ignore SimpleTest multi-site environment.
# TODO Replace/remove it before d9 release https://www.drupal.org/node/3091784
/web/sites/simpletest

# Ignore paths that contain user-generated content.
## Paths that contain user-generated content.
/web/sites/*/files
/private-files/*
!/private-files/.gitkeep

web/sites/*/translations/*
## Translations
/web/sites/*/translations/*

# OS X files.
.DS_STORE
.Ds_Store
.DS_Store

# Linux files.
.directory

# IDE related directories.
/nbproject/private/
.idea

# Database and compressed files.
*.mysql
*.sql
*.gz
*.zip
*.rar
*.7z

# NPM.
## NPM.
node_modules/
.sass-cache
.cache

# Test related reports.
/reports/*

# BackstopJS
/tests/*/backstopjs/backstop_data/html_report
/tests/*/backstopjs/backstop_data/ci_report
/tests/*/backstopjs/backstop_data/bitmaps_test
/tests/*/*/backstopjs/backstop_data/html_report
/tests/*/*/backstopjs/backstop_data/ci_report
/tests/*/*/backstopjs/backstop_data/bitmaps_test
# -------------------------
# IDE Files
## IDE related directories.
nbproject/
.idea/

# Temporary files
# Aljibe
## Temporary files
/tmp/*

# Ignore docker-compose env specific settings.
/docker-compose.override.yml
## DDEV
settings.ddev.php

# Ensure .gitkeep files are commited so folder structure get respected.
!.gitkeep
/.editorconfig
/.gitattributes
## Aljibe
aljibe-kickstart

# Generated artifact by metadrop/drupal-artifact-builder
deploy-artifact
## mkdocs
docs/site

# DDEV
/.ddev/docker-compose.ci.yaml
example.settings.local.php
settings.ddev.php
## Test related reports.
/reports/*/**
!/reports/*/.gitkeep

# Aljibe
aljibe-kickstart
## BackstopJS
/tests/backstopjs/**/html_report
/tests/backstopjs/**/ci_report
/tests/backstopjs/**/bitmaps_test

# -------------------------
# Tools
## Generated artifact by metadrop/drupal-artifact-builder
deploy-artifact/

# mkdocs
docs/site
# Custom ignore rules
## Add here your custom ignore rules

0 comments on commit 58a890f

Please sign in to comment.