From 57f7f72ce6173c2a344aa2571b2a02d1bf5f920b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Guti=C3=A9rrez?= Date: Mon, 7 Jan 2019 17:31:13 +0100 Subject: [PATCH 1/2] added information about installation of ganache-cli #66 --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 07a0eef..e0335e5 100644 --- a/README.md +++ b/README.md @@ -109,6 +109,8 @@ npm run test:cover This will start a watcher for changes of the code. +`ganache-cli` can be installed following [this instructions](https://github.com/trufflesuite/ganache-cli#installation). + ### Production build ```bash @@ -140,4 +142,4 @@ Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and -limitations under the License. +limitations under the License. \ No newline at end of file From 537edad8b933912b867ca61f0b477705df97a2de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Guti=C3=A9rrez?= Date: Mon, 7 Jan 2019 17:32:08 +0100 Subject: [PATCH 2/2] included .editorconfig #66 --- .editorconfig | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..61ae15b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,15 @@ +# https://editorconfig.org + +root = true + +[*] +charset = utf-8 +indent_style = space +indent_size = 4 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.md] +insert_final_newline = false +trim_trailing_whitespace = false