From bce798864a60c432f64a3e4afea45748e94052f7 Mon Sep 17 00:00:00 2001 From: palak Date: Fri, 12 May 2017 14:25:53 +0530 Subject: [PATCH] modify --- .editorconfig | 13 +++++++++++++ .eslintignore | 1 + .eslintrc | 3 +++ .yo-rc.json | 3 +++ 4 files changed, 20 insertions(+) create mode 100644 .editorconfig create mode 100644 .eslintignore create mode 100644 .eslintrc create mode 100644 .yo-rc.json diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..3ee22e5 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,13 @@ +# EditorConfig helps developers define and maintain consistent +# coding styles between different editors and IDEs +# http://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 diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..44f3970 --- /dev/null +++ b/.eslintignore @@ -0,0 +1 @@ +/client/ \ No newline at end of file diff --git a/.eslintrc b/.eslintrc new file mode 100644 index 0000000..a6e5297 --- /dev/null +++ b/.eslintrc @@ -0,0 +1,3 @@ +{ + "extends": "loopback" +} \ No newline at end of file diff --git a/.yo-rc.json b/.yo-rc.json new file mode 100644 index 0000000..02f3fc1 --- /dev/null +++ b/.yo-rc.json @@ -0,0 +1,3 @@ +{ + "generator-loopback": {} +} \ No newline at end of file -- 2.0.0