Ride-The-Lightning-RTL/eslint.config.js
ShahanaFarooqui b6dbd23ae7
Lint Fix (#1408)
Lint bug Fix
2024-06-10 16:41:37 -07:00

11 lines
270 B
JavaScript

import { FlatCompat } from '@eslint/eslintrc';
import { dirname } from 'path';
import { fileURLToPath } from 'url';
const compat = new FlatCompat({
baseDirectory: dirname(fileURLToPath(import.meta.url))
});
export default [
...compat.extends('./.eslintrc.json')
];