Skip to content

Commits on Source 18

## [2.7.1](https://gitlab.kilic.dev/config/eslint-config/compare/v2.7.0...v2.7.1) (2023-04-29)
### Bug Fixes
* update svelte config ([a37b9bc](https://gitlab.kilic.dev/config/eslint-config/commit/a37b9bce4723f77050ad593d5721f950bd4ffe1f))
# [2.7.0](https://gitlab.kilic.dev/config/eslint-config/compare/v2.6.6...v2.7.0) (2023-04-21)
......
......@@ -23,7 +23,7 @@ module.exports = {
'error',
{
code: 180,
comments: 0
comments: 180
}
],
'no-multi-spaces': 'error',
......
{
"name": "@cenk1cenk2/eslint-config",
"version": "2.7.0",
"version": "2.7.1",
"description": "Eslint configuration for my taste.",
"main": "index.js",
"repository": "git@gitlab.kilic.dev:config/eslint-config.git",
......@@ -60,9 +60,9 @@
},
"devDependencies": {
"@cenk1cenk2/cz-cc": "^1.6.4",
"eslint": "^8.38.0",
"eslint": "^8.39.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"prettier": "^2.8.8",
"simple-git-hooks": "^2.8.1"
},
"config": {
......
This diff is collapsed.
......@@ -10,6 +10,9 @@ module.exports = {
parser: 'svelte-eslint-parser',
parserOptions: {
parser: '@typescript-eslint/parser'
},
rules: {
'max-len': 'off'
}
}
]
......