shtola

ssg in rust
git clone https://tilde.team/~marisa/repo/shtola.git
Log | Files | Refs | LICENSE

commit e081b379cc3303f8f22258e06bcd1c64abd4c966
parent 9be04b851be76ecf6314ae6975fd6f41fea5f4be
Author: marisa <mokou@posteo.de>
Date:   Sat,  9 Nov 2019 18:00:55 +0100

Fix YAML indentation

Diffstat:
M.drone.yml | 18+++++++++---------
M.editorconfig | 4++++
2 files changed, 13 insertions(+), 9 deletions(-)

diff --git a/.drone.yml b/.drone.yml @@ -4,12 +4,12 @@ type: docker name: default steps: - - name: test - image: rust:alpine - commands: - - cargo install cargo-tarpaulin - - cargo test - - cargo tarpaulin --coveralls ${COVERALLS} - environment: - COVERALLS: - from_secret: coveralls_id + - name: test + image: rust:alpine + commands: + - cargo install cargo-tarpaulin + - cargo test + - cargo tarpaulin --coveralls ${COVERALLS} + environment: + COVERALLS: + from_secret: coveralls_id diff --git a/.editorconfig b/.editorconfig @@ -10,3 +10,7 @@ insert_final_newline = true indent_style = tab charset = utf-8 tab_width = 2 + +[*.yml] +indent_style = space +indent_size = 2