This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ESLegant/eslint.config.js
Guz013 53e44d5126 feat: rewrite configuration
Rewrote the configuration and logic of the defineConfig function
to better resemble a standard ESLint configuration.
Also removing the necessity of a function to detect tsconfig/jsconfig
files.

Fixing ESLint flat-config by default #3.
2023-07-21 16:54:29 -03:00

7 lines
148 B
JavaScript

import { configs, defineConfig, presets } from '@eslit/config';
export default defineConfig([
...presets.default,
configs.environments.node,
]);