This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch asf-staging in repository https://gitbox.apache.org/repos/asf/libcloud-site.git
commit 98549a05450c92262312cca61771aac81f95e513 Author: Tomaz Muraus <[email protected]> AuthorDate: Mon Mar 28 22:36:26 2022 +0200 Add missing jshint config. --- .jshintrc | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 0000000..22401b3 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,22 @@ +{ + "node": true, + "browser": true, + "esnext": true, + "bitwise": true, + "camelcase": false, + "curly": true, + "eqeqeq": true, + "immed": true, + "indent": 2, + "latedef": true, + "newcap": true, + "noarg": true, + "quotmark": "single", + "regexp": true, + "undef": true, + "unused": false, + "strict": false, + "trailing": true, + "smarttabs": true, + "maxlen": 80 +}
