mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-29 08:00:43 -04:00
13 lines
526 B
JavaScript
13 lines
526 B
JavaScript
import { configTypeChecked } from '@freecodecamp/eslint-config/base';
|
|
import { defineConfig, globalIgnores } from 'eslint/config';
|
|
|
|
export default defineConfig(globalIgnores(['./playwright']), {
|
|
extends: [configTypeChecked],
|
|
rules: {
|
|
'@typescript-eslint/no-unsafe-member-access': 'off',
|
|
'@typescript-eslint/no-unsafe-call': 'off',
|
|
'@typescript-eslint/no-unsafe-assignment': 'off',
|
|
'turbo/no-undeclared-env-vars': 'off' // If/when we make e2e tests into a turbo task, we can enable this rule again.
|
|
}
|
|
});
|