Revision a7fc12d04780adf9cf2ae70e3ba307f06c41c3ed authored by Andrey Zhavoronkov on 05 April 2023, 08:47:10 UTC, committed by GitHub on 05 April 2023, 08:47:10 UTC
1 parent 2709802
Raw File
.eslintrc.js
// Copyright (C) 2020-2022 Intel Corporation
//
// SPDX-License-Identifier: MIT

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