|
1 | 1 | { |
2 | 2 | "root": true, |
3 | 3 | "ignorePatterns": ["**/*"], |
4 | | - "plugins": ["@nrwl/nx", "eslint-comments", "promise", "unicorn", "license-header"], |
| 4 | + "plugins": ["@nx", "eslint-comments", "promise", "unicorn", "license-header"], |
5 | 5 | "extends": [ |
6 | 6 | "plugin:@next/next/recommended", |
7 | 7 | "airbnb", |
|
22 | 22 | { |
23 | 23 | "files": ["*.ts", "*.tsx", "*.js", "*.jsx"], |
24 | 24 | "rules": { |
25 | | - "@nrwl/nx/enforce-module-boundaries": [ |
| 25 | + "@nx/enforce-module-boundaries": [ |
26 | 26 | "error", |
27 | 27 | { |
28 | 28 | "enforceBuildableLibDependency": true, |
|
99 | 99 | "eslint-comments/no-unlimited-disable": "off", |
100 | 100 | "unicorn/no-null": "off", |
101 | 101 | "unicorn/prefer-module": "off", |
102 | | - "license-header/header": [ "error", "./license-header.js" ], |
| 102 | + "license-header/header": ["error", "./license-header.js"], |
103 | 103 | "unicorn/prefer-top-level-await": "off" |
104 | 104 | } |
105 | 105 | }, |
106 | 106 | { |
107 | 107 | "files": ["*.ts", "*.tsx"], |
108 | 108 | "plugins": ["@typescript-eslint", "typescript-enum"], |
109 | 109 | "extends": [ |
110 | | - "plugin:@nrwl/nx/typescript", |
| 110 | + "plugin:@nx/typescript", |
111 | 111 | "airbnb-typescript", |
112 | 112 | "plugin:@typescript-eslint/recommended", |
113 | 113 | "plugin:@typescript-eslint/recommended-requiring-type-checking", |
|
162 | 162 | }, |
163 | 163 | { |
164 | 164 | "files": ["*.js", "*.jsx", "*.mjs"], |
165 | | - "extends": ["plugin:@nrwl/nx/javascript"], |
| 165 | + "extends": ["plugin:@nx/javascript"], |
166 | 166 | "rules": { |
167 | 167 | // Allow CJS until ESM support improves |
168 | 168 | "unicorn/prefer-module": "off", |
|
0 commit comments