@nrwl/linter 14.6.0-beta.7 → 14.6.0-rc.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,6 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
- # [14.6.0-beta.7](https://github.com/nrwl/nx/compare/14.5.7...14.6.0-beta.7) (2022-08-19)
6
+ # [14.6.0-rc.0](https://github.com/nrwl/nx/compare/14.5.7...14.6.0-rc.0) (2022-08-29)
7
7
 
8
8
  **Note:** Version bump only for package @nrwl/linter
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nrwl/linter",
3
- "version": "14.6.0-beta.7",
3
+ "version": "14.6.0-rc.0",
4
4
  "description": "The Linter plugin contains executors, generator, plugin and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,10 +33,10 @@
33
33
  "eslint": "^8.0.0"
34
34
  },
35
35
  "dependencies": {
36
- "@nrwl/devkit": "14.6.0-beta.7",
37
- "@nrwl/jest": "14.6.0-beta.7",
36
+ "@nrwl/devkit": "14.6.0-rc.0",
37
+ "@nrwl/jest": "14.6.0-rc.0",
38
38
  "@phenomnomnominal/tsquery": "4.1.1",
39
- "nx": "14.6.0-beta.7",
39
+ "nx": "14.6.0-rc.0",
40
40
  "tmp": "~0.2.1",
41
41
  "tslib": "^2.3.0"
42
42
  },
@@ -45,5 +45,5 @@
45
45
  "optional": true
46
46
  }
47
47
  },
48
- "gitHead": "c0dd2f58324ddc21383a76805f1b6fd19d2f4a3e"
48
+ "gitHead": "a3126116826b4bc8d492341e2b2b02daa4b2195e"
49
49
  }
@@ -7,7 +7,9 @@
7
7
  "properties": {
8
8
  "eslintConfig": {
9
9
  "type": "string",
10
- "description": "The name of the ESLint configuration file."
10
+ "description": "The name of the ESLint configuration file.",
11
+ "x-completion-type": "file",
12
+ "x-completion-glob": ".eslintrc?(.json)"
11
13
  },
12
14
  "lintFilePatterns": {
13
15
  "type": "array",
@@ -66,11 +68,14 @@
66
68
  },
67
69
  "cacheLocation": {
68
70
  "type": "string",
69
- "description": "Path to the cache file or directory."
71
+ "description": "Path to the cache file or directory.",
72
+ "x-completion-type": "directory",
73
+ "x-completion-glob": "tsconfig.*.json"
70
74
  },
71
75
  "outputFile": {
72
76
  "type": "string",
73
- "description": "File to write report to."
77
+ "description": "File to write report to.",
78
+ "x-completion-type": "file"
74
79
  },
75
80
  "maxWarnings": {
76
81
  "type": "number",
@@ -84,7 +89,9 @@
84
89
  },
85
90
  "ignorePath": {
86
91
  "type": "string",
87
- "description": "The path of the `.eslintignore` file."
92
+ "description": "The path of the `.eslintignore` file.",
93
+ "x-completion-type": "file",
94
+ "x-completion-glob": ".eslintignore"
88
95
  },
89
96
  "noEslintrc": {
90
97
  "type": "boolean",
@@ -106,12 +113,14 @@
106
113
  "description": "The equivalent of the `--rulesdir` flag on the ESLint CLI.",
107
114
  "default": [],
108
115
  "items": {
109
- "type": "string"
116
+ "type": "string",
117
+ "x-completion-type": "directory"
110
118
  }
111
119
  },
112
120
  "resolvePluginsRelativeTo": {
113
121
  "type": "string",
114
- "description": "The equivalent of the `--resolve-plugins-relative-to` flag on the ESLint CLI."
122
+ "description": "The equivalent of the `--resolve-plugins-relative-to` flag on the ESLint CLI.",
123
+ "x-completion-type": "directory"
115
124
  },
116
125
  "reportUnusedDisableDirectives": {
117
126
  "type": "string",
@@ -13,16 +13,24 @@
13
13
  },
14
14
  "config": {
15
15
  "type": "string",
16
- "description": "The name of the configuration file."
16
+ "description": "The name of the configuration file.",
17
+ "x-completion-type": "file",
18
+ "x-completion-glob": "(tslint.json|.eslintrc.json)"
17
19
  },
18
20
  "tsConfig": {
19
21
  "description": "The name of the TypeScript configuration file.",
20
22
  "oneOf": [
21
- { "type": "string" },
23
+ {
24
+ "type": "string",
25
+ "x-completion-type": "file",
26
+ "x-completion-glob": "tsconfig.*.json"
27
+ },
22
28
  {
23
29
  "type": "array",
24
30
  "items": {
25
- "type": "string"
31
+ "type": "string",
32
+ "x-completion-type": "file",
33
+ "x-completion-glob": "tsconfig.*.json"
26
34
  }
27
35
  }
28
36
  ]
@@ -57,7 +65,8 @@
57
65
  "description": "Files to exclude from linting.",
58
66
  "default": [],
59
67
  "items": {
60
- "type": "string"
68
+ "type": "string",
69
+ "x-completion-type": "file"
61
70
  }
62
71
  },
63
72
  "files": {
@@ -65,7 +74,8 @@
65
74
  "description": "Files to include in linting.",
66
75
  "default": [],
67
76
  "items": {
68
- "type": "string"
77
+ "type": "string",
78
+ "x-completion-type": "file"
69
79
  }
70
80
  },
71
81
  "force": {
@@ -90,11 +100,13 @@
90
100
  },
91
101
  "cacheLocation": {
92
102
  "type": "string",
93
- "description": "Path to the cache file or directory."
103
+ "description": "Path to the cache file or directory.",
104
+ "x-completion-type": "directory"
94
105
  },
95
106
  "outputFile": {
96
107
  "type": "string",
97
- "description": "File to write report to."
108
+ "description": "File to write report to.",
109
+ "x-completion-type": "file"
98
110
  },
99
111
  "maxWarnings": {
100
112
  "type": "number",
@@ -1,7 +1,7 @@
1
1
  export declare const nxVersion: any;
2
2
  export declare const tslintVersion = "~6.1.0";
3
3
  export declare const tslintToEslintConfigVersion = "^2.13.0";
4
- export declare const buildAngularVersion = "~14.1.0";
4
+ export declare const buildAngularVersion = "~14.2.0";
5
5
  export declare const typescriptESLintVersion = "^5.29.0";
6
6
  export declare const eslintVersion = "~8.15.0";
7
7
  export declare const eslintConfigPrettierVersion = "8.1.0";
@@ -4,7 +4,7 @@ exports.eslintConfigPrettierVersion = exports.eslintVersion = exports.typescript
4
4
  exports.nxVersion = require('../../package.json').version;
5
5
  exports.tslintVersion = '~6.1.0';
6
6
  exports.tslintToEslintConfigVersion = '^2.13.0';
7
- exports.buildAngularVersion = '~14.1.0';
7
+ exports.buildAngularVersion = '~14.2.0';
8
8
  exports.typescriptESLintVersion = '^5.29.0';
9
9
  exports.eslintVersion = '~8.15.0';
10
10
  exports.eslintConfigPrettierVersion = '8.1.0';