From 5f0cc74e89de9d95f0d90216a742ada35411dd39 Mon Sep 17 00:00:00 2001 From: shockey Date: Sun, 19 Mar 2017 17:31:49 -0700 Subject: [PATCH 1/2] Update index.js Disabling the YAML config plugin, for now. --- src/standalone/index.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/standalone/index.js b/src/standalone/index.js index 2f731b2e..fbf7b19f 100644 --- a/src/standalone/index.js +++ b/src/standalone/index.js @@ -2,13 +2,11 @@ import StandaloneLayout from './layout' import '../style/main.scss' import TopbarPlugin from "plugins/topbar" -import ConfigsPlugin from "plugins/configs" // the Standalone preset let preset = [ TopbarPlugin, - ConfigsPlugin, () => { return { components: { StandaloneLayout } From 3951c87ec0ea663407dafc037148b028b992a339 Mon Sep 17 00:00:00 2001 From: shockey Date: Sun, 19 Mar 2017 17:34:09 -0700 Subject: [PATCH 2/2] Create .editorconfig --- .editorconfig | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..2d959463 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +end_of_line = lf +indent_style = space +indent_size = 2 +trim_trailing_whitespace = true +insert_final_newline = true +[*.md] +trim_trailing_whitespace = false