This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import eslint from '@eslint/js'; | |
| import { defineConfig } from 'eslint/config'; | |
| import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'; | |
| import globals from 'globals'; | |
| import tseslint from 'typescript-eslint'; | |
| export default defineConfig( | |
| { | |
| ignores: ['eslint.config.mjs', 'node_modules/**', 'dist/**', 'build/**', 'coverage/**', '*.js', '*.d.ts'], | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "editor.minimap.enabled": false, | |
| "workbench.colorTheme": "Dracula", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "editor.fontSize": 16, | |
| "editor.lineHeight": 30, | |
| "editor.fontFamily": "Fira Code", | |
| "editor.fontLigatures": true, | |
| "editor.formatOnPaste": true, | |
| "editor.formatOnSave": true, |