Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing Rule Docs URL (vscode-lintlens) #87

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- 6
- 8
- 9
- 10
- 12
- 13
- 14
128 changes: 70 additions & 58 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "eslint-plugin-lodash-fp",
"version": "2.1.3",
"version": "2.2.0",
"description": "ESLint rules for lodash/fp",
"license": "MIT",
"repository": "jfmengels/eslint-plugin-lodash-fp",
"author": {
"name": "Jeroen Engels",
"email": "[email protected]",
"url": "github.com/jfmengels"
"url": "https://github.com/jfmengels"
},
"engines": {
"node": ">=6.0.0"
Expand Down Expand Up @@ -55,5 +55,13 @@
"xo": {
"exnext": true,
"space": 2
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid",
"printWidth": 120,
"proseWrap": "preserve",
"trailingComma": "none",
"bracketSpacing": false
}
}
14 changes: 9 additions & 5 deletions rules/consistent-compose.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,22 @@ const create = function (context) {
});
};

const schema = [{
type: 'string',
enum: constants.COMPOSITION_METHODS
}];
const schema = [
{
type: 'string',
enum: constants.COMPOSITION_METHODS
}
];

module.exports = {
create,
meta: {
schema,
docs: {
description: 'Enforce a consistent composition method.',
recommended: 'off'
recommended: 'off',

url: 'https://github.com/jfmengels/eslint-plugin-lodash-fp/blob/master/docs/rules/consistent-compose.md'
}
}
};
Loading