Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « new « lints « ci « projects « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02bfee9810fcda58faf268cb749ac661ca6ad47d (plain)
1
2
3
4
5
6
7
8
9
10
11
import CILintEditor from '../ci_lint_editor';
import initCILint from '~/ci_lint/index';

document.addEventListener('DOMContentLoaded', () => {
  if (gon?.features?.ciLintVue) {
    initCILint();
  } else {
    // eslint-disable-next-line no-new
    new CILintEditor();
  }
});