mirror of
https://github.com/itdoginfo/podkop.git
synced 2025-12-13 06:56:54 +03:00
feat: Introduce fe modular build system
This commit is contained in:
18
fe-app-podkop/eslint.config.js
Normal file
18
fe-app-podkop/eslint.config.js
Normal file
@@ -0,0 +1,18 @@
|
||||
// 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,
|
||||
];
|
||||
Reference in New Issue
Block a user