Skip to content

Commit

Permalink
radix を有効化
Browse files Browse the repository at this point in the history
  • Loading branch information
susisu committed Dec 26, 2024
1 parent 120a546 commit da49895
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/rules/javascript.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ const rules = {
'no-var': 2,
// 可読性のため、`let` でなくて良い場面では `const` を使うよう強制する
'prefer-const': 2,
// parseInt の第二引数を必須にする
'radix': 2,
// ASI による複雑怪奇な挙動に付き合わなくて済むよう、セミコロンを必須とする
'semi': [2, 'always'],
// 生の *.js では `'use strict';` を必須とする
Expand Down

0 comments on commit da49895

Please sign in to comment.