cvat/cvat-data/.eslintrc.cjs

17 lines
345 B
JavaScript
Raw Permalink Normal View History

2025-09-16 01:19:40 +00:00
// Copyright (C) 2020-2022 Intel Corporation
// Copyright (C) CVAT.ai Corporation
//
// SPDX-License-Identifier: MIT
module.exports = {
ignorePatterns: [
'src/ts/3rdparty/**',
'node_modules/**',
'dist/**',
],
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: __dirname,
},
};