diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 000000000..dddb23dbe --- /dev/null +++ b/.editorconfig @@ -0,0 +1,6 @@ +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 5cba9feff..7fb7fdf16 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -58,8 +58,8 @@ jobs: run: | mkdir -p target/docs/bindings/matrix-sdk-crypto-nodejs/ mkdir -p target/docs/bindings/matrix-sdk-crypto-js/ - mv bindings/matrix-sdk-crypto-nodejs/docs/* target/docs/bindings/matrix-sdk-crypto-nodejs/ - mv bindings/matrix-sdk-crypto-js/docs/* target/docs/bindings/matrix-sdk-crypto-js/ + mv -f bindings/matrix-sdk-crypto-nodejs/docs/* target/docs/bindings/matrix-sdk-crypto-nodejs/ + mv -f bindings/matrix-sdk-crypto-js/docs/* target/docs/bindings/matrix-sdk-crypto-js/ - name: Deploy documentation if: github.event_name == 'push' && github.ref == 'refs/heads/main'