Skip to content

Commit

Permalink
fix(rules): Поправит правило no-unused-vars (#93)
Browse files Browse the repository at this point in the history
* fix(rules): Поправит правило `no-unused-vars`

Разрешит использование контролируемых неиспользуемых переменных.
Для этого переменная должна иметь знак `_` (нижнее подчеркивание)
первым символом в названии переменной.

* Отключит базовое правило `no-unused-vars` (рекомендация
разработчиков `typescript-eslint`);
* Добавит правило `@typescript-eslint/no-unused-vars` с уровнем ошибки
`warn` и дополнительным объектом конфигурации `'argsIgnorePattern': '^_'`.

* feat(changelog): Обновит файл changelog.md
  • Loading branch information
kam4atka authored May 2, 2023
1 parent 8778fc4 commit ed83c15
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
9.1.1 / 2023-05-02
==================

* Добавили правило в конфигурационном файле `node`
* `@typescript-eslint/no-unused-vars` с уровнем ошибки `warn` и дополнительным объектом конфигурации `'argsIgnorePattern': '^_'`

9.1.0 / 2023-05-02
==================

Expand Down
6 changes: 4 additions & 2 deletions node.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ module.exports = {
// ------------------------------------------
'no-console': 'off',
'no-shadow': 'off',
'no-unused-vars': 'off',
'node/handle-callback-err': ['error', "^.*(e|E)rr"],
'node/no-callback-literal': 'error',
'node/no-exports-assign': 'off',
Expand Down Expand Up @@ -50,7 +51,8 @@ module.exports = {
'unicorn/prefer-node-protocol': 'warn',
// Typescript
// ------------------------------------------
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-shadow': 'error'
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-shadow': 'error',
'@typescript-eslint/no-unused-vars': ['warn', {'argsIgnorePattern': '^_'}]
}
};

0 comments on commit ed83c15

Please sign in to comment.