@davidsneighbour/htmlvalidate-config 2024.1.2 → 2024.2.0

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.
Files changed (3) hide show
  1. package/README.md +16 -16
  2. package/index.js +1 -1
  3. package/package.json +6 -5
package/README.md CHANGED
@@ -1,18 +1,18 @@
1
1
 
2
- # All configurations
2
+ ## All configurations
3
3
 
4
- - [Babel](/packages/babel-config)
5
- - [Bootstrap](/packages/bootstrap-config)
6
- - [Browserslist](/packages/browserslist-config)
7
- - [Commitlint](/packages/commitlint-config)
8
- - [CssNano](/packages/cssnano-config)
9
- - [Cypress](/packages/cypress-config)
10
- - [ESLint](/packages/eslint-config)
11
- - [Markdownlint](/packages/markdownlint-config)
12
- - [PostCSS](/packages/postcss-config)
13
- - [Prettier](/packages/prettier-config)
14
- - [Remark Lint](/packages/remark-config)
15
- - [Standard Version](/packages/standard-version-config)
16
- - [Stylelint](/packages/stylelint-config)
17
- - [Tools](/packages/tools)
18
- - [Webpack](/packages/webpack-config)
4
+ | Configurations | | |
5
+ | --- | --- | --- |
6
+ | **Build Tools** | | |
7
+ | [Babel](packages/babel-config) | [Webpack](packages/webpack-config) | |
8
+ | **Testing** | | |
9
+ | [Cypress](packages/cypress-config) | [HTML Validate](packages/htmlvalidate-config/) | |
10
+ | **Linters and Formatters** | | |
11
+ | [Browserslist](packages/browserslist-config) | [ESLint](packages/eslint-config) | [PostCSS](packages/postcss-config) |
12
+ | [Prettier](packages/prettier-config) | [Stylelint](packages/stylelint-config) | |
13
+ | **Project Management** | | |
14
+ | [Commitlint](packages/commitlint-config) | [Release](packages/release-config) | |
15
+ | **Markdown and Writing** | | |
16
+ | [Markdownlint](packages/markdownlint-config) | [Remark Lint](packages/remark-config) | |
17
+ | **Other Tools** | | |
18
+ | [Bootstrap](packages/bootstrap-config) | [Tools](packages/tools) | |
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- module.exports = {
1
+ export default {
2
2
  extends: ["html-validate:recommended"],
3
3
  rules: {
4
4
  "attribute-misuse": [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@davidsneighbour/htmlvalidate-config",
3
3
  "description": "HTML Validate configuration for use in @davidsneighbour projects.",
4
- "version": "2024.1.2",
4
+ "version": "2024.2.0",
5
5
  "license": "MIT",
6
6
  "repository": "davidsneighbour/configurations",
7
7
  "author": "Patrick Kollitsch <patrick@davids-neighbour.com> (https://davids-neighbour.com)",
@@ -17,14 +17,15 @@
17
17
  },
18
18
  "main": "index.js",
19
19
  "engines": {
20
- "node": ">=20.9.0",
21
- "npm": ">=10.1.0"
20
+ "node": ">=20.12.0",
21
+ "npm": ">=10.5.0"
22
22
  },
23
- "gitHead": "ae949fa5972d2dae69398f60c2fc25be0d97e8d3",
23
+ "gitHead": "4e5fc203de312ab82d37a47e77a8c31ebf01705e",
24
24
  "exports": {
25
25
  ".": {
26
26
  "import": "./index.js",
27
27
  "require": "./index.js"
28
28
  }
29
- }
29
+ },
30
+ "type": "module"
30
31
  }