summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2015-04-28 12:26:41 +0200
committerPeter Wu <peter@lekensteyn.nl>2015-04-28 12:27:10 +0200
commitb6c6c7075c4745466faabe8e15d4d18f54551bbc (patch)
tree885b1203728a64b2dbc2f5adb9a0cdaf4e0269f9
parent8a7ddab9863cf8c2b503408f36e0aa55851bf680 (diff)
downloadn-b6c6c7075c4745466faabe8e15d4d18f54551bbc.tar.gz
gitignore and jshintrc
-rw-r--r--.gitignore3
-rw-r--r--.jshintrc11
2 files changed, 14 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..04260be
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+node_modules/
+
+.*.sw?
diff --git a/.jshintrc b/.jshintrc
new file mode 100644
index 0000000..a27080d
--- /dev/null
+++ b/.jshintrc
@@ -0,0 +1,11 @@
+{
+ "globals": {
+ "require": true
+ },
+ "unused": "vars",
+ "strict": true,
+ "globalstrict": true,
+ "undef": true,
+ "browser": false,
+ "devel": true
+}