Skip to content
New issue

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

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

Already on GitHub? # to your account

Add jQuery #67

Merged
merged 1 commit into from
Jun 30, 2024
Merged
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
1 change: 1 addition & 0 deletions docs/modules/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ ESLint plugin.
- [`eslint-plugin-node`](./eslint-plugin-node.md)
- [`eslint-plugin-react`](./eslint-plugin-react.md)
- [`is-builtin-module`](./is-builtin-module.md)
- [`jQuery`](./jquery.md)
- [`lodash`, `underscore` and related](./lodash-underscore.md)
- [`MaterializeCSS`](./materialize-css.md)
- [`moment.js`](./momentjs.md)
Expand Down
17 changes: 17 additions & 0 deletions docs/modules/jquery.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# jQuery

jQuery is a great project that at one time greatly simplified the life of web developers. However, now almost all features from this project can be easily replaced with native JavaScript methods so it makes little sense to load a dependency this large to provide them.

# Replacements

## You might not need jQuery

Here you could read how to replace jQuery in your project.

[Project Page](https://youmightnotneedjquery.com/)

## You (Might) Don't Need jQuery

Here you could read how to replace jQuery in your project.

[Project Page](https://github.com/camsong/You-Dont-Need-jQuery)
6 changes: 6 additions & 0 deletions manifests/preferred.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@
"docPath": "is-builtin-module",
"category": "preferred"
},
{
"type": "documented",
"moduleName": "jquery",
"docPath": "jquery",
"category": "preferred"
},
{
"type": "documented",
"moduleName": "lodash",
Expand Down