@enke.dev/lint 0.11.20 → 0.11.21

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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # @enke.dev/lint
2
2
 
3
+ A very opinionated Eslint and Prettier configuration for JavaScript and TypeScript projects.\
4
+ It also includes an experimental Stylelint configuration for CSS, SASS and SCSS files.
5
+
6
+ In the near future this might hold a configuration for [Oxlint](https://oxc.rs/docs/guide/usage/linter.html) as well.
7
+
3
8
  ## Install packages
4
9
 
5
10
  Make sure to install the necessary peer dependencies:
package/eslint.config.js CHANGED
@@ -66,9 +66,6 @@ const config = defineConfig([
66
66
  litHtmlSources: true,
67
67
  },
68
68
  rules: {
69
- // currently not working due to esilnt v10.0.0 breaking changes,
70
- // see https://github.com/typescript-eslint/typescript-eslint/issues/11952
71
- '@typescript-eslint/consistent-generic-constructors': 'off',
72
69
  // formatting
73
70
  '@typescript-eslint/no-unused-expressions': [
74
71
  'error',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enke.dev/lint",
3
- "version": "0.11.20",
3
+ "version": "0.11.21",
4
4
  "description": "Meta package to provide linting for web projects",
5
5
  "homepage": "https://github.com/enke-dev/lint",
6
6
  "repository": {
@@ -57,9 +57,9 @@
57
57
  "dependencies": {
58
58
  "@eslint/compat": "2.0.2",
59
59
  "@eslint/js": "10.0.1",
60
- "@eslint/json": "1.0.0",
61
- "@html-eslint/eslint-plugin": "0.54.2",
62
- "@html-eslint/parser": "0.54.0",
60
+ "@eslint/json": "1.0.1",
61
+ "@html-eslint/eslint-plugin": "0.55.0",
62
+ "@html-eslint/parser": "0.55.0",
63
63
  "eslint-config-prettier": "10.1.8",
64
64
  "eslint-import-resolver-typescript": "4.4.4",
65
65
  "eslint-plugin-html": "8.1.4",
@@ -76,15 +76,15 @@
76
76
  "devDependencies": {
77
77
  "@awmottaz/prettier-plugin-void-html": "2.0.0",
78
78
  "@eslint/config-inspector": "1.4.2",
79
- "@types/node": "24.10.4",
79
+ "@types/node": "24.10.13",
80
80
  "eslint": "10.0.0",
81
81
  "jiti": "2.6.1",
82
82
  "prettier": "3.8.1",
83
- "stylelint": "17.1.1",
83
+ "stylelint": "17.3.0",
84
84
  "stylelint-config-rational-order": "0.1.2",
85
85
  "stylelint-config-standard-scss": "17.0.0",
86
86
  "stylelint-order": "7.0.1",
87
87
  "typescript": "5.9.3",
88
- "typescript-eslint": "8.54.0"
88
+ "typescript-eslint": "8.55.0"
89
89
  }
90
90
  }