@enke.dev/lint 0.7.1 → 0.7.3

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/.stylelintrc.json CHANGED
@@ -8,7 +8,10 @@
8
8
  }
9
9
  ],
10
10
  "declaration-empty-line-before": null,
11
- "rule-empty-line-before": ["always-multi-line", { "except": ["first-nested"] }],
11
+ "rule-empty-line-before": [
12
+ "always-multi-line",
13
+ { "except": ["after-single-line-comment", "first-nested"] }
14
+ ],
12
15
  "plugin/rational-order": [
13
16
  true,
14
17
  {
package/eslint.config.js CHANGED
@@ -13,15 +13,6 @@ import { configs as eslintPluginWebComponentsConfigs } from 'eslint-plugin-wc';
13
13
  import eslintTs from 'typescript-eslint';
14
14
  export default eslintTs.config(eslintJs.configs.recommended, ...eslintTs.configs.strict, ...eslintTs.configs.stylistic, eslintPluginPrettierRecommended, eslintPluginImport.flatConfigs.recommended, eslintPluginPackageJson.configs.recommended, eslintPluginLitConfigs['flat/recommended'], eslintPluginWebComponentsConfigs['flat/recommended'], {
15
15
  ignores: ['node_modules/', 'dist/', 'lib/'],
16
- }, {
17
- languageOptions: {
18
- parserOptions: {
19
- ecmaVersion: 'latest',
20
- project: true,
21
- sourceType: 'module',
22
- tsconfigRootDir: import.meta.dirname,
23
- },
24
- },
25
16
  }, {
26
17
  plugins: {
27
18
  'simple-import-sort': eslintPluginSimpleImportSort,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enke.dev/lint",
3
- "version": "0.7.1",
3
+ "version": "0.7.3",
4
4
  "description": "Meta package to provide linting for web projects",
5
5
  "homepage": "https://github.com/enke-dev/lint",
6
6
  "repository": {
@@ -61,6 +61,11 @@
61
61
  "devDependencies": {
62
62
  "@types/node": "22.15.33",
63
63
  "jiti": "2.5.1",
64
- "typescript": "5.8.3"
64
+ "typescript": "5.9.2"
65
+ },
66
+ "overrides": {
67
+ "typescript-eslint": {
68
+ "typescript": "$typescript"
69
+ }
65
70
  }
66
71
  }