Skip to content

Commit 24d955b

Browse files
authored
Merge pull request #4211 from traPtitech/dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-6.16.0
Bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.16.0
2 parents ca5871a + cb828f2 commit 24d955b

File tree

5 files changed

+356
-136
lines changed

5 files changed

+356
-136
lines changed

.eslintrc.cjs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,11 @@ module.exports = {
4747
'vue/v-on-event-hyphenation': ['error', 'always', { autofix: true }],
4848
'vue/v-on-function-call': 'error',
4949
'vue/no-template-target-blank': 'error',
50-
'vue/prefer-true-attribute-shorthand': 'error'
50+
'vue/prefer-true-attribute-shorthand': 'error',
51+
'@typescript-eslint/no-non-null-assertion': 'warn',
52+
'no-empty-function': 'off',
53+
'@typescript-eslint/no-empty-function': 'error',
54+
'@typescript-eslint/no-empty-interface': 'error'
5155
},
5256
overrides: [
5357
{

eslint-vue-ts-recommended.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* 適用されるようにするためにoverridesに'*.vue'を追加する
77
*/
88

9-
const typescriptEslintEslintRecommended = require('@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended')
9+
const typescriptEslintEslintRecommended = require('./node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended')
1010

1111
module.exports = {
1212
...typescriptEslintEslintRecommended,

0 commit comments

Comments
 (0)