Browse Source

don't ignore karma.conf.js for linting

tags/v0.0.2
brian baldino 8 years ago
parent
commit
85b0d1cc3b
2 changed files with 8 additions and 5 deletions
  1. 0
    1
      .jshintignore
  2. 8
    4
      karma.conf.js

+ 0
- 1
.jshintignore View File

@@ -3,7 +3,6 @@ libs
3 3
 lib-jitsi-meet.js
4 4
 lib-jitsi-meet.min.js
5 5
 lib-jitsi-meet.js.map
6
-karma.conf.js
7 6
 doc
8 7
 
9 8
 

+ 8
- 4
karma.conf.js View File

@@ -26,7 +26,8 @@ module.exports = function(config) {
26 26
 
27 27
 
28 28
     // preprocess matching files before serving them to the browser
29
-    // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
29
+    // available preprocessors: 
30
+    //  https://npmjs.org/browse/keyword/karma-preprocessor
30 31
     preprocessors: {
31 32
         './JitsiMeetJS.js': ['webpack'],
32 33
         './**/*.spec.js': ['webpack']
@@ -48,16 +49,19 @@ module.exports = function(config) {
48 49
 
49 50
 
50 51
     // level of logging
51
-    // possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
52
+    // possible values: config.LOG_DISABLE || config.LOG_ERROR || 
53
+    //  config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
52 54
     logLevel: config.LOG_INFO,
53 55
 
54 56
 
55
-    // enable / disable watching file and executing tests whenever any file changes
57
+    // enable / disable watching file and executing tests whenever 
58
+    // any file changes
56 59
     autoWatch: false,
57 60
 
58 61
 
59 62
     // start these browsers
60
-    // available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
63
+    // available browser launchers: 
64
+    // https://npmjs.org/browse/keyword/karma-launcher
61 65
     browsers: ['Chrome'],
62 66
 
63 67
 

Loading…
Cancel
Save