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 / loops.js
Size: Mime:
module.exports = {
  rules: {
    'no-continue': 0,
    'no-loop-func': 2,

    // for loop fixing
    // @NOTE: toggle these between 0 & 2 for fixing or not
    // or use /* eslint-disable */ for immutables
    // 'no-for-each/no-for-each': 0,
    // 'no-for-each/no-for-in': 0,
    // 'no-for-each/no-for-of': 0,
  },
}