@nrwl/linter 14.4.2 → 14.5.0-beta.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.4.2](https://github.com/nrwl/nx/compare/14.4.1...14.4.2) (2022-07-05)
6
+ # [14.5.0-beta.0](https://github.com/nrwl/nx/compare/14.4.2...14.5.0-beta.0) (2022-07-11)
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.4.2",
3
+ "version": "14.5.0-beta.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.4.2",
37
- "@nrwl/jest": "14.4.2",
36
+ "@nrwl/devkit": "14.5.0-beta.0",
37
+ "@nrwl/jest": "14.5.0-beta.0",
38
38
  "@phenomnomnominal/tsquery": "4.1.1",
39
- "nx": "14.4.2",
39
+ "nx": "14.5.0-beta.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": "f49de61f4c19a8418ecc9eb57966ef96d869b354"
48
+ "gitHead": "438ea6cdfed60dc0f7f358e967650f004f2e7c42"
49
49
  }
package/.eslintrc.json DELETED
@@ -1,30 +0,0 @@
1
- {
2
- "extends": "../../.eslintrc",
3
- "rules": {},
4
- "overrides": [
5
- {
6
- "files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
7
- "rules": {}
8
- },
9
- {
10
- "files": ["**/*.ts"],
11
- "excludedFiles": ["./src/migrations/**"],
12
- "rules": {
13
- "no-restricted-imports": ["error", "@nrwl/workspace"]
14
- }
15
- },
16
- {
17
- "files": [
18
- "./package.json",
19
- "./generators.json",
20
- "./executors.json",
21
- "./migrations.json"
22
- ],
23
- "parser": "jsonc-eslint-parser",
24
- "rules": {
25
- "@nrwl/nx/nx-plugin-checks": "error"
26
- }
27
- }
28
- ],
29
- "ignorePatterns": ["!**/*"]
30
- }