@lusc/eslint-config 7.0.0 → 7.1.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.
package/index.js CHANGED
@@ -2,7 +2,6 @@ import * as tsParser from '@typescript-eslint/parser';
2
2
  import globals from 'globals';
3
3
 
4
4
  import comments from './configs/comments.js';
5
- import css from './configs/css.js';
6
5
  import eslint from './configs/eslint.js';
7
6
  import importConfig from './configs/import.js';
8
7
  import n from './configs/n.js';
@@ -45,7 +44,6 @@ export function withOptions({typescriptGlobs}) {
45
44
  importConfig,
46
45
  regexp,
47
46
  security,
48
- css,
49
47
  typescript(typescriptGlobs),
50
48
  ].flat();
51
49
  }
package/package.json CHANGED
@@ -5,7 +5,6 @@
5
5
  },
6
6
  "dependencies": {
7
7
  "@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
8
- "@eslint/css": "^0.5.0",
9
8
  "@eslint/js": "^9.22.0",
10
9
  "@typescript-eslint/parser": "^8.26.1",
11
10
  "eslint-import-resolver-typescript": "^4.2.2",
@@ -36,5 +35,5 @@
36
35
  "url": "https://github.com/melusc/eslint-config"
37
36
  },
38
37
  "type": "module",
39
- "version": "7.0.0"
38
+ "version": "7.1.0"
40
39
  }
package/configs/css.js DELETED
@@ -1,20 +0,0 @@
1
- import css from '@eslint/css';
2
-
3
- const {rules, plugins} = css.configs.recommended;
4
-
5
- export default [
6
- {
7
- files: ['**/*.css'],
8
- plugins,
9
- language: 'css/css',
10
- rules: {
11
- ...rules,
12
- 'css/require-baseline': [
13
- 'warn',
14
- {
15
- available: 'newly',
16
- },
17
- ],
18
- },
19
- },
20
- ];