@lbenie/linting 1.1.6 → 1.2.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.
@@ -10,6 +10,8 @@ module.exports = {
10
10
  'eslint:recommended',
11
11
  'plugin:@typescript-eslint/recommended',
12
12
  'plugin:@typescript-eslint/recommended-requiring-type-checking',
13
+ 'plugin:jsx-a11y/recommended',
14
+ 'plugin:lit-a11y/recommended',
13
15
  ],
14
16
  parserOptions: {
15
17
  parser: '@typescript-eslint/parser',
@@ -34,7 +36,7 @@ module.exports = {
34
36
  browser: true,
35
37
  node: true,
36
38
  },
37
- plugins: ['prettier', '@typescript-eslint', 'functional'],
39
+ plugins: ['prettier', '@typescript-eslint', 'functional', 'jsx-a11y', 'lit-a11y'],
38
40
  },
39
41
  ],
40
42
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lbenie/linting",
3
- "version": "1.1.6",
3
+ "version": "1.2.1",
4
4
  "description": "my opiniated rules",
5
5
  "repository": {
6
6
  "url": "https://github.com/lbenie/linting"
@@ -19,7 +19,7 @@
19
19
  "main": "./eslint/.eslintrc.js",
20
20
  "exports": {
21
21
  "./eslint": "./eslint/.eslintrc.js",
22
- "./stylelint": "./stylelint/.stylelint.js"
22
+ "./stylelint": "./stylelint/stylelint.config.cjs"
23
23
  },
24
24
  "types": "dist/types/index.d.ts",
25
25
  "scripts": {
@@ -32,34 +32,36 @@
32
32
  },
33
33
  "devDependencies": {
34
34
  "@semantic-release/changelog": "6.0.3",
35
- "@semantic-release/commit-analyzer": "10.0.1",
35
+ "@semantic-release/commit-analyzer": "10.0.4",
36
36
  "@semantic-release/git": "10.0.1",
37
37
  "@semantic-release/github": "9.0.4",
38
38
  "@semantic-release/npm": "10.0.5",
39
- "@semantic-release/release-notes-generator": "11.0.4",
39
+ "@semantic-release/release-notes-generator": "11.0.7",
40
+ "@types/react": "18.2.21",
40
41
  "@types/semantic-release": "20.0.1",
41
42
  "all-contributors-cli": "6.26.1",
42
43
  "concurrently": "8.2.1",
43
- "conventional-changelog-conventionalcommits": "6.1.0",
44
- "semantic-release": "21.0.9",
44
+ "conventional-changelog-conventionalcommits": "7.0.1",
45
+ "lit": "2.8.0",
46
+ "react": "18.2.0",
47
+ "semantic-release": "21.1.1",
45
48
  "tsutils": "3.21.0",
46
- "typescript": "5.1.6"
49
+ "typescript": "5.2.2"
47
50
  },
48
51
  "dependencies": {
52
+ "@typescript-eslint/eslint-plugin": "6.5.0",
53
+ "@typescript-eslint/parser": "6.5.0",
54
+ "eslint": "8.48.0",
49
55
  "eslint-plugin-functional": "6.0.0",
56
+ "eslint-plugin-jsx-a11y": "6.7.1",
57
+ "eslint-plugin-lit-a11y": "4.1.0",
50
58
  "eslint-plugin-prettier": "5.0.0",
51
- "eslint": "8.47.0",
52
- "postcss": "8.4.28",
59
+ "postcss": "8.4.29",
53
60
  "postcss-scss": "4.0.7",
54
61
  "postcss-styl": "0.12.3",
55
- "prettier": "3.0.2",
56
- "@typescript-eslint/eslint-plugin": "6.4.1",
57
- "@typescript-eslint/parser": "6.4.1",
62
+ "prettier": "3.0.3",
58
63
  "stylelint": "15.10.3",
59
64
  "stylelint-order": "6.0.3",
60
65
  "stylelint-stylus": "0.18.0"
61
- },
62
- "peerDependencies": {
63
- "typescript": "5.1.6"
64
66
  }
65
67
  }
@@ -1,20 +0,0 @@
1
- /**
2
- * @type {import('stylelint').Config}
3
- */
4
- module.exports = {
5
- extends: [
6
- 'stylelint-order',
7
- ],
8
- plugins: ['stylelint-stylus', 'stylelint-order'],
9
- overrides: [
10
- {
11
- files: ['*.styl', '*.stylus'],
12
- extends: ['stylelint-stylus/standard'],
13
- customSyntax: 'postcss-styl',
14
- },
15
- {
16
- files: ['*.scss', '*.sass'],
17
- customSyntax: 'postcss-scss',
18
- },
19
- ],
20
- }