1
0
mirror of https://github.com/angular/angular-cli.git synced 2025-06-03 03:42:18 +08:00
angular-cli/.eslintrc.json
Paul Gschwendtner 8d54c090c4 ci: remove extraneous imports lint rule as it doesnt work in monorepo setup
- it seems to be disabled by default for actual production .ts files;
  but the rule is in "error" mode for spec files.
- The rule doesn't seem to properly support mono-repos when configured properly.
i.e. it only considers the top-level package.json — hence doesn't deal with cross-workspace deps.
2024-12-16 12:17:17 -05:00

151 lines
4.6 KiB
JSON

{
"root": true,
"env": {
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:import/typescript",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier"
],
"ignorePatterns": [
"bazel-out",
"dist-schema",
"goldens/public-api",
"modules/testing/builder/projects",
"packages/angular_devkit/build_angular/src/babel-bazel.d.ts",
"packages/angular_devkit/build_angular/test",
"packages/angular_devkit/build_webpack/test",
"packages/angular_devkit/schematics_cli/blank/project-files",
"packages/angular_devkit/schematics_cli/blank/schematic-files",
"packages/angular_devkit/schematics_cli/schematic/files",
"**/tests",
".yarn",
"dist",
"**/node_modules",
"**/third_party"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": ["@stylistic", "@typescript-eslint", "eslint-plugin-import", "header"],
"rules": {
"@stylistic/lines-around-comment": [
"error",
{
"allowArrayStart": true,
"allowBlockStart": true,
"allowClassStart": true,
"allowEnumStart": true,
"allowInterfaceStart": true,
"allowModuleStart": true,
"allowObjectStart": true,
"allowTypeStart": true,
"beforeBlockComment": true,
"ignorePattern": "@license"
}
],
"@stylistic/spaced-comment": ["error", "always"],
"@typescript-eslint/consistent-type-assertions": "error",
"@typescript-eslint/no-explicit-any": "error",
"@typescript-eslint/no-non-null-assertion": "error",
"@typescript-eslint/no-unnecessary-qualifier": "error",
"@typescript-eslint/no-unused-expressions": "error",
"curly": "error",
"header/header": [
"error",
"block",
[
"*",
" * @license",
" * Copyright Google LLC All Rights Reserved.",
" *",
" * Use of this source code is governed by an MIT-style license that can be",
" * found in the LICENSE file at https://angular.dev/license",
" "
],
2
],
"import/first": "error",
"import/newline-after-import": "error",
"import/no-absolute-path": "error",
"import/no-duplicates": "error",
"import/no-unassigned-import": ["error", { "allow": ["symbol-observable"] }],
"import/order": [
"error",
{
"alphabetize": { "order": "asc" },
"groups": [["builtin", "external"], "parent", "sibling", "index"]
}
],
"max-len": [
"error",
{
"code": 140,
"ignoreUrls": true
}
],
"max-lines-per-function": ["error", { "max": 200 }],
"no-caller": "error",
"no-console": "error",
"no-empty": ["error", { "allowEmptyCatch": true }],
"no-eval": "error",
"no-multiple-empty-lines": ["error"],
"no-throw-literal": "error",
"padding-line-between-statements": [
"error",
{
"blankLine": "always",
"prev": "*",
"next": "return"
}
],
"sort-imports": ["error", { "ignoreDeclarationSort": true }],
"spaced-comment": [
"error",
"always",
{
"markers": ["/"]
}
],
/* TODO: evaluate usage of these rules and fix issues as needed */
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-implied-eval": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/require-await": "off",
"@typescript-eslint/restrict-plus-operands": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/unbound-method": "off",
"@typescript-eslint/no-unsafe-enum-comparison": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/no-empty-object-type": "off",
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/prefer-promise-reject-errors": "off",
"@typescript-eslint/only-throw-error": "off",
"@typescript-eslint/no-unsafe-function-type": "off"
},
"overrides": [
{
"files": ["!packages/**", "**/*_spec.ts"],
"rules": {
"max-lines-per-function": "off",
"no-case-declarations": "off",
"no-console": "off"
}
}
]
}