Align .gitignore and .editorconfig with project conventions
This commit is contained in:
parent
ed957aae97
commit
54de5b6cc2
2 changed files with 7 additions and 3 deletions
|
|
@ -14,5 +14,5 @@ trim_trailing_whitespace = false
|
||||||
[*.{yml,yaml}]
|
[*.{yml,yaml}]
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
|
||||||
[compose.yaml]
|
[docker-compose.yml]
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
|
|
|
||||||
8
.gitignore
vendored
8
.gitignore
vendored
|
|
@ -1,16 +1,17 @@
|
||||||
|
/.vite
|
||||||
/.phpunit.cache
|
/.phpunit.cache
|
||||||
/bootstrap/ssr
|
/bootstrap/ssr
|
||||||
/node_modules
|
/node_modules
|
||||||
/public/build
|
/public/build
|
||||||
/public/hot
|
/public/hot
|
||||||
/public/storage
|
/public/storage
|
||||||
|
/public/vendor
|
||||||
/resources/js/actions
|
/resources/js/actions
|
||||||
/resources/js/routes
|
/resources/js/routes
|
||||||
/resources/js/wayfinder
|
/resources/js/wayfinder
|
||||||
/storage/*.key
|
/storage/*.key
|
||||||
/storage/pail
|
/storage/pail
|
||||||
/vendor
|
/vendor
|
||||||
.DS_Store
|
|
||||||
.env
|
.env
|
||||||
.env.backup
|
.env.backup
|
||||||
.env.production
|
.env.production
|
||||||
|
|
@ -20,10 +21,13 @@ Homestead.json
|
||||||
Homestead.yaml
|
Homestead.yaml
|
||||||
npm-debug.log
|
npm-debug.log
|
||||||
yarn-error.log
|
yarn-error.log
|
||||||
|
/package-lock.json
|
||||||
/auth.json
|
/auth.json
|
||||||
/.fleet
|
/.fleet
|
||||||
/.idea
|
/.idea
|
||||||
/.nova
|
/.nova
|
||||||
/.vscode
|
/.vscode
|
||||||
/.zed
|
/.zed
|
||||||
package-lock.json
|
/coverage-report*
|
||||||
|
/coverage.xml
|
||||||
|
/.claude
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue