Skip to content

Commit

Permalink
Merge pull request #99 from lara-zeus/filters
Browse files Browse the repository at this point in the history
enable searches and filters in all resources
  • Loading branch information
atmonshi authored Jun 13, 2023
2 parents 235289d + 2d25787 commit 30f83bb
Show file tree
Hide file tree
Showing 12 changed files with 116 additions and 99 deletions.
12 changes: 9 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,19 @@ root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false

[*.{yml,yaml}]
indent_size = 2
indent_size = 2

[*.json]
indent_size = 4

[docker-compose.yml]
indent_size = 4
24 changes: 5 additions & 19 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,19 +1,5 @@
# Path-based git attributes
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html

# Ignore all test and documentation with "export-ignore".
/.github export-ignore
/.gitattributes export-ignore
/.gitignore export-ignore
/phpunit.xml.dist export-ignore
/art export-ignore
/docs export-ignore
/tests export-ignore
/.editorconfig export-ignore
/.php_cs.dist.php export-ignore
/psalm.xml export-ignore
/psalm.xml.dist export-ignore
/testbench.yaml export-ignore
/UPGRADING.md export-ignore
/phpstan.neon.dist export-ignore
/phpstan-baseline.neon export-ignore
* text=auto
*.css linguist-vendored
*.scss linguist-vendored
*.js linguist-vendored
CHANGELOG.md export-ignore
17 changes: 8 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
/public/hot
/public/storage
/storage/*.key
/vendor
/build
/vendor/.idea
/bootstrap/cache
.env
.env.backup
.phpunit.result.cache
Expand All @@ -10,12 +14,7 @@ Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
.php-cs-fixer.cache
.idea
build
coverage
phpunit.xml
phpstan.neon
testbench.yaml
vendor
node_modules
/.idea
/.vscode
/pkg
.DS_Store
103 changes: 51 additions & 52 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 30f83bb

Please sign in to comment.