@inclusive-design/eslint-config 0.2.0 → 0.3.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.
@@ -1,20 +1 @@
1
- export default {
2
- config: {
3
- "no-duplicate-header": false,
4
- "no-trailing-punctuation": false,
5
- "header-style": {
6
- "style": "atx"
7
- },
8
- "no-inline-html": false,
9
- "line-length": {
10
- "line_length": 120,
11
- "tables": false,
12
- "code_blocks": false
13
- },
14
- "code-block-style": false,
15
- "ol-prefix": {
16
- "style": "ordered"
17
- }
18
- },
19
- ignores: ["node_modules", "CHANGELOG.md"]
20
- };
1
+ export {default} from '@inclusive-design/markdownlint-config';
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.0](https://github.com/inclusive-design/eslint-config/compare/v0.2.0...v0.3.0) (2026-03-19)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **deps:** update dependency @eslint/json to v1 ([#27](https://github.com/inclusive-design/eslint-config/issues/27)) ([3315838](https://github.com/inclusive-design/eslint-config/commit/331583838c5b0fee0cd48478ca25d90f783658fb))
9
+ * **deps:** update dependency eslint to v10 ([#29](https://github.com/inclusive-design/eslint-config/issues/29)) ([6489785](https://github.com/inclusive-design/eslint-config/commit/64897853bbf820396f300b1e7ea29d02570caf2c))
10
+ * **deps:** update dependency eslint-config-xo to ^0.50.0 ([#30](https://github.com/inclusive-design/eslint-config/issues/30)) ([5da17e9](https://github.com/inclusive-design/eslint-config/commit/5da17e92afeadcf2deec44fb9ed531f924b60033))
11
+ * **deps:** update dependency eslint-plugin-unicorn to v63 ([#31](https://github.com/inclusive-design/eslint-config/issues/31)) ([be31875](https://github.com/inclusive-design/eslint-config/commit/be31875716da9b437bb0439af3472221e0b041ba))
12
+
13
+
14
+ ### Miscellaneous Chores
15
+
16
+ * **release:** release 0.3.0 ([#36](https://github.com/inclusive-design/eslint-config/issues/36)) ([914cf83](https://github.com/inclusive-design/eslint-config/commit/914cf83828c0f86a94f4269dcd94ac45c617e4c3))
17
+
3
18
  ## [0.2.0](https://github.com/inclusive-design/eslint-config/compare/v0.1.1...v0.2.0) (2026-01-10)
4
19
 
5
20
 
package/index.js CHANGED
@@ -7,7 +7,7 @@ import json from '@eslint/json';
7
7
 
8
8
  export default defineConfig([
9
9
  {
10
- files: ['**/*.js'],
10
+ files: ['**/*.js', '**/*.cjs', '**/*.mjs'],
11
11
  extends: [
12
12
  xoBrowser,
13
13
  eslintPluginUnicorn.configs.recommended,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inclusive-design/eslint-config",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Shareable ESLint configuration for the Inclusive Design Research Centre.",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -28,23 +28,23 @@
28
28
  },
29
29
  "homepage": "https://github.com/inclusive-design/eslint-config#readme",
30
30
  "dependencies": {
31
- "@eslint/json": "^0.14.0",
31
+ "@eslint/json": "^1.0.0",
32
32
  "@eslint/markdown": "^7.5.1",
33
- "eslint": "^9.39.2",
34
- "eslint-config-xo": "^0.49.0",
33
+ "eslint": "^10.0.0",
34
+ "eslint-config-xo": "^0.50.0",
35
35
  "eslint-plugin-jsdoc": "^62.0.0",
36
- "eslint-plugin-unicorn": "^62.0.0"
36
+ "eslint-plugin-unicorn": "^63.0.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@commitlint/cli": "^20.3.0",
40
40
  "@commitlint/config-conventional": "^20.3.0",
41
+ "@inclusive-design/markdownlint-config": "^0.1.0",
41
42
  "husky": "^9.1.7",
42
43
  "lint-staged": "^16.2.7",
43
- "markdownlint-cli2": "^0.20.0",
44
44
  "npm-run-all2": "^8.0.4"
45
45
  },
46
46
  "lint-staged": {
47
- "*.{js,json,jsonc}": [
47
+ "*.{cjs,js,json,jsonc,mjs}": [
48
48
  "eslint --fix"
49
49
  ],
50
50
  "*.md": [