Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjhnns <johannes.ewald@peerigon.com>2013-10-01 02:27:21 +0400
committerjhnns <johannes.ewald@peerigon.com>2013-10-01 02:27:21 +0400
commit48a103c8c99391870088532d7e0ad2219e05c949 (patch)
tree30b2547bb768e6a52e121c5d77ce3ea7b9926dab
parenta3c91fd7bbdcdf5b2edce66bb1431b50b77b963f (diff)
- added jshint options
- added jshintignore for files that are ok, but produce un-ignorable errors #19
-rw-r--r--.jshintignore5
-rw-r--r--.jshintrc9
2 files changed, 11 insertions, 3 deletions
diff --git a/.jshintignore b/.jshintignore
new file mode 100644
index 0000000..c53ca3f
--- /dev/null
+++ b/.jshintignore
@@ -0,0 +1,5 @@
+lib/__get__.js
+lib/__set__.js
+test/testModules/strictModule.js
+test/testModules/someOtherModule.js
+node_modules \ No newline at end of file
diff --git a/.jshintrc b/.jshintrc
index c1f2978..df20826 100644
--- a/.jshintrc
+++ b/.jshintrc
@@ -1,3 +1,6 @@
-{
- "node": true
-}
+{
+ "browser": true,
+ "node": true,
+ "expr": true,
+ "globals": ["describe", "it", "before", "after", "beforeEach", "afterEach"]
+} \ No newline at end of file