mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2025-12-19 10:07:46 -05:00
13 lines
306 B
JavaScript
13 lines
306 B
JavaScript
import { configTypeChecked } from '@freecodecamp/eslint-config/base';
|
|
|
|
export default [
|
|
...configTypeChecked,
|
|
{
|
|
rules: {
|
|
'@typescript-eslint/no-unsafe-member-access': 'off',
|
|
'@typescript-eslint/no-unsafe-call': 'off',
|
|
'@typescript-eslint/no-unsafe-assignment': 'off'
|
|
}
|
|
}
|
|
];
|