Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
Infoscreen
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Evy Storozhenko
Infoscreen
Commits
7c5cd378
Commit
7c5cd378
authored
9 years ago
by
Tilman Vatteroth
Browse files
Options
Downloads
Patches
Plain Diff
versteckte dateien
parent
9d7e032f
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.editorconfig
+18
-0
18 additions, 0 deletions
.editorconfig
.gitattributes
+36
-0
36 additions, 0 deletions
.gitattributes
.htaccess
+5
-0
5 additions, 0 deletions
.htaccess
.travis.yml
+18
-0
18 additions, 0 deletions
.travis.yml
with
77 additions
and
0 deletions
.editorconfig
0 → 100644
+
18
−
0
View file @
7c5cd378
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://editorconfig.org
root
=
true
[*]
indent_style
=
space
indent_size
=
4
end_of_line
=
lf
insert_final_newline
=
true
trim_trailing_whitespace
=
true
[*.bat]
end_of_line
=
crlf
[*.yml]
indent_style
=
space
indent_size
=
2
This diff is collapsed.
Click to expand it.
.gitattributes
0 → 100644
+
36
−
0
View file @
7c5cd378
# Define the line ending behavior of the different file extensions
# Set default behaviour, in case users don't have core.autocrlf set.
* text=auto
* text eol=lf
# Explicitly declare text files we want to always be normalized and converted
# to native line endings on checkout.
*.php text
*.default text
*.ctp text
*.sql text
*.md text
*.po text
*.js text
*.css text
*.ini text
*.properties text
*.txt text
*.xml text
*.yml text
.htaccess text
# Declare files that will always have CRLF line endings on checkout.
*.bat eol=crlf
# Declare files that will always have LF line endings on checkout.
*.pem eol=lf
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.gif binary
*.ico binary
*.mo binary
*.pdf binary
*.phar binary
This diff is collapsed.
Click to expand it.
.htaccess
0 → 100644
+
5
−
0
View file @
7c5cd378
<
IfModule
mod_rewrite.c
>
RewriteEngine
on
RewriteRule
^$ webroot/ [L]
RewriteRule
(.*) webroot/$1 [L]
</
IfModule
>
This diff is collapsed.
Click to expand it.
.travis.yml
0 → 100644
+
18
−
0
View file @
7c5cd378
language
:
php
sudo
:
false
php
:
-
5.4
-
5.5
-
5.6
before_script
:
-
sh -c "composer require 'cakephp/cakephp-codesniffer:dev-master'"
-
phpenv rehash
script
:
-
sh -c "vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests ./config ./webroot"
notifications
:
email
:
false
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment