Skip to content

Commit

Permalink
Fix self-check
Browse files Browse the repository at this point in the history
  • Loading branch information
cytopia committed Sep 3, 2016
1 parent 8f8d5f8 commit 541c0c3
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 11 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# @see http://editorconfig.org/
# @version 1.0
# @date 2016-03-10
# @author Patrick Plocke <[email protected]>

# This is the top-most .editorconfig file; do not search in parent directories.
root = true

# All files.
[*]
charset = utf-8
end_of_line = LF
indent_style = tab
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,18 +64,18 @@ script:
# Test the scripts in real mode
- bin/file-crlf --path=. --config=etc/awesome-ci.conf
- bin/file-empty --path=. --config=etc/awesome-ci.conf
- bin/file-trailing-newline --path=. --config=etc/awesome-ci.conf
- bin/file-trailing-single-newline --path=. --config=etc/awesome-ci.conf
- bin/file-trailing-space --path=. --config=etc/awesome-ci.conf
- bin/file-trailing-newline --path=. --ignore=".git,configure.in" --config=etc/awesome-ci.conf
- bin/file-trailing-single-newline --path=. --ignore=".git,configure.in" --config=etc/awesome-ci.conf
- bin/file-trailing-space --path=. --ignore=".git,configure.in" --config=etc/awesome-ci.conf
- bin/file-utf8 --path=. --config=etc/awesome-ci.conf
- bin/file-utf8-bom --path=. --config=etc/awesome-ci.conf
- bin/git-conflicts --path=. --config=etc/awesome-ci.conf
- bin/git-ignored --path=.
- bin/inline-css --path=. --config=etc/awesome-ci.conf
- bin/inline-js --path=. --config=etc/awesome-ci.conf
- bin/regex-grep --path=. --config=etc/awesome-ci.conf
- bin/regex-perl --path=. --config=etc/awesome-ci.conf
- bin/syntax-bash --path=. --config=etc/awesome-ci.conf
#- bin/regex-perl --path=. --config=etc/awesome-ci.conf
#- bin/syntax-bash --path=. --config=etc/awesome-ci.conf
- bin/syntax-css --path=. --config=etc/awesome-ci.conf
- bin/syntax-js --path=. --config=etc/awesome-ci.conf
- bin/syntax-json --path=. --config=etc/awesome-ci.conf
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,3 @@ install:
clean:

rm -f configure.in

1 change: 0 additions & 1 deletion dependencies/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@
Files in here must be placed in an executable path, such as `/usr/bin` or `/usr/local/bin` and must be executable.

Those files are needed, as the command itself could not have been placed inside `sh -c ""` in the corresponding check due to the system's limit of command line argument length.

7 changes: 3 additions & 4 deletions etc/awesome-ci.conf
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,19 @@ FILE_EMPTY_SIZE=0

# file-trailing-newline
FILE_TRAILING_NEWLINE_EXTENSION=""
FILE_TRAILING_NEWLINE_IGNORE=""
FILE_TRAILING_NEWLINE_IGNORE=".git"
FILE_TRAILING_NEWLINE_TEXT=1
FILE_TRAILING_NEWLINE_SIZE=1

# file-trailing-single-newline
FILE_TRAILING_SINGLE_NEWLINE_EXTENSION=""
FILE_TRAILING_SINGLE_NEWLINE_IGNORE=""
FILE_TRAILING_SINGLE_NEWLINE_IGNORE=".git"
FILE_TRAILING_SINGLE_NEWLINE_TEXT=1
FILE_TRAILING_SINGLE_NEWLINE_SIZE=1

# file-trailing-space
FILE_TRAILING_SPACE_EXTENSION=""
FILE_TRAILING_SPACE_IGNORE=""
FILE_TRAILING_SPACE_IGNORE=".git"
FILE_TRAILING_SPACE_TEXT=1
FILE_TRAILING_SPACE_SIZE=1

Expand Down Expand Up @@ -204,4 +204,3 @@ SYNTAX_SH_EXTENSION="sh,bash"
SYNTAX_SH_IGNORE=""
SYNTAX_SH_TEXT=1
SYNTAX_SH_SIZE=1

0 comments on commit 541c0c3

Please sign in to comment.