mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2024-11-19 01:40:29 +01:00
11 lines
270 B
JavaScript
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')
|
||
|
];
|