Skip to content

Commits on Source 3

## [3.0.13](https://gitlab.kilic.dev/config/eslint-config/compare/v3.0.12...v3.0.13) (2024-10-19)
### Bug Fixes
* update configuration ([8e9bf5e](https://gitlab.kilic.dev/config/eslint-config/commit/8e9bf5eea93348241d6949e38c23836ca7bfd143))
## [3.0.12](https://gitlab.kilic.dev/config/eslint-config/compare/v3.0.11...v3.0.12) (2024-10-18)
......
{
"name": "@cenk1cenk2/eslint-config",
"version": "3.0.12",
"version": "3.0.13",
"description": "Eslint configuration for my taste.",
"main": "index.js",
"repository": "git@gitlab.kilic.dev:config/eslint-config.git",
......
......@@ -4,7 +4,7 @@ import typescript from './typescript.js'
export default [
...typescript,
{
files: ['**/*.ts', '**/*.tsx', '**/*.svelte', '**/*.vue'],
files: ['**/*.ts', '**/*.tsx'],
languageOptions: {
parserOptions: {
project: 'tsconfig.json'
......
......@@ -8,7 +8,7 @@ export default [
...base,
...TypescriptEslint.configs.recommended,
{
files: ['**/*.ts', '**/*.tsx', '**/*.svelte', '**/*.vue'],
files: ['**/*.ts', '**/*.tsx'],
plugins: {
stylestic: StylisticPlugin,
'@typescript-eslint': TypescriptEslintPlugin
......