Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/eslint-config / src / rules / comments.js
Size: Mime:
module.exports = {
  rules: {
    // https://github.com/airbnb/javascript#comments--spaces
    // http://eslint.org/docs/rules/spaced-comment
    // 'spaced-comment': ['error', 'always'],
    // @NOTE reasoning is we want //---- as separators
    // { 'exceptions': ['-+'] }
    'spaced-comment': ['error', 'always'],
    // https://eslint.org/docs/rules/line-comment-position
    'line-comment-position': ['error', { position: 'above' }],
    // 'spaced-comment': ['OFF'],
    'lines-around-comment': ['OFF'],
  },
}