eslint-config-final 1.2.0 → 1.2.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 (3) hide show
  1. package/README.md +2 -1
  2. package/index.js +3 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -36,13 +36,14 @@ module.exports = tseslint.config(
36
36
 
37
37
  extends: [
38
38
  ...config.typescript,
39
+ ...config.angularTypescript,
39
40
  ],
40
41
  },
41
42
  {
42
43
  files: ['**/*.html'],
43
44
 
44
45
  extends: [
45
- ...config.angular,
46
+ ...config.angularTemplate,
46
47
  ],
47
48
  },
48
49
  );
package/index.js CHANGED
@@ -96,7 +96,7 @@ const angularTypescript = {
96
96
  },
97
97
  };
98
98
 
99
- const angularHtml = {
99
+ const angularTemplate = {
100
100
  extends: [
101
101
  ...angularPlugin.configs.templateRecommended,
102
102
  ],
@@ -105,5 +105,6 @@ const angularHtml = {
105
105
  module.exports = {
106
106
  javascript: tseslint.config(javascript),
107
107
  typescript: tseslint.config(typescript),
108
- angular: tseslint.config(angularTypescript, angularHtml),
108
+ angularTypescript: tseslint.config(angularTypescript),
109
+ angularTemplate: tseslint.config(angularTemplate),
109
110
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-final",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "clean": "rm -rf dist",