Skip to content

Commit e7589ae

Browse files
fix: correct installation docs
1 parent f19714a commit e7589ae

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,13 @@ $ yarn add eslint \
4242
@angular-eslint/eslint-plugin-template \
4343
@angular-eslint/template-parser \
4444
@typescript-eslint/eslint-plugin \
45-
@typescript-eslint/parser -D
45+
@typescript-eslint/parser \
46+
eslint-import-resolver-typescript \
47+
eslint-plugin-deprecation \
48+
eslint-plugin-import \
49+
eslint-plugin-jsdoc \
50+
eslint-plugin-prefer-arrow \
51+
-D
4652
```
4753

4854

@@ -68,8 +74,8 @@ module.exports = {
6874
};
6975
```
7076

71-
NOTE: If your primary TSConfig file is at the project root and named `tsconfig.json` *you need to overwrite the parser
72-
options to point to your config file*.
77+
NOTE: If your primary TSConfig file is *NOT* at the project root and named `tsconfig.json` *you need to overwrite the
78+
parser options to point to your config file*.
7379

7480
```javascript
7581
module.exports = {
@@ -123,7 +129,7 @@ Rules can be adjusted for specific globs at the consumer level using [ESLint fil
123129
124130
```javascript
125131
module.exports = {
126-
"extends": ['@terminus/eslint-config-frontend/development'],
132+
"extends": ['@terminus/eslint-config-frontend'],
127133
"overrides": [
128134
// Disable certain rules for spec and mock files:
129135
{

0 commit comments

Comments
 (0)