diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-20 16:06:32 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-20 16:06:32 +0900 |
| commit | f25963e2c20b0bc6b6e966b6ec91e8292b47376c (patch) | |
| tree | ffba056ab379d5d856ff27b8bb7c023e730497c7 /packages/frontend | |
| parent | lint(frontend): force window prefix (diff) | |
| download | misskey-f25963e2c20b0bc6b6e966b6ec91e8292b47376c.tar.gz misskey-f25963e2c20b0bc6b6e966b6ec91e8292b47376c.tar.bz2 misskey-f25963e2c20b0bc6b6e966b6ec91e8292b47376c.zip | |
Update eslint.config.js
Diffstat (limited to 'packages/frontend')
| -rw-r--r-- | packages/frontend/eslint.config.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/frontend/eslint.config.js b/packages/frontend/eslint.config.js index 226c00af03..e3fba65197 100644 --- a/packages/frontend/eslint.config.js +++ b/packages/frontend/eslint.config.js @@ -79,6 +79,10 @@ export default [ 'name': 'history', 'message': 'Use `window.history`.', }, + { + 'name': 'name', + 'message': 'Use `window.name`. もしくは name という変数名を定義し忘れている', + }, ], 'no-shadow': ['warn'], 'vue/attributes-order': ['error', { |