Skip to content

Commit

Permalink
docs(core): add description to linter package (#9537)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcabanes committed Mar 25, 2022
1 parent 5d28162 commit 167b57a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions docs/generated/packages/linter.json
@@ -1,7 +1,7 @@
{
"githubRoot": "https://github.com/nrwl/nx/blob/master",
"name": "linter",
"description": "Lint Plugin for Nx",
"description": "The Linter plugin contains executors, generator, plugin and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.",
"root": "/packages/linter",
"source": "/packages/linter/src",
"generators": [
Expand All @@ -25,7 +25,7 @@
"required": [],
"presets": []
},
"description": "Create the Workspace Lint Rules Project",
"description": "Create the Workspace Lint Rules Project.",
"hidden": true,
"implementation": "/packages/linter/src/generators/workspace-rules-project/workspace-rules-project#lintWorkspaceRulesProjectGenerator.ts",
"aliases": [],
Expand Down Expand Up @@ -67,7 +67,7 @@
"required": ["name", "directory"],
"presets": []
},
"description": "Create a new workspace ESLint rule",
"description": "Create a new Workspace ESLint rule.",
"implementation": "/packages/linter/src/generators/workspace-rule/workspace-rule#lintWorkspaceRuleGenerator.ts",
"aliases": [],
"hidden": false,
Expand Down Expand Up @@ -182,7 +182,7 @@
"required": ["linter"],
"presets": []
},
"description": "**[DEPRECATED]**: Please use the eslint builder instead, an automated migration was provided in v10.3.0",
"description": "**[DEPRECATED]**: Please use the eslint builder instead, an automated migration was provided in `v10.3.0`.",
"aliases": [],
"hidden": false,
"path": "/packages/linter/src/executors/lint/schema.json"
Expand Down Expand Up @@ -289,7 +289,7 @@
"presets": []
},
"hasher": "./src/executors/eslint/hasher",
"description": "Run ESLint on a project",
"description": "Run ESLint on a project.",
"aliases": [],
"hidden": false,
"path": "/packages/linter/src/executors/eslint/schema.json"
Expand Down
8 changes: 4 additions & 4 deletions packages/linter/executors.json
Expand Up @@ -3,25 +3,25 @@
"lint": {
"implementation": "./src/executors/lint/compat",
"schema": "./src/executors/lint/schema.json",
"description": "**[DEPRECATED]**: Please use the eslint builder instead, an automated migration was provided in v10.3.0"
"description": "**[DEPRECATED]**: Please use the eslint builder instead, an automated migration was provided in `v10.3.0`."
},
"eslint": {
"implementation": "./src/executors/eslint/compat",
"schema": "./src/executors/eslint/schema.json",
"description": "Run ESLint on a project"
"description": "Run ESLint on a project."
}
},
"executors": {
"lint": {
"implementation": "./src/executors/lint/lint.impl",
"schema": "./src/executors/lint/schema.json",
"description": "**[DEPRECATED]**: Please use the eslint builder instead, an automated migration was provided in v10.3.0"
"description": "**[DEPRECATED]**: Please use the eslint builder instead, an automated migration was provided in `v10.3.0`."
},
"eslint": {
"implementation": "./src/executors/eslint/lint.impl",
"schema": "./src/executors/eslint/schema.json",
"hasher": "./src/executors/eslint/hasher",
"description": "Run ESLint on a project"
"description": "Run ESLint on a project."
}
}
}
8 changes: 4 additions & 4 deletions packages/linter/generators.json
Expand Up @@ -5,26 +5,26 @@
"workspace-rules-project": {
"factory": "./src/generators/workspace-rules-project/workspace-rules-project#lintWorkspaceRulesProjectSchematic",
"schema": "./src/generators/workspace-rules-project/schema.json",
"description": "Create the Workspace Lint Rules Project",
"description": "Create the Workspace Lint Rules Project.",
"hidden": true
},
"workspace-rule": {
"factory": "./src/generators/workspace-rule/workspace-rule#lintWorkspaceRuleSchematic",
"schema": "./src/generators/workspace-rule/schema.json",
"description": "Create a new workspace ESLint rule"
"description": "Create a new Workspace ESLint rule."
}
},
"generators": {
"workspace-rules-project": {
"factory": "./src/generators/workspace-rules-project/workspace-rules-project#lintWorkspaceRulesProjectGenerator",
"schema": "./src/generators/workspace-rules-project/schema.json",
"description": "Create the Workspace Lint Rules Project",
"description": "Create the Workspace Lint Rules Project.",
"hidden": true
},
"workspace-rule": {
"factory": "./src/generators/workspace-rule/workspace-rule#lintWorkspaceRuleGenerator",
"schema": "./src/generators/workspace-rule/schema.json",
"description": "Create a new workspace ESLint rule"
"description": "Create a new Workspace ESLint rule."
}
}
}
2 changes: 1 addition & 1 deletion packages/linter/package.json
@@ -1,7 +1,7 @@
{
"name": "@nrwl/linter",
"version": "0.0.1",
"description": "Lint Plugin for Nx",
"description": "The Linter plugin contains executors, generator, plugin and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.",
"repository": {
"type": "git",
"url": "https://github.com/nrwl/nx.git",
Expand Down

1 comment on commit 167b57a

@vercel
Copy link

@vercel vercel bot commented on 167b57a Mar 25, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.