eslint-config-angular-strict 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,13 +18,16 @@ yarn add eslint-config-angular-strict --dev
18
18
 
19
19
  Within your **ESLint** config file:
20
20
 
21
- ```json
21
+ ```javascript
22
22
  {
23
23
  "root": true,
24
24
  "overrides": [
25
25
  {
26
26
  "extends": ["angular-strict/typescript"],
27
- "files": ["*.ts"]
27
+ "files": ["*.ts"],
28
+ "parserOptions": {
29
+ "project": ["./tsconfig.json"] // Specify your tsconfig relative path
30
+ }
28
31
  },
29
32
  {
30
33
  "extends": ["angular-strict/template"],
@@ -38,7 +41,7 @@ Within your **ESLint** config file:
38
41
 
39
42
  Within your **ESLint** config file:
40
43
 
41
- ```json
44
+ ```javascript
42
45
  {
43
46
  "root": true,
44
47
  "overrides": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-angular-strict",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Stricts rules to enforce a consistent code style for Angular development",
5
5
  "repository": {
6
6
  "type": "git",