iwarapter / sonar-puppet

SonarQube plugin for Puppet code.
Other
26 stars 10 forks source link

FP on rule TrailingCommas when line is ending with ; #269

Closed racodond closed 8 years ago

racodond commented 8 years ago

Should not raise an issue when last parameter is ending with ; as on the example below:

class abc {
  sonarqube::plugin {
    'sonar-css-plugin':
      version => $css;
   'sonar-java-plugin':
      abc => $abc,
      version => $java;
  }
}

because the following is not really nice

version => $java,;