GitHub user 1ambda reopened a pull request:

    https://github.com/apache/zeppelin/pull/2252

    [ZEPPELIN-1940] lint rule set is NOT applied at all.

    ### What is this PR for?
    
    eslint ruleset is NOT applied at all due to invalid `.eslintrc`.
    
    This PR includes
    
    - fixes which are automatically done by eslint (`eslint --fix src`)
    - modification in `.eslintrc`, `package.json`
    - while removing eslint conf in `gruntfile.js`
    
    As a result of this PR, we can have more strict and modernized rulesets 
which can help us to prevent bugs.
    
    
    ### What type of PR is it?
    [Improvement]
    
    ### Todos
    * [x] - Setup rules
    * [x] - Remove grunt eslint config
    * [x] - Ignore useless rules
    * [x] - Fix code for applied rules
    
    ### What is the Jira issue?
    
    [ZEPPELIN-1940](https://issues.apache.org/jira/browse/ZEPPELIN-1940)
    
    ### How should this be tested?
    
    - `cd zeppelin-web`
    - `npm install` (or `yarn install` if you have yarn)
    - `npm run lint:once`
    
    ### Screenshots (if appropriate)
    
    ### Questions:
    * Does the licenses files need update? - NO
    * Is there breaking changes for older versions? - NO
    * Does this needs documentation? - NO
    
    


You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/1ambda/zeppelin 
ZEPPELIN-1940/apply-lint-rule-set

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/zeppelin/pull/2252.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

    This closes #2252
    
----
commit 4baadbb0aa8c312a0090ce3b00ae9aa5d57a24d0
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T00:40:25Z

    fix: Use eslint instead of grunt-eslint

commit 55669118889943a634fec4e2ca1d20f6de5dfdb0
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T00:40:51Z

    fix: Remove invalid visdev

commit 7840ca5fa7b38e9a28117dcc8bf12f7bf299b824
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:08:06Z

    fix: Set ignored, warn lint rules

commit 4b36afb2fa6e6ef2afd3388e2fcfd48754d731d2
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:19:51Z

    fix: ignore all rules

commit 8d5a3d9dfb677e98d06b0d46321142e6cfe5f68d
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:24:15Z

    fix: yoda
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/handsontable/handsonHelper.js
      160:49  error  Expected literal to be on the right side of ===  yoda
    ```

commit 3abfc7c3f3febe06d2ee11c80801005d32770d82
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:25:44Z

    fix: no-mixed-spaces-and-tabs
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-piechart.js
 (3/0)
      ✖  79:2  Mixed spaces and tabs  no-mixed-spaces-and-tabs
      ✖  80:2  Mixed spaces and tabs  no-mixed-spaces-and-tabs
      ✖  81:2  Mixed spaces and tabs  no-mixed-spaces-and-tabs
    ```

commit a5c7842d4f9d54697d81ef666d9e8991e3b5fd7a
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:27:18Z

    fix: semi-spacing
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/search/result-list.controller.js
 (1/0)
      ✖  20:26  Unexpected whitespace before semicolon  semi-spacing
    ```

commit 70cb63b742cb310f8ccaff56ad68cff9ec8dce40
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:31:05Z

    fix: no-extra-boolean-cast
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/app.js
 (1/0)
      ✖  40:12  Redundant double negation  no-extra-boolean-cast
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/jobmanager/jobs/job.controller.js
 (2/0)
      ✖  58:18  Redundant double negation  no-extra-boolean-cast
      ✖  90:18  Redundant double negation  no-extra-boolean-cast
    ```

commit d62af8d31b3d8315a4b03b02e5b349edcdbb11c3
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:35:15Z

    fix: object-property-newline
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
 (7/0)
      ✖   45:26  Object properties must go on a new line if they aren't all 
on the same line  object-property-newline
      ✖   46:24  Object properties must go on a new line if they aren't all 
on the same line  object-property-newline
      ✖   46:40  Object properties must go on a new line if they aren't all 
on the same line  object-property-newline
      ✖   71:38  Object properties must go on a new line if they aren't all 
on the same line  object-property-newline
      ✖   76:36  Object properties must go on a new line if they aren't all 
on the same line  object-property-newline
      ✖   89:36  Object properties must go on a new line if they aren't all 
on the same line  object-property-newline
      ✖  102:36  Object properties must go on a new line if they aren't all 
on the same line  object-property-newline
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-nvd3chart.js
 (0/2)
      ⚠  132:37  Unexpected mix of '&&' and '||'  no-mixed-operators
      ⚠  132:54  Unexpected mix of '&&' and '||'  no-mixed-operators
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/helium/helium-conf.js
 (3/0)
      ✖  34:19  Object properties must go on a new line if they aren't all on 
the same line  object-property-newline
      ✖  34:41  Object properties must go on a new line if they aren't all on 
the same line  object-property-newline
      ✖  35:21  Object properties must go on a new line if they aren't all on 
the same line  object-property-newline
    ```

commit cde8a2d2d24ec045ea7bf86385f1e73b0a8419e9
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:38:50Z

    fix: dot-location
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/configuration/configuration.controller.js
 (2/0)
      ✖  25:67  Expected dot to be on same line as property  dot-location
      ✖  28:7   Expected dot to be on same line as property  dot-location
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/credential/credential.controller.js
 (8/0)
      ✖   28:59  Expected dot to be on same line as property  dot-location
      ✖   34:7   Expected dot to be on same line as property  dot-location
      ✖   67:74  Expected dot to be on same line as property  dot-location
      ✖   78:7   Expected dot to be on same line as property  dot-location
      ✖  142:69  Expected dot to be on same line as property  dot-location
      ✖  147:7   Expected dot to be on same line as property  dot-location
      ✖  169:78  Expected dot to be on same line as property  dot-location
      ✖  174:13  Expected dot to be on same line as property  dot-location
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/helium/helium.controller.js
 (4/0)
      ✖  135:73  Expected dot to be on same line as property  dot-location
      ✖  139:13  Expected dot to be on same line as property  dot-location
      ✖  262:38  Expected dot to be on same line as property  dot-location
      ✖  266:13  Expected dot to be on same line as property  dot-location
    
    ```

commit 7aa4b1aae69c4899a748ba45ac511ac365ecd0b1
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:41:30Z

    fix: brace-style
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
 (1/0)
      ✖  67:39  Closing curly brace should be on the same line as opening 
curly brace or on the line after the previous block  brace-style
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-scatterchart.js
 (1/0)
      ✖  228:66  Closing curly brace should be on the same line as opening 
curly brace or on the line after the previous block  brace-style
    ```

commit 1de9a8d2f87345175ae963787df8490766c277f2
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:43:24Z

    fix: one-var
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-scatterchart.js
 (1/0)
      ✖  210:7  Split initialized 'var' declarations into multiple statements 
 one-var
    ```

commit 131c901d47f030d8dd349b8fb555a98f97a788b4
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:45:06Z

    fix: no-multi-spaces
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/notebook/paragraph/result/result.controller.js
 (4/0)
      ✖  403:21  Multiple spaces found before 'elem'  no-multi-spaces
      ✖  415:21  Multiple spaces found before 'elem'  no-multi-spaces
      ✖  437:21  Multiple spaces found before 'elem'  no-multi-spaces
      ✖  715:28  Multiple spaces found before '('     no-multi-spaces
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/tabledata/pivot.js
 (1/0)
      ✖  247:49  Multiple spaces found before 'p'  no-multi-spaces
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-scatterchart.js
 (1/0)
      ✖  271:42  Multiple spaces found before '',''  no-multi-spaces
    ```

commit b094fff553f409f830c848bc89531bf199e9abbd
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:46:51Z

    fix: no-empty
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-nvd3chart.js
 (1/2)
      ✖   52:25  Empty block statement            no-empty
    ```

commit 5948d97aa92fd06095485c79211a13d6530940f9
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:48:21Z

    fix: space-in-parens
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-scatterchart.js
 (7/0)
      ✖  212:10  There should be no spaces inside this paren  space-in-parens
      ✖  212:18  There should be no spaces inside this paren  space-in-parens
      ✖  215:10  There should be no spaces inside this paren  space-in-parens
      ✖  215:18  There should be no spaces inside this paren  space-in-parens
      ✖  232:47  There should be no spaces inside this paren  space-in-parens
      ✖  233:10  There should be no spaces inside this paren  space-in-parens
      ✖  234:74  There should be no spaces inside this paren  space-in-parens
    ```

commit a896442c2498c2d20e7fcdb6875cbe2134fcd03e
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:49:31Z

    fix: keyword-spacing
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/notebook/paragraph/result/result.controller.js
 (1/0)
      ✖  335:11  Expected space(s) after "for"  keyword-spacing
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/spell/spell-result.js
 (1/0)
      ✖  90:5  Expected space(s) after "for"  keyword-spacing
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-scatterchart.js
 (1/0)
      ✖  236:9  Expected space(s) after "else"  keyword-spacing
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/helium/helium-conf.js
 (2/0)
      ✖  28:3  Expected space(s) after "for"    keyword-spacing
      ✖  80:5  Expected space(s) after "catch"  keyword-spacing
    
    ```

commit 021f9e761c2f2bd10c5e77ddca8910a9ed4ccb8c
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:52:51Z

    fix: space-before-blocks
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-scatterchart.js
 (6/0)
      ✖   81:30  Missing space before opening brace  space-before-blocks
      ✖  212:17  Missing space before opening brace  space-before-blocks
      ✖  215:17  Missing space before opening brace  space-before-blocks
      ✖  228:33  Missing space before opening brace  space-before-blocks
      ✖  232:47  Missing space before opening brace  space-before-blocks
      ✖  234:74  Missing space before opening brace  space-before-blocks
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/navbar/navbar.controller.js
 (1/0)
      ✖  84:25  Missing space before opening brace  space-before-blocks
    ```

commit 925dc7be6b1d7b5a5a1f732691deac6a3fa40d54
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:55:33Z

    fix: block-spacing
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/search/result-list.controller.js
 (2/0)
      ✖  148:42  Requires a space after '{'   block-spacing
      ✖  148:68  Requires a space before '}'  block-spacing
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-areachart.js
 (4/0)
      ✖  61:40  Requires a space after '{'   block-spacing
      ✖  61:86  Requires a space before '}'  block-spacing
      ✖  62:40  Requires a space after '{'   block-spacing
      ✖  62:72  Requires a space before '}'  block-spacing
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-barchart.js
 (2/0)
      ✖  61:40  Requires a space after '{'   block-spacing
      ✖  61:72  Requires a space before '}'  block-spacing
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-linechart.js
 (2/0)
      ✖  71:40  Requires a space after '{'   block-spacing
      ✖  71:86  Requires a space before '}'  block-spacing
    ```

commit 9150539175fabccb8bc0242ee14bc0ce82cd200d
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:56:55Z

    fix: operator-linebreak
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/helium/helium.controller.js
 (1/0)
      ✖  324:78  '?' should be placed at the beginning of the line  
operator-linebreak
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
 (1/0)
      ✖  1263:71  '?' should be placed at the beginning of the line  
operator-linebreak
    ```

commit d65c47bb428ae24b303e4768474cad644dbfc1dd
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:58:19Z

    fix: comma-spacing
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/tabledata/pivot.js
 (2/0)
      ✖  151:29  A space is required after ','  comma-spacing
      ✖  156:29  A space is required after ','  comma-spacing
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-nvd3chart.js
 (1/2)
      ✖   96:35  A space is required after ','    comma-spacing
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-scatterchart.js
 (2/0)
      ✖  228:30  A space is required after ','  comma-spacing
      ✖  235:32  A space is required after ','  comma-spacing
    ```

commit ca943418262ff55bbe6d3fb4640d15f7ab9c3775
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T15:59:45Z

    fix: spaced-comment
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/navbar/navbar.controller.js
 (2/0)
      ✖  91:5  Expected space or tab after '//' in comment  spaced-comment
      ✖  94:7  Expected space or tab after '//' in comment  spaced-comment
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/ngenter/ngenter.directive.test.js
 (2/0)
      ✖  19:3  Expected space or tab after '//' in comment   spaced-comment
      ✖  20:3  Expected space or tab before '*/' in comment  spaced-comment
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/noteName-create/notename.controller.js
 (1/0)
      ✖  102:5  Expected space or tab after '//' in comment  spaced-comment
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/noteName-import/notenameImport.controller.js
 (1/0)
      ✖  122:7  Expected space or tab after '//' in comment  spaced-comment
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/saveAs/saveAs.service.js
 (2/0)
      ✖  34:7  Expected space or tab after '//' in comment  spaced-comment
      ✖  35:7  Expected space or tab after '//' in comment  spaced-comment
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/searchService/search.service.js
 (1/0)
      ✖  23:20  Expected space or tab after '//' in comment  spaced-comment
    ```

commit 3a6626f0d274d2bb767c42256fb5d5ba77addf16
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T16:00:53Z

    fix: no-trailing-spaces
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/helium/helium.controller.js
 (3/0)
      ✖   44:1  Trailing spaces not allowed  no-trailing-spaces
      ✖   48:1  Trailing spaces not allowed  no-trailing-spaces
      ✖  111:1  Trailing spaces not allowed  no-trailing-spaces
    ```

commit 40125e95c8a6a4979b23e1601bc30c003f6cc9cf
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T16:01:52Z

    fix: no-multiple-empty-lines
    
    ```
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/resizable/resizable.directive.js
 (1/0)
      ✖  70:1  Too many blank lines at the end of file. Max of 0 allowed  
no-multiple-empty-lines
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/saveAs/saveAs.service.js
 (1/0)
      ✖  52:1  Too many blank lines at the end of file. Max of 0 allowed  
no-multiple-empty-lines
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/searchService/search.service.js
 (1/0)
      ✖  34:1  Too many blank lines at the end of file. Max of 0 allowed  
no-multiple-empty-lines
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/websocketEvents/websocketEvents.factory.js
 (1/0)
      ✖  196:1  Too many blank lines at the end of file. Max of 0 allowed  
no-multiple-empty-lines
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/websocketEvents/websocketMsg.service.js
 (1/0)
      ✖  341:1  Too many blank lines at the end of file. Max of 0 allowed  
no-multiple-empty-lines
    ```

commit 59c3996f82e158a62e255e17bea9157ad475c472
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T16:09:08Z

    fix: indent
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-scatterchart.js
 (7/0)
      ✖   71:7   Expected indentation of 4 spaces but found 6   indent
      ✖   75:7   Expected indentation of 4 spaces but found 6   indent
      ✖   82:6   Expected indentation of 4 spaces but found 5   indent
      ✖   83:7   Expected indentation of 7 spaces but found 6   indent
      ✖   85:7   Expected indentation of 7 spaces but found 6   indent
      ✖   87:4   Expected indentation of 2 spaces but found 3   indent
      ✖  231:12  Expected indentation of 8 spaces but found 11  indent
    ```

commit 6e44e96de833bb8cdcdfb4ee182cf3cd0bc406f1
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T16:13:36Z

    fix: space-before-function-paren
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/websocketEvents/websocketMsg.service.js
 (48/0)
      ✖   17:25  Missing space before function parentheses  
space-before-function-paren
      ✖   22:26  Missing space before function parentheses  
space-before-function-paren
      ✖   26:29  Missing space before function parentheses  
space-before-function-paren
      ✖   36:30  Missing space before function parentheses  
space-before-function-paren
      ✖   40:32  Missing space before function parentheses  
space-before-function-paren
      ✖   44:26  Missing space before function parentheses  
space-before-function-paren
      ✖   48:28  Missing space before function parentheses  
space-before-function-paren
      ✖   52:25  Missing space before function parentheses  
space-before-function-paren
      ✖   56:25  Missing space before function parentheses  
space-before-function-paren
      ✖   60:27  Missing space before function parentheses  
space-before-function-paren
      ✖   64:25  Missing space before function parentheses  
space-before-function-paren
      ✖   68:24  Missing space before function parentheses  
space-before-function-paren
    ```

commit 3c91566c7c540bdbba4c97290bd8e3ff0f4f2d82
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T16:15:41Z

    fix: ignore object-curly-spacing

commit bfd79849938c385aa209325bd41965ecd81ab8e0
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T16:16:50Z

    fix: ignore arrow-parens

commit eac6b438c261bdb94de96a2c42d8428776f4f104
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T16:17:52Z

    fix: no-extra-semi
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-table.js
 (5/0)
      ✖  28:4  Unnecessary semicolon  no-extra-semi
      ✖  32:4  Unnecessary semicolon  no-extra-semi
      ✖  51:4  Unnecessary semicolon  no-extra-semi
      ✖  57:4  Unnecessary semicolon  no-extra-semi
      ✖  61:4  Unnecessary semicolon  no-extra-semi
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/visualization.js
 (14/0)
      ✖   25:4  Unnecessary semicolon  no-extra-semi
      ✖   32:4  Unnecessary semicolon  no-extra-semi
      ✖   39:4  Unnecessary semicolon  no-extra-semi
      ✖   46:4  Unnecessary semicolon  no-extra-semi
      ✖   54:4  Unnecessary semicolon  no-extra-semi
      ✖   64:4  Unnecessary semicolon  no-extra-semi
      ✖   75:4  Unnecessary semicolon  no-extra-semi
      ✖   82:4  Unnecessary semicolon  no-extra-semi
      ✖   89:4  Unnecessary semicolon  no-extra-semi
      ✖  100:4  Unnecessary semicolon  no-extra-semi
      ✖  112:4  Unnecessary semicolon  no-extra-semi
      ✖  119:4  Unnecessary semicolon  no-extra-semi
      ✖  163:4  Unnecessary semicolon  no-extra-semi
      ✖  171:2  Unnecessary semicolon  no-extra-semi
    ```

commit 5d19c6f5f2b2531d7d9db61f7fd574be445226cd
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T16:19:16Z

    fix: space-infix-ops
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/app/visualization/builtins/visualization-scatterchart.js
 (5/0)
      ✖   70:54  Infix operators must be spaced  space-infix-ops
      ✖   74:54  Infix operators must be spaced  space-infix-ops
      ✖  229:52  Infix operators must be spaced  space-infix-ops
      ✖  230:53  Infix operators must be spaced  space-infix-ops
      ✖  231:27  Infix operators must be spaced  space-infix-ops
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/helium/helium.service.js
 (1/0)
      ✖  108:33  Infix operators must be spaced  space-infix-ops
    ```

commit a3f126467600e48bfcdf35fc1edae6e854d619a0
Author: 1ambda <1am...@gmail.com>
Date:   2017-04-14T16:21:52Z

    fix: padded-blocks
    
    ```
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/noteListDataFactory/noteList.datafactory.test.js
 (2/0)
      ✖   1:43  Block must not be padded by blank lines  padded-blocks
      ✖  77:1   Block must not be padded by blank lines  padded-blocks
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/noteName-create/notename.controller.js
 (1/0)
      ✖  105:1  Block must not be padded by blank lines  padded-blocks
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/noteName-create/notename.controller.test.js
 (1/0)
      ✖  40:1  Block must not be padded by blank lines  padded-blocks
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/noteName-import/notenameImport.controller.js
 (1/0)
      ✖  114:5  Block must not be padded by blank lines  padded-blocks
    
    
/Users/1ambda/github/apache/apache-zeppelin/zeppelin-master/zeppelin-web/src/components/websocketEvents/websocketEvents.factory.js
 (1/0)
      ✖  110:5  Block must not be padded by blank lines  padded-blocks
    ```

----


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to