diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-10-30 17:31:49 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-10-30 17:31:49 +0900 |
| commit | b4dd61a016da2fca9e552c2de0404b5166f40817 (patch) | |
| tree | 2c4422d343c4edc746c10476a327cc0e37bdb11a | |
| parent | feat: アイコンデコレーションの管理をロールで設定でき... (diff) | |
| download | sharkey-b4dd61a016da2fca9e552c2de0404b5166f40817.tar.gz sharkey-b4dd61a016da2fca9e552c2de0404b5166f40817.tar.bz2 sharkey-b4dd61a016da2fca9e552c2de0404b5166f40817.zip | |
Update .eslintrc.js
| -rw-r--r-- | packages/shared/.eslintrc.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/shared/.eslintrc.js b/packages/shared/.eslintrc.js index 3f19aad685..09b4ba726f 100644 --- a/packages/shared/.eslintrc.js +++ b/packages/shared/.eslintrc.js @@ -72,6 +72,13 @@ module.exports = { { 'blankLine': 'always', 'prev': 'function', 'next': '*' }, { 'blankLine': 'always', 'prev': '*', 'next': 'function' }, ], + 'lines-between-class-members': ['error', { + enforce: [{ + blankLine: 'always', + prev: 'method', + next: '*', + }] + }], '@typescript-eslint/func-call-spacing': ['error', 'never'], '@typescript-eslint/no-explicit-any': ['warn'], '@typescript-eslint/no-unused-vars': ['warn'], |