mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-09 13:06:52 +03:00
19 lines
369 B
JavaScript
19 lines
369 B
JavaScript
// eslint.config.js
|
|
import js from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
import prettier from 'eslint-config-prettier';
|
|
|
|
export default [
|
|
js.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
{
|
|
ignores: ['dist', 'node_modules'],
|
|
},
|
|
{
|
|
rules: {
|
|
'no-console': 'warn',
|
|
},
|
|
},
|
|
prettier,
|
|
];
|