eslint-plugin-package-json 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -1
- package/lib/rules/order-properties.js +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,6 +51,10 @@ Or, individually configure the rules you want to use under the rules section.
|
|
|
51
51
|
|
|
52
52
|
- [`package-json/order-properties`](docs/rules/order-properties.md): Require top-level properties to be in a conventional order (`"name"`first, etc.).
|
|
53
53
|
- [`package-json/sort-collections`](docs/rules/sort-collections.md): Keep sub-collections like `"dependencies"` and `"scripts"` in alphabetical order.
|
|
54
|
-
- [`package-json/valid-package-def`](docs/rules/valid-package-def): Validate `package.json` files against the NPM specification.
|
|
54
|
+
- [`package-json/valid-package-def`](docs/rules/valid-package-def.md): Validate `package.json` files against the NPM specification.
|
|
55
55
|
|
|
56
56
|
These rules only run on `package.json` files; they will ignore all other files being linted. They lint `package.json` files at project root, and in any subfolder of the project, making this plugin great for monorepos.
|
|
57
|
+
|
|
58
|
+
## Appreciation
|
|
59
|
+
|
|
60
|
+
Many thanks to [@zetlen](https://github.com/zetlen) for creating the initial version and core infrastructure of this package! 💖
|