lab.nexedi.com will be down from Thursday, 20 March 2025, 07:30:00 UTC for a duration of approximately 2 hours

  • Brandon Labuschagne's avatar
    Disable unnecessary ESLint i18n offences · c0eda684
    Brandon Labuschagne authored
    Unnecessary offences include false positives as well as flagged
    errors which have follow up issues in order to be addressed.
    
    Not all issues have been addressed before this being submitted
    in the spirit of results and iteration.
    c0eda684
constants.js 558 Bytes
/* eslint-disable @gitlab/i18n/no-non-i18n-strings */
export const LICENSE_APPROVAL_STATUS = {
  APPROVED: 'approved',
  BLACKLISTED: 'blacklisted',
};

export const KNOWN_LICENSES = [
  'AGPL-1.0',
  'AGPL-3.0',
  'Apache 2.0',
  'Artistic-2.0',
  'BSD',
  'CC0 1.0 Universal',
  'CDDL-1.0',
  'CDDL-1.1',
  'EPL-1.0',
  'EPL-2.0',
  'GPLv2',
  'GPLv3',
  'ISC',
  'LGPL',
  'LGPL-2.1',
  'MIT',
  'Mozilla Public License 2.0',
  'MS-PL',
  'MS-RL',
  'New BSD',
  'Python Software Foundation License',
  'ruby',
  'Simplified BSD',
  'WTFPL',
  'Zlib',
];