Skip to content

Commit

Permalink
Typo fix and LF normalization fix in git attribute.
Browse files Browse the repository at this point in the history
  • Loading branch information
ve3 committed Dec 28, 2018
1 parent e04351b commit 99de109
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 4 deletions.
46 changes: 44 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# Disable LF normalization for all files
* -text
# Line ending normalization. -------------------------
# Reference https://help.github.com/articles/dealing-with-line-endings/
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto

# Explicitly declare text files you want to always be normalized and converted to native line endings on checkout.
*.inc text
*.ini text
*.txt text
*.xml text

# Declare files that will always have LF line endings on checkout.
.htaccess text eol=lf
*.css text eol=lf
*.htm text eol=lf
*.html text eol=lf
*.js text eol=lf
*.json text eol=lf
*.map text eol=lf
*.md text eol=lf
*.mo text eol=lf
*.php text eol=lf
*.po text eol=lf
*.pot text eol=lf
*.sql text eol=lf
*.svg text eol=lf
*.yml text eol=lf

# Denote all files that are truly binary and should not be modified.
*.eot binary
*.gif binary
*.ico binary
*.jpeg binary
*.jpg binary
*.mp3 binary
*.mp4 binary
*.otf binary
*.png binary
*.swf binary
*.ttf binary
*.wav binary
*.woff binary
*.woff2 binary
# End line ending normalization. ----------------------

# Export ignore folders, files.
tests export-ignore
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018 Rundiz.com
Copyright (c) 2019 Rundiz.com

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Profiler Component

Record processes logs and display to the web browser. This can help you check your application performance such as time and memory usage.<br>
To see how it works, please look inside tests folder.
To see how it works, please look inside tests folder on [GitHub repository](https://github.com/Rundiz/profiler).

[![Latest Stable Version](https://poser.pugx.org/rundiz/profiler/v/stable)](https://packagist.org/packages/rundiz/profiler)
[![License](https://poser.pugx.org/rundiz/profiler/license)](https://packagist.org/packages/rundiz/profiler)
Expand Down

0 comments on commit 99de109

Please sign in to comment.