Skip to content

Commit 44ed28f

Browse files
committed
build: update only dependencies
1 parent dba731b commit 44ed28f

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

Diff for: README.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ $ eslint "**/*.ts"
3939

4040
### Override rules
4141

42-
`.eslintrc.json`:
42+
`.eslintrc.json` or `.eslintrc.js`:
4343

4444
```json5
4545
{
@@ -49,3 +49,16 @@ $ eslint "**/*.ts"
4949
}
5050
}
5151
```
52+
53+
### Optional
54+
55+
### import/no-deprecated by default "off"
56+
57+
```json
58+
{
59+
"extends": "@angular-ru/eslint-config",
60+
"rules": {
61+
"import/no-deprecated": "error"
62+
}
63+
}
64+
```

Diff for: index.js

-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ module.exports = {
6969
'no-return-assign': ['error', 'always'],
7070
'max-params': ['error', 3],
7171
'no-nested-ternary': 'error',
72-
'import/no-deprecated': 'error',
7372
'no-magic-numbers': 'off',
7473
'@typescript-eslint/no-magic-numbers': [
7574
'error',

0 commit comments

Comments
 (0)