mirror of
https://github.com/VisActor/VChart
synced 2024-11-22 17:26:19 +00:00
19 lines
451 B
JavaScript
19 lines
451 B
JavaScript
require('@rushstack/eslint-patch/modern-module-resolution');
|
|
|
|
module.exports = {
|
|
extends: ['@internal/eslint-config/profile/react'],
|
|
parserOptions: { tsconfigRootDir: __dirname, project: './tsconfig.eslint.json' },
|
|
// ignorePatterns: [],
|
|
env: {
|
|
browser: true,
|
|
es2021: true,
|
|
node: true,
|
|
jest: true
|
|
},
|
|
rules: {
|
|
'@typescript-eslint/no-unused-vars': 'warn',
|
|
'react/display-name': 'off',
|
|
'no-console': 'warn'
|
|
}
|
|
};
|