From 4915d2a90391bec1173d839092ca012c6979c6ad Mon Sep 17 00:00:00 2001 From: Lucien Greathouse Date: Tue, 28 Nov 2017 14:03:51 -0800 Subject: [PATCH] Fix indentation settings --- .editorconfig | 2 +- .travis.yml | 29 +++++++++++++++-------------- 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/.editorconfig b/.editorconfig index 5daae81..bd538e0 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,6 +1,6 @@ root = true -[*] +[*.lua] indent_style = tab end_of_line = lf charset = utf-8 diff --git a/.travis.yml b/.travis.yml index 3c4a945..27be9e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,27 +3,28 @@ language: python sudo: false branches: - only: - - master + only: + - master env: - - LUA="lua=5.1" + - LUA="lua=5.1" before_install: - - pip install hererocks - - hererocks lua_install -r^ --$LUA - - export PATH=$PATH:$PWD/lua_install/bin + - pip install hererocks + - hererocks lua_install -r^ --$LUA + - export PATH=$PATH:$PWD/lua_install/bin + - export LUA_PATH="$LUA_PATH;;./?/init.lua" install: - - luarocks install busted - - luarocks install luacov - - luarocks install luacov-coveralls - - luarocks install luacheck - - ./install-dependencies + - luarocks install busted + - luarocks install luacov + - luarocks install luacov-coveralls + - luarocks install luacheck + - ./install-dependencies script: - - luacheck lib - - lua -lluacov spec.lua + - luacheck lib + - lua -lluacov spec.lua after_success: - - luacov-coveralls -e $TRAVIS_BUILD_DIR/lua_install \ No newline at end of file + - luacov-coveralls -e $TRAVIS_BUILD_DIR/lua_install \ No newline at end of file