<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> This repo uses Nx `20.2.0-beta.3` ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> This repo uses Nx `20.2.0-beta.7` ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
105 lines
2.5 KiB
JSON
105 lines
2.5 KiB
JSON
{
|
|
"extends": "../../.eslintrc",
|
|
"rules": {},
|
|
"ignorePatterns": ["!**/*"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
"rules": {}
|
|
},
|
|
{
|
|
"files": ["*.ts", "*.tsx"],
|
|
"rules": {}
|
|
},
|
|
{
|
|
"files": ["*.js", "*.jsx"],
|
|
"rules": {}
|
|
},
|
|
{
|
|
"files": ["**/*.ts"],
|
|
"excludedFiles": ["./src/migrations/**"],
|
|
"rules": {
|
|
"no-restricted-imports": ["error", "@nx/workspace"]
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"./package.json",
|
|
"./generators.json",
|
|
"./executors.json",
|
|
"./migrations.json"
|
|
],
|
|
"parser": "jsonc-eslint-parser",
|
|
"rules": {
|
|
"@nx/nx-plugin-checks": "error"
|
|
}
|
|
},
|
|
{
|
|
"files": ["./package.json"],
|
|
"parser": "jsonc-eslint-parser",
|
|
"rules": {
|
|
"@nx/dependency-checks": [
|
|
"error",
|
|
{
|
|
"buildTargets": ["build-base"],
|
|
"ignoredDependencies": [
|
|
"nx",
|
|
"eslint",
|
|
"vite",
|
|
"rxjs",
|
|
"semver",
|
|
"@nx/cypress",
|
|
"@nx/playwright",
|
|
"@nx/jest",
|
|
"@nx/rollup",
|
|
"@nx/storybook",
|
|
"@nx/vite",
|
|
"@nx/webpack",
|
|
"prettier",
|
|
"typescript",
|
|
"@schematics/angular",
|
|
"@angular-devkit/core",
|
|
"@angular-devkit/architect",
|
|
"@angular-devkit/build-angular",
|
|
"@angular-devkit/schematics",
|
|
"@angular/compiler",
|
|
"@angular/compiler-cli",
|
|
"@angular/core",
|
|
"@angular/router",
|
|
"@ngrx/effects",
|
|
"@ngrx/router-store",
|
|
"@ngrx/store",
|
|
"@storybook/angular",
|
|
"@module-federation/node",
|
|
"@nguniversal/builders",
|
|
"ng-packagr",
|
|
"injection-js",
|
|
"browserslist",
|
|
"cacache",
|
|
"less",
|
|
"node-sass",
|
|
"node-sass-tilde-importer",
|
|
"ora",
|
|
"convert-source-map",
|
|
"postcss",
|
|
"autoprefixer",
|
|
"postcss-url",
|
|
"sass",
|
|
"stylus",
|
|
"tailwindcss",
|
|
"cypress",
|
|
"esbuild"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.ts"],
|
|
"rules": {
|
|
"@angular-eslint/prefer-standalone": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|