@inclusive-design/eslint-config 0.2.0 → 0.3.1

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,29 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.1](https://github.com/inclusive-design/eslint-config/compare/v0.3.0...v0.3.1) (2026-04-28)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **deps:** update dependency @eslint/markdown to v8 ([#42](https://github.com/inclusive-design/eslint-config/issues/42)) ([dd678da](https://github.com/inclusive-design/eslint-config/commit/dd678da146486232626aec6ae150d92e263ea0f5))
9
+ * **deps:** update dependency eslint-plugin-unicorn to v64 ([#43](https://github.com/inclusive-design/eslint-config/issues/43)) ([78ac875](https://github.com/inclusive-design/eslint-config/commit/78ac8750d22699ad0e3f982387c4fe1d23019d81))
10
+ * **deps:** update minor updates ([#47](https://github.com/inclusive-design/eslint-config/issues/47)) ([ab908d0](https://github.com/inclusive-design/eslint-config/commit/ab908d05dd0ca7ab7e2089fa81904b4cc7c1dba6))
11
+
12
+ ## [0.3.0](https://github.com/inclusive-design/eslint-config/compare/v0.2.0...v0.3.0) (2026-03-19)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **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))
18
+ * **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))
19
+ * **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))
20
+ * **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))
21
+
22
+
23
+ ### Miscellaneous Chores
24
+
25
+ * **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))
26
+
3
27
  ## [0.2.0](https://github.com/inclusive-design/eslint-config/compare/v0.1.1...v0.2.0) (2026-01-10)
4
28
 
5
29
 
@@ -1,3 +1,5 @@
1
- export default {
1
+ const config = {
2
2
  extends: ['@commitlint/config-conventional'],
3
3
  };
4
+
5
+ export default config;
package/index.js CHANGED
@@ -1,16 +1,14 @@
1
1
  import {defineConfig} from 'eslint/config';
2
- import xoBrowser from 'eslint-config-xo/browser';
3
- import eslintPluginUnicorn from 'eslint-plugin-unicorn';
2
+ import eslintConfigXo from 'eslint-config-xo';
4
3
  import jsdoc from 'eslint-plugin-jsdoc';
5
4
  import markdown from '@eslint/markdown';
6
5
  import json from '@eslint/json';
7
6
 
8
7
  export default defineConfig([
9
8
  {
10
- files: ['**/*.js'],
9
+ files: ['**/*.js', '**/*.cjs', '**/*.mjs'],
11
10
  extends: [
12
- xoBrowser,
13
- eslintPluginUnicorn.configs.recommended,
11
+ eslintConfigXo({browser: true}),
14
12
  jsdoc.configs['flat/recommended'],
15
13
  ],
16
14
  },
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.1",
4
4
  "description": "Shareable ESLint configuration for the Inclusive Design Research Centre.",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -28,23 +28,22 @@
28
28
  },
29
29
  "homepage": "https://github.com/inclusive-design/eslint-config#readme",
30
30
  "dependencies": {
31
- "@eslint/json": "^0.14.0",
32
- "@eslint/markdown": "^7.5.1",
33
- "eslint": "^9.39.2",
34
- "eslint-config-xo": "^0.49.0",
35
- "eslint-plugin-jsdoc": "^62.0.0",
36
- "eslint-plugin-unicorn": "^62.0.0"
31
+ "@eslint/json": "^1.0.0",
32
+ "@eslint/markdown": "^8.0.0",
33
+ "eslint": "^10.0.0",
34
+ "eslint-config-xo": "^0.51.0",
35
+ "eslint-plugin-jsdoc": "^62.0.0"
37
36
  },
38
37
  "devDependencies": {
39
38
  "@commitlint/cli": "^20.3.0",
40
39
  "@commitlint/config-conventional": "^20.3.0",
40
+ "@inclusive-design/markdownlint-config": "^0.1.0",
41
41
  "husky": "^9.1.7",
42
42
  "lint-staged": "^16.2.7",
43
- "markdownlint-cli2": "^0.20.0",
44
43
  "npm-run-all2": "^8.0.4"
45
44
  },
46
45
  "lint-staged": {
47
- "*.{js,json,jsonc}": [
46
+ "*.{cjs,js,json,jsonc,mjs}": [
48
47
  "eslint --fix"
49
48
  ],
50
49
  "*.md": [