From f78b3096483b6bae2c3bf1e64de68e0549c935c2 Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Tue, 12 Jul 2022 02:01:42 +0200 Subject: [PATCH] Add editorconfig file --- .editorconfig | 13 +++++++++++++ flake.nix | 5 +++++ 2 files changed, 18 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..7610ea3 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# https://editorconfig.org +root = true + +[*] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true + +[*.lock] +insert_final_newline = false diff --git a/flake.nix b/flake.nix index fcff168..cc27375 100644 --- a/flake.nix +++ b/flake.nix @@ -12,6 +12,11 @@ path = ./go1.18; description = "Go 1.18 development environment"; }; + + rails = { + path = ./ruby-on-rails; + description = "Ruby on Rails development environment"; + }; }; }; }