eslint config/style file for json validation

Check-in the global eslint json validator configuration
file. This configuration enables eslint plugins that
supports comments in json files during validation in CI.

This can be improved in future, for javascript files & json
formatting.

Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
Change-Id: I22c265695a28cba150cb10691c0914152356d401
diff --git a/style/json/.eslintrc.json b/style/json/.eslintrc.json
new file mode 100644
index 0000000..abd7853
--- /dev/null
+++ b/style/json/.eslintrc.json
@@ -0,0 +1,3 @@
+{
+    "extends": ["plugin:json/recommended-with-comments"]
+}