44 lines
1.5 KiB
JavaScript
44 lines
1.5 KiB
JavaScript
|
|
// Copyright (C) 2020-2022 Intel Corporation
|
||
|
|
// Copyright (C) CVAT.ai Corporation
|
||
|
|
//
|
||
|
|
// SPDX-License-Identifier: MIT
|
||
|
|
|
||
|
|
const globalConfig = require('../.eslintrc.cjs');
|
||
|
|
const { join } = require('path');
|
||
|
|
|
||
|
|
module.exports = {
|
||
|
|
parserOptions: {
|
||
|
|
project: './tsconfig.json',
|
||
|
|
tsconfigRootDir: __dirname,
|
||
|
|
},
|
||
|
|
ignorePatterns: [
|
||
|
|
'.eslintrc.cjs',
|
||
|
|
'webpack.config.js',
|
||
|
|
'src/assets/opencv*.js',
|
||
|
|
'node_modules/**',
|
||
|
|
'dist/**',
|
||
|
|
],
|
||
|
|
extends: ['airbnb', 'airbnb-typescript'],
|
||
|
|
rules: {
|
||
|
|
...globalConfig.rules, // need to import rules again because they've been redefined by "airbnb-typescript"
|
||
|
|
|
||
|
|
'jsx-a11y/control-has-associated-label': 0, // new rule, conflicts with existing code
|
||
|
|
'react/no-unused-class-component-methods': 0, // new rule, gives often false positives
|
||
|
|
'react/no-unstable-nested-components': 0, // new rule, we have a lot of code conflicting with this
|
||
|
|
'react/no-did-update-set-state': 0, // https://github.com/airbnb/javascript/issues/1875
|
||
|
|
'react/require-default-props': 'off',
|
||
|
|
'react/no-unused-prop-types': 'off',
|
||
|
|
'react/no-array-index-key': 'off',
|
||
|
|
'react/prop-types': 'off',
|
||
|
|
'react/jsx-props-no-spreading': 0,
|
||
|
|
'jsx-quotes': ['error', 'prefer-single'],
|
||
|
|
'react/static-property-placement': ['warn', 'static public field'],
|
||
|
|
'import/no-extraneous-dependencies': [
|
||
|
|
'error',
|
||
|
|
{
|
||
|
|
packageDir: [__dirname, join(__dirname, '../')]
|
||
|
|
},
|
||
|
|
],
|
||
|
|
},
|
||
|
|
};
|