Skip to content

Commit

Permalink
Fix: ESLint ルールでダブルクオート・インデント幅2スペース・セミコロンありに統一する
Browse files Browse the repository at this point in the history
随所に混在している箇所があるため
  • Loading branch information
tsukumijima committed Dec 30, 2024
1 parent ac216d9 commit 7dbaf37
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,13 @@ module.exports = {
"vue/max-attributes-per-line": "off",
"vue/multiline-html-element-content-newline": "off",
"vue/singleline-html-element-content-newline": "off",
// AivisSpeech 独自
"indent": ["error", 2, { "SwitchCase": 1 }],
"quotes": ["error", "double"],
"semi": ["error", "always"],
"@typescript-eslint/indent": ["error", 2, {"SwitchCase": 1}],
"@typescript-eslint/quotes": ["error", "double"],
"@typescript-eslint/semi": ["error", "always"],
},
overrides: [
{
Expand Down

0 comments on commit 7dbaf37

Please sign in to comment.