lint(frontend): relax id-denylist rule

This commit is contained in:
syuilo 2025-03-20 15:43:35 +09:00
parent fd3e28812e
commit fac59d75e2
1 changed files with 3 additions and 3 deletions

View File

@ -50,13 +50,13 @@ export default [
// defineExposeが誤検知されてしまう // defineExposeが誤検知されてしまう
'@typescript-eslint/no-unused-expressions': 'off', '@typescript-eslint/no-unused-expressions': 'off',
'import/consistent-type-specifier-style': ['error', 'prefer-top-level'], 'import/consistent-type-specifier-style': ['error', 'prefer-top-level'],
// window の禁止理由: グローバルスコープと衝突し、予期せぬ結果を招くため // window ... グローバルスコープと衝突し、予期せぬ結果を招くため
// e の禁止理由: error や event など、複数のキーワードの頭文字であり分かりにくいため // e ... error や event など、複数のキーワードの頭文字であり分かりにくいため
// close ... window.closeと衝突 or 紛らわしい // close ... window.closeと衝突 or 紛らわしい
// open ... window.openと衝突 or 紛らわしい // open ... window.openと衝突 or 紛らわしい
// fetch ... window.fetchと衝突 or 紛らわしい // fetch ... window.fetchと衝突 or 紛らわしい
// location ... window.locationと衝突 or 紛らわしい // location ... window.locationと衝突 or 紛らわしい
'id-denylist': ['error', 'window', 'e', 'close', 'open', 'fetch', 'location'], 'id-denylist': ['warn', 'window', 'e', 'close', 'open', 'fetch', 'location'],
'no-shadow': ['warn'], 'no-shadow': ['warn'],
'vue/attributes-order': ['error', { 'vue/attributes-order': ['error', {
alphabetical: false, alphabetical: false,