Skip to content

Commit

Permalink
fix: lint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillgroshkov committed Nov 12, 2024
1 parent d53fe9c commit f34cbc9
Show file tree
Hide file tree
Showing 4 changed files with 191 additions and 178 deletions.
2 changes: 2 additions & 0 deletions cfg/eslint-biome-rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ module.exports = {
'jsx-a11y/html-has-lang': 0,
'jsx-a11y/iframe-has-title': 0,
'jsx-a11y/img-redundant-alt': 0,
'jsx-a11y/interactive-supports-focus': 0,
'jsx-a11y/label-has-associated-control': 0,
'jsx-a11y/lang': 0,
'jsx-a11y/media-has-caption': 0,
'jsx-a11y/mouse-events-have-key-events': 0,
Expand Down
2 changes: 1 addition & 1 deletion cfg/eslint-rules.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ module.exports = {
'import-x/no-empty-named-blocks': 2,
'import-x/no-cycle': 2,
'import-x/no-useless-path-segments': 2,
'import-x/no-default-export': 2,
'import-x/no-default-export': 0, // biome
'jsdoc/check-alignment': 2,
// "jsdoc/check-indentation": "error",
// 'jsdoc/newline-after-description': 2,
Expand Down
14 changes: 10 additions & 4 deletions src/test/cfg/eslint.config.dump.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"0": ".vue",
"1": ".html"
},
"parser": "typescript-eslint/parser@8.13.0",
"parser": "typescript-eslint/parser@8.14.0",
"project": "tsconfig.json"
},
"sourceType": "module"
Expand All @@ -18,9 +18,9 @@
},
"plugins": [
"@",
"@typescript-eslint:@typescript-eslint/eslint-plugin@8.13.0",
"@typescript-eslint:@typescript-eslint/eslint-plugin@8.14.0",
"unicorn:eslint-plugin-unicorn@56.0.0",
"vue:eslint-plugin-vue@9.30.0",
"vue:eslint-plugin-vue@9.31.0",
"import-x",
"simple-import-sort:eslint-plugin-simple-import-sort@12.1.1",
"jsdoc",
Expand Down Expand Up @@ -682,7 +682,7 @@
2
],
"import-x/no-default-export": [
2
0
],
"import-x/no-duplicates": [
2,
Expand Down Expand Up @@ -781,6 +781,12 @@
"jsx-a11y/img-redundant-alt": [
0
],
"jsx-a11y/interactive-supports-focus": [
0
],
"jsx-a11y/label-has-associated-control": [
0
],
"jsx-a11y/lang": [
0
],
Expand Down
Loading

0 comments on commit f34cbc9

Please sign in to comment.