module.exports = function()

in grunttasks/l10n-lint.js [5:18]


module.exports = function (grunt) {
  'use strict';

  grunt.config('l10n-lint', {
    dist: {
      options: {
        untranslated: ['locale/templates/**/*.pot']
      },
      files: [{
        src: 'locale/**/*.po'
      }]
    }
  });
};