From 4388aee70d1a2a5ba54ea0a2d3e5ec315190759a Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Mon, 22 Jan 2018 17:44:51 -0800 Subject: [PATCH] add dot files --- .gitattributes | 6 ++++++ .gitignore | 10 ++++++++++ .jshintrc | 8 ++++++++ 3 files changed, 24 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .jshintrc diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..c308ec2d7 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +# following files are skipped when exporting using git archive +test export-ignore +docs export-ignore +.gitattributes export-ignore +.gitignore export-ignore + diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..99a44158f --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +node_modules/ +coverage/ +webadmin/dist/ +setup/splash/website/ +installer/src/certs/server.key + +# vim swap files +*.swp + + diff --git a/.jshintrc b/.jshintrc new file mode 100644 index 000000000..30d7ea440 --- /dev/null +++ b/.jshintrc @@ -0,0 +1,8 @@ +{ + "node": true, + "browser": true, + "unused": true, + "globalstrict": true, + "predef": [ "angular", "$" ], + "esnext": true +}