Revision 97c7f1d23b6828e1bfe7cc82a0d2bd0a6a153adb authored by Maria Khrustaleva on 15 September 2023, 10:26:36 UTC, committed by GitHub on 15 September 2023, 10:26:36 UTC
Resolve https://github.com/opencv/cvat/issues/6837
Resolve https://github.com/opencv/cvat/issues/6836
1 parent 76844a6
Raw File
.eslintrc.js
// Copyright (C) 2021-2022 Intel Corporation
//
// SPDX-License-Identifier: MIT

module.exports = {
    parserOptions: {
        project: './tsconfig.json',
        tsconfigRootDir: __dirname,
    },
    ignorePatterns: [
        '.eslintrc.js',
        'webpack.config.js',
        'node_modules/**',
        'dist/**',
    ],
};
back to top