Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-20 committed Feb 18, 2024
1 parent c563f71 commit eb01efc
Show file tree
Hide file tree
Showing 11 changed files with 1,328 additions and 481 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ updates:
non-majors:
update-types:
- 'minor'
- 'patch'
- 'patch'
8 changes: 4 additions & 4 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"tabWidth": 2,
"singleQuote": true,
"jsxSingleQuote": false,
"semi": true
"tabWidth": 2,
"singleQuote": true,
"jsxSingleQuote": false,
"semi": true
}
12 changes: 6 additions & 6 deletions eslint-vue-ts-recommended.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
* 適用されるようにするためにoverridesに'*.vue'を追加する
*/

const typescriptEslintEslintRecommended = require('@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended')
const typescriptEslintEslintRecommended = require('@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended');

module.exports = {
...typescriptEslintEslintRecommended,
overrides: typescriptEslintEslintRecommended.overrides.map(override => {
overrides: typescriptEslintEslintRecommended.overrides.map((override) => {
if (override.files.includes('*.ts')) {
return { ...override, files: [...override.files, '*.vue'] }
return { ...override, files: [...override.files, '*.vue'] };
}
return override
})
}
return override;
}),
};
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<html lang="ja">
<head>
<meta charset="UTF-8" />
Expand Down
Loading

0 comments on commit eb01efc

Please sign in to comment.