I am currently using Babel (a Javascript translator) which allows me to use future syntax. I use decorator functionality ( https://github.com/wycats/javascript-decorators ). However, when I start the analysis of this code, SonarQube produces the following error:
[09:19:43] 09: 19: 43.693 ERROR. Unable to parse file: /...../ my-form.js 09: 19: 43.693 ERROR - Parse error in row 10 column 1:
1: import {View, Component, Inject, NgScope} from 'app/app';
...
9:
10: @Component({
^
11: selector: 'my-form'
12: })
13: @View({
14: template: myTemplate
15: })
Will the Javascript plugin be closed soon (or at least skipped by the parser, but it allows you to continue processing the file)? Is there a way to write a JIRA problem for this?