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

conditionally_ignore_ee.js « eslint-config « tooling - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e5e3c8013f432776353c1b932d18e316ec61fd2c (plain)
1
2
3
4
5
/* eslint-disable import/no-commonjs */

const IS_EE = require('../../config/helpers/is_ee_env');

module.exports = IS_EE ? {} : { ignorePatterns: ['ee/**/*.*'] };