function validateValue()

in src/rule-no-future-added-value.js [11:18]


  function validateValue(node) {
    context.report(
      node,
      "Do not use `'%future added value'`. It represents any potential " +
        'value that the server might return in the future that the code ' +
        'should handle.'
    );
  }