@alexlit/lint-kit 106.0.0 → 106.1.2

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.
Files changed (38) hide show
  1. package/package.json +80 -79
  2. package/packages/config-commitlint/package.json +38 -38
  3. package/packages/config-eslint/CHANGELOG.md +6 -0
  4. package/packages/config-eslint/dictionaries/index.js +3 -0
  5. package/packages/config-eslint/index.js +8 -7
  6. package/packages/config-eslint/package.json +87 -87
  7. package/packages/config-eslint/plugins/typescript/index.js +2 -0
  8. package/packages/config-hooks/package.json +38 -38
  9. package/packages/config-htmllint/package.json +39 -39
  10. package/packages/config-markdownlint/package.json +37 -37
  11. package/packages/config-npmlint/index.json +3 -3
  12. package/packages/config-npmlint/package.json +42 -42
  13. package/packages/config-prettier/CHANGELOG.md +2 -0
  14. package/packages/config-prettier/index.js +3 -0
  15. package/packages/config-prettier/package.json +49 -48
  16. package/packages/config-prettier/plugins/tailwindcss.js +4 -0
  17. package/packages/config-stylelint/CHANGELOG.md +4 -0
  18. package/packages/config-stylelint/package.json +59 -59
  19. package/packages/config-stylelint/plugins/scss.js +17 -2
  20. package/scripts/check.editorconfig.sh +10 -0
  21. package/scripts/semver.sh +2 -2
  22. package/packages/config-htmllint/test/html.html +0 -335
  23. package/packages/config-markdownlint/test/deepin-2.md +0 -106
  24. package/packages/config-prettier/test/Migrations.sol +0 -19
  25. package/packages/config-prettier/test/jsdoc.js +0 -27
  26. package/packages/config-prettier/test/json.json +0 -28
  27. package/packages/config-prettier/test/pug.jade +0 -14
  28. package/packages/config-prettier/test/ruby.example +0 -13
  29. package/packages/config-prettier/test/sql.sql +0 -6
  30. package/packages/config-prettier/test/svelte.svelte +0 -20
  31. package/packages/config-prettier/test/svg.svg +0 -67
  32. package/packages/config-prettier/test/twig.twig +0 -17
  33. package/packages/config-prettier/test/xml.xml +0 -43
  34. package/packages/config-stylelint/test/button.scss +0 -7
  35. package/packages/config-stylelint/test/comp-vue.vue +0 -36
  36. package/packages/config-stylelint/test/logical.scss +0 -35
  37. package/packages/config-stylelint/test/scss.scss +0 -457
  38. package/packages/config-stylelint/test/tailwind.css +0 -8
package/package.json CHANGED
@@ -1,79 +1,80 @@
1
- {
2
- "name": "@alexlit/lint-kit",
3
- "version": "106.0.0",
4
- "private": false,
5
- "description": "Preset of configuration files and dependencies for linting web applications (designed for Vue.js with TypeScript)",
6
- "keywords": [
7
- "commitlint",
8
- "config",
9
- "eslint",
10
- "htmllint",
11
- "kit",
12
- "lint",
13
- "markdownlint",
14
- "npmlint",
15
- "preset",
16
- "prettier",
17
- "stylelint",
18
- "toolkit"
19
- ],
20
- "homepage": "https://github.com/alex-lit/lint-kit#readme",
21
- "bugs": {
22
- "url": "https://github.com/alex-lit/lint-kit/issues"
23
- },
24
- "repository": {
25
- "type": "git",
26
- "url": "git+https://github.com/alex-lit/lint-kit.git"
27
- },
28
- "license": "MIT",
29
- "author": "Alexey Litovchenko",
30
- "maintainers": [
31
- {
32
- "name": "Alexey Litovchenko",
33
- "email": "alex.lit@outlook.com",
34
- "url": "https://alexlit.gitlab.io"
35
- }
36
- ],
37
- "main": "README.md",
38
- "files": [
39
- ".commitlintrc.js",
40
- ".eslintrc.js",
41
- ".huskyrc.js",
42
- ".linthtmlrc.js",
43
- ".lintstagedrc.js",
44
- ".markdownlintrc.js",
45
- ".npmpackagejsonlintrc.json",
46
- ".npmrc",
47
- ".prettierrc.js",
48
- ".stylelintrc.js",
49
- "packages",
50
- "scripts"
51
- ],
52
- "workspaces": [
53
- "packages/*"
54
- ],
55
- "scripts": {
56
- "lint": "./scripts/lint.sh",
57
- "lint:eslint": "./scripts/lint.eslint.sh",
58
- "lint:htmllint": "./scripts/lint.htmllint.sh",
59
- "lint:markdownlint": "./scripts/lint.markdownlint.sh",
60
- "lint:npmlint": "./scripts/lint.npmlint.sh",
61
- "lint:stylelint": "./scripts/lint.stylelint.sh",
62
- "semver": "./scripts/semver.sh",
63
- "up": "./scripts/up.sh"
64
- },
65
- "dependencies": {
66
- "@alexlit/config-commitlint": "^10.1.0",
67
- "@alexlit/config-eslint": "^70.0.0",
68
- "@alexlit/config-hooks": "^0.0.2",
69
- "@alexlit/config-htmllint": "^1.0.1",
70
- "@alexlit/config-markdownlint": "^2.0.2",
71
- "@alexlit/config-npmlint": "^5.0.1",
72
- "@alexlit/config-prettier": "^14.0.2",
73
- "@alexlit/config-stylelint": "^38.1.1"
74
- },
75
- "devDependencies": {
76
- "standard-version": "^9.5.0",
77
- "typescript": "^5.2.2"
78
- }
79
- }
1
+ {
2
+ "name": "@alexlit/lint-kit",
3
+ "version": "106.1.2",
4
+ "private": false,
5
+ "description": "Preset of configuration files and dependencies for linting web applications (designed for Vue.js with TypeScript)",
6
+ "keywords": [
7
+ "commitlint",
8
+ "config",
9
+ "eslint",
10
+ "htmllint",
11
+ "kit",
12
+ "lint",
13
+ "markdownlint",
14
+ "npmlint",
15
+ "preset",
16
+ "prettier",
17
+ "stylelint",
18
+ "toolkit"
19
+ ],
20
+ "homepage": "https://github.com/alex-lit/lint-kit#readme",
21
+ "bugs": {
22
+ "url": "https://github.com/alex-lit/lint-kit/issues"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/alex-lit/lint-kit.git"
27
+ },
28
+ "license": "MIT",
29
+ "author": "Alexey Litovchenko",
30
+ "maintainers": [
31
+ {
32
+ "name": "Alexey Litovchenko",
33
+ "email": "alex.lit@outlook.com",
34
+ "url": "https://alexlit.gitlab.io"
35
+ }
36
+ ],
37
+ "main": "README.md",
38
+ "files": [
39
+ ".commitlintrc.js",
40
+ ".eslintrc.js",
41
+ ".huskyrc.js",
42
+ ".linthtmlrc.js",
43
+ ".lintstagedrc.js",
44
+ ".markdownlintrc.js",
45
+ ".npmpackagejsonlintrc.json",
46
+ ".npmrc",
47
+ ".prettierrc.js",
48
+ ".stylelintrc.js",
49
+ "packages",
50
+ "scripts"
51
+ ],
52
+ "workspaces": [
53
+ "packages/*"
54
+ ],
55
+ "scripts": {
56
+ "check:editorconfig": "./scripts/check.editorconfig.sh",
57
+ "lint": "time ./scripts/lint.sh",
58
+ "lint:eslint": "time ./scripts/lint.eslint.sh",
59
+ "lint:htmllint": "time ./scripts/lint.htmllint.sh",
60
+ "lint:markdownlint": "time ./scripts/lint.markdownlint.sh",
61
+ "lint:npmlint": "time ./scripts/lint.npmlint.sh",
62
+ "lint:stylelint": "time ./scripts/lint.stylelint.sh",
63
+ "semver": "./scripts/semver.sh",
64
+ "up": "./scripts/up.sh"
65
+ },
66
+ "dependencies": {
67
+ "@alexlit/config-commitlint": "^10.1.0",
68
+ "@alexlit/config-eslint": "^70.0.0",
69
+ "@alexlit/config-hooks": "^0.0.2",
70
+ "@alexlit/config-htmllint": "^1.0.1",
71
+ "@alexlit/config-markdownlint": "^2.0.2",
72
+ "@alexlit/config-npmlint": "^5.0.1",
73
+ "@alexlit/config-prettier": "^14.0.2",
74
+ "@alexlit/config-stylelint": "^38.1.1"
75
+ },
76
+ "devDependencies": {
77
+ "changelogen": "latest",
78
+ "typescript": "^5.2.2"
79
+ }
80
+ }
@@ -1,38 +1,38 @@
1
- {
2
- "name": "@alexlit/config-commitlint",
3
- "version": "10.1.0",
4
- "private": false,
5
- "description": "Commitlint config",
6
- "keywords": [
7
- "commitlint",
8
- "config"
9
- ],
10
- "homepage": "https://github.com/alex-lit/lint-kit#readme",
11
- "bugs": {
12
- "url": "https://github.com/alex-lit/lint-kit/issues"
13
- },
14
- "repository": {
15
- "type": "git",
16
- "url": "https://github.com/alex-lit/lint-kit.git",
17
- "directory": "packages/config-commitlint"
18
- },
19
- "license": "MIT",
20
- "author": "Alexey Litovchenko",
21
- "maintainers": [
22
- "Alexey Litovchenko <alex.lit@outlook.com> (https://alexlit.gitlab.io)"
23
- ],
24
- "main": "index.js",
25
- "files": [
26
- "README.md",
27
- "index.js"
28
- ],
29
- "scripts": {
30
- "semver": "../../scripts/semver.sh",
31
- "up": "../../scripts/up.sh"
32
- },
33
- "dependencies": {
34
- "@commitlint/cli": "^18.2.0",
35
- "@commitlint/config-conventional": "^18.1.0",
36
- "conventional-changelog-cli": "^4.1.0"
37
- }
38
- }
1
+ {
2
+ "name": "@alexlit/config-commitlint",
3
+ "version": "10.1.0",
4
+ "private": false,
5
+ "description": "Commitlint config",
6
+ "keywords": [
7
+ "commitlint",
8
+ "config"
9
+ ],
10
+ "homepage": "https://github.com/alex-lit/lint-kit#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/alex-lit/lint-kit/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/alex-lit/lint-kit.git",
17
+ "directory": "packages/config-commitlint"
18
+ },
19
+ "license": "MIT",
20
+ "author": "Alexey Litovchenko",
21
+ "maintainers": [
22
+ "Alexey Litovchenko <alex.lit@outlook.com> (https://alexlit.gitlab.io)"
23
+ ],
24
+ "main": "index.js",
25
+ "files": [
26
+ "README.md",
27
+ "index.js"
28
+ ],
29
+ "scripts": {
30
+ "semver": "../../scripts/semver.sh",
31
+ "up": "../../scripts/up.sh"
32
+ },
33
+ "dependencies": {
34
+ "@commitlint/cli": "^18.2.0",
35
+ "@commitlint/config-conventional": "^18.1.0",
36
+ "conventional-changelog-cli": "^4.1.0"
37
+ }
38
+ }
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [70.1.0](https://github.com/alex-lit/lint-kit/compare/v70.0.2...v70.1.0) (2023-11-02)
6
+
7
+ ### [70.0.2](https://github.com/alex-lit/lint-kit/compare/v70.0.1...v70.0.2) (2023-11-01)
8
+
9
+ ### [70.0.1](https://github.com/alex-lit/lint-kit/compare/v38.4.0...v70.0.1) (2023-11-01)
10
+
5
11
  ## [70.0.0](https://github.com/alex-lit/lint-kit/compare/v38.2.0...v70.0.0) (2023-10-30)
6
12
 
7
13
  ## [69.2.0](https://github.com/alex-lit/lint-kit/compare/v105.0.0...v69.2.0) (2023-10-25)
@@ -23,7 +23,10 @@ const specialized = [
23
23
  module.exports = [
24
24
  ...programming,
25
25
  ...specialized,
26
+ 'changelogen',
26
27
  'aave',
28
+ 'maxerr',
29
+ 'tailwindcss',
27
30
  'airbnb',
28
31
  'aland',
29
32
  'alexey',
@@ -67,12 +67,12 @@ module.exports = defineConfig({
67
67
 
68
68
  ignorePatterns: [
69
69
  '.*',
70
- '**/build/**',
71
- '**/dist/**',
72
- '**/docs/**',
73
- '**/node_modules/**',
74
- '**/storybook-*/**',
75
- '**/sw.js',
70
+ 'build',
71
+ 'dist',
72
+ 'docs',
73
+ 'node_modules',
74
+ 'storybook-*',
75
+ 'sw.js',
76
76
  '!.*.js',
77
77
  '!.node',
78
78
  '!.storybook',
@@ -99,7 +99,7 @@ module.exports = defineConfig({
99
99
  ecmaFeatures: { jsx: true },
100
100
  extraFileExtensions: ['.vue'],
101
101
  parser: '@typescript-eslint/parser',
102
- project: './tsconfig.json',
102
+ project: ['./tsconfig.json'],
103
103
  },
104
104
 
105
105
  root: true,
@@ -109,6 +109,7 @@ module.exports = defineConfig({
109
109
  curly: 'error',
110
110
  'func-style': ['error', 'declaration', { allowArrowFunctions: true }],
111
111
  'grouped-accessor-pairs': ['error', 'getBeforeSet'],
112
+ indent: 'off',
112
113
 
113
114
  'lines-around-comment': [
114
115
  'warn',
@@ -1,87 +1,87 @@
1
- {
2
- "name": "@alexlit/config-eslint",
3
- "version": "70.0.0",
4
- "private": false,
5
- "description": "Eslint config",
6
- "keywords": [
7
- "eslint",
8
- "config"
9
- ],
10
- "homepage": "https://github.com/alex-lit/lint-kit#readme",
11
- "bugs": {
12
- "url": "https://github.com/alex-lit/lint-kit/issues"
13
- },
14
- "repository": {
15
- "type": "git",
16
- "url": "https://github.com/alex-lit/lint-kit.git",
17
- "directory": "packages/config-eslint"
18
- },
19
- "license": "MIT",
20
- "author": "Alexey Litovchenko",
21
- "maintainers": [
22
- "Alexey Litovchenko <alex.lit@outlook.com> (https://alexlit.gitlab.io)"
23
- ],
24
- "main": "index.js",
25
- "files": [
26
- "README.md",
27
- "dictionaries",
28
- "index.js",
29
- "plugins"
30
- ],
31
- "scripts": {
32
- "semver": "../../scripts/semver.sh",
33
- "up": "../../scripts/up.sh"
34
- },
35
- "dependencies": {
36
- "@intlify/eslint-plugin-vue-i18n": "^2.0.0",
37
- "@tanstack/eslint-plugin-query": "^5.0.5",
38
- "@typescript-eslint/eslint-plugin": "^6.9.1",
39
- "@typescript-eslint/parser": "^6.9.1",
40
- "eslint": "^8.52.0",
41
- "eslint-config-airbnb-base": "^15.0.0",
42
- "eslint-config-prettier": "^9.0.0",
43
- "eslint-define-config": "^1.24.1",
44
- "eslint-import-resolver-alias": "^1.1.2",
45
- "eslint-plugin-array-func": "^4.0.0",
46
- "eslint-plugin-compat": "^4.2.0",
47
- "eslint-plugin-decorator-position": "^5.0.2",
48
- "eslint-plugin-eslint-comments": "^3.2.0",
49
- "eslint-plugin-etc": "^2.0.3",
50
- "eslint-plugin-ext": "^0.1.0",
51
- "eslint-plugin-filenames": "^1.3.2",
52
- "eslint-plugin-import": "^2.29.0",
53
- "eslint-plugin-jsdoc": "^46.8.2",
54
- "eslint-plugin-jsx-a11y": "^6.7.1",
55
- "eslint-plugin-lit": "^1.10.1",
56
- "eslint-plugin-lit-a11y": "^4.1.0",
57
- "eslint-plugin-more": "^1.0.5",
58
- "eslint-plugin-no-await-in-promise": "^1.1.5",
59
- "eslint-plugin-no-constructor-bind": "^2.0.4",
60
- "eslint-plugin-no-explicit-type-exports": "^0.12.1",
61
- "eslint-plugin-no-loops": "^0.3.0",
62
- "eslint-plugin-no-secrets": "^0.8.9",
63
- "eslint-plugin-no-use-extend-native": "^0.5.0",
64
- "eslint-plugin-node": "^11.1.0",
65
- "eslint-plugin-prettier": "^5.0.1",
66
- "eslint-plugin-promise": "^6.1.1",
67
- "eslint-plugin-regexp": "^2.1.1",
68
- "eslint-plugin-security": "^1.7.1",
69
- "eslint-plugin-simple-import-sort": "^10.0.0",
70
- "eslint-plugin-sonarjs": "^0.21.0",
71
- "eslint-plugin-sort-class-members": "^1.19.0",
72
- "eslint-plugin-sort-destructure-keys": "^1.5.0",
73
- "eslint-plugin-sort-keys-fix": "^1.1.2",
74
- "eslint-plugin-spellcheck": "^0.0.20",
75
- "eslint-plugin-sql": "^2.5.0",
76
- "eslint-plugin-testing-library": "^6.1.0",
77
- "eslint-plugin-typescript-sort-keys": "^3.1.0",
78
- "eslint-plugin-unicorn": "^49.0.0",
79
- "eslint-plugin-unused-imports": "^3.0.0",
80
- "eslint-plugin-vitest": "^0.3.8",
81
- "eslint-plugin-vue": "^9.18.1",
82
- "eslint-plugin-vuejs-accessibility": "^2.2.0",
83
- "eslint-plugin-wc": "^2.0.4",
84
- "eslint-plugin-write-good-comments": "^0.2.0",
85
- "typescript": "^5.2.2"
86
- }
87
- }
1
+ {
2
+ "name": "@alexlit/config-eslint",
3
+ "version": "70.1.0",
4
+ "private": false,
5
+ "description": "Eslint config",
6
+ "keywords": [
7
+ "eslint",
8
+ "config"
9
+ ],
10
+ "homepage": "https://github.com/alex-lit/lint-kit#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/alex-lit/lint-kit/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/alex-lit/lint-kit.git",
17
+ "directory": "packages/config-eslint"
18
+ },
19
+ "license": "MIT",
20
+ "author": "Alexey Litovchenko",
21
+ "maintainers": [
22
+ "Alexey Litovchenko <alex.lit@outlook.com> (https://alexlit.gitlab.io)"
23
+ ],
24
+ "main": "index.js",
25
+ "files": [
26
+ "README.md",
27
+ "dictionaries",
28
+ "index.js",
29
+ "plugins"
30
+ ],
31
+ "scripts": {
32
+ "semver": "../../scripts/semver.sh",
33
+ "up": "../../scripts/up.sh"
34
+ },
35
+ "dependencies": {
36
+ "@intlify/eslint-plugin-vue-i18n": "^2.0.0",
37
+ "@tanstack/eslint-plugin-query": "^5.0.5",
38
+ "@typescript-eslint/eslint-plugin": "^6.9.1",
39
+ "@typescript-eslint/parser": "^6.9.1",
40
+ "eslint": "^8.52.0",
41
+ "eslint-config-airbnb-base": "^15.0.0",
42
+ "eslint-config-prettier": "^9.0.0",
43
+ "eslint-define-config": "^1.24.1",
44
+ "eslint-import-resolver-alias": "^1.1.2",
45
+ "eslint-plugin-array-func": "^4.0.0",
46
+ "eslint-plugin-compat": "^4.2.0",
47
+ "eslint-plugin-decorator-position": "^5.0.2",
48
+ "eslint-plugin-eslint-comments": "^3.2.0",
49
+ "eslint-plugin-etc": "^2.0.3",
50
+ "eslint-plugin-ext": "^0.1.0",
51
+ "eslint-plugin-filenames": "^1.3.2",
52
+ "eslint-plugin-import": "^2.29.0",
53
+ "eslint-plugin-jsdoc": "^46.8.2",
54
+ "eslint-plugin-jsx-a11y": "^6.8.0",
55
+ "eslint-plugin-lit": "^1.10.1",
56
+ "eslint-plugin-lit-a11y": "^4.1.1",
57
+ "eslint-plugin-more": "^1.0.5",
58
+ "eslint-plugin-no-await-in-promise": "^1.1.5",
59
+ "eslint-plugin-no-constructor-bind": "^2.0.4",
60
+ "eslint-plugin-no-explicit-type-exports": "^0.12.1",
61
+ "eslint-plugin-no-loops": "^0.3.0",
62
+ "eslint-plugin-no-secrets": "^0.8.9",
63
+ "eslint-plugin-no-use-extend-native": "^0.5.0",
64
+ "eslint-plugin-node": "^11.1.0",
65
+ "eslint-plugin-prettier": "^5.0.1",
66
+ "eslint-plugin-promise": "^6.1.1",
67
+ "eslint-plugin-regexp": "^2.1.1",
68
+ "eslint-plugin-security": "^1.7.1",
69
+ "eslint-plugin-simple-import-sort": "^10.0.0",
70
+ "eslint-plugin-sonarjs": "^0.22.0",
71
+ "eslint-plugin-sort-class-members": "^1.19.0",
72
+ "eslint-plugin-sort-destructure-keys": "^1.5.0",
73
+ "eslint-plugin-sort-keys-fix": "^1.1.2",
74
+ "eslint-plugin-spellcheck": "^0.0.20",
75
+ "eslint-plugin-sql": "^2.5.0",
76
+ "eslint-plugin-testing-library": "^6.1.0",
77
+ "eslint-plugin-typescript-sort-keys": "^3.1.0",
78
+ "eslint-plugin-unicorn": "^49.0.0",
79
+ "eslint-plugin-unused-imports": "^3.0.0",
80
+ "eslint-plugin-vitest": "^0.3.8",
81
+ "eslint-plugin-vue": "^9.18.1",
82
+ "eslint-plugin-vuejs-accessibility": "^2.2.0",
83
+ "eslint-plugin-wc": "^2.0.4",
84
+ "eslint-plugin-write-good-comments": "^0.2.0",
85
+ "typescript": "^5.2.2"
86
+ }
87
+ }
@@ -47,6 +47,8 @@ module.exports = {
47
47
 
48
48
  '@typescript-eslint/explicit-module-boundary-types': 'off',
49
49
 
50
+ '@typescript-eslint/indent': 'off',
51
+
50
52
  '@typescript-eslint/member-ordering': 'off', // delegate to sort-class-members plugin
51
53
 
52
54
  '@typescript-eslint/method-signature-style': ['error', 'method'],
@@ -1,38 +1,38 @@
1
- {
2
- "name": "@alexlit/config-hooks",
3
- "version": "0.0.2",
4
- "private": false,
5
- "description": "Hooks config",
6
- "keywords": [
7
- "hooks",
8
- "config"
9
- ],
10
- "homepage": "https://github.com/alex-lit/lint-kit#readme",
11
- "bugs": {
12
- "url": "https://github.com/alex-lit/lint-kit/issues"
13
- },
14
- "repository": {
15
- "type": "git",
16
- "url": "https://github.com/alex-lit/lint-kit.git",
17
- "directory": "packages/config-hooks"
18
- },
19
- "license": "MIT",
20
- "author": "Alexey Litovchenko",
21
- "maintainers": [
22
- "Alexey Litovchenko <alex.lit@outlook.com> (https://alexlit.gitlab.io)"
23
- ],
24
- "main": "",
25
- "files": [
26
- "README.md",
27
- "husky.js",
28
- "lint-staged.js"
29
- ],
30
- "scripts": {
31
- "semver": "../../scripts/semver.sh",
32
- "up": "../../scripts/up.sh"
33
- },
34
- "dependencies": {
35
- "husky": "^4.3.8",
36
- "lint-staged": "^15.0.2"
37
- }
38
- }
1
+ {
2
+ "name": "@alexlit/config-hooks",
3
+ "version": "0.0.2",
4
+ "private": false,
5
+ "description": "Hooks config",
6
+ "keywords": [
7
+ "hooks",
8
+ "config"
9
+ ],
10
+ "homepage": "https://github.com/alex-lit/lint-kit#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/alex-lit/lint-kit/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/alex-lit/lint-kit.git",
17
+ "directory": "packages/config-hooks"
18
+ },
19
+ "license": "MIT",
20
+ "author": "Alexey Litovchenko",
21
+ "maintainers": [
22
+ "Alexey Litovchenko <alex.lit@outlook.com> (https://alexlit.gitlab.io)"
23
+ ],
24
+ "main": "",
25
+ "files": [
26
+ "README.md",
27
+ "husky.js",
28
+ "lint-staged.js"
29
+ ],
30
+ "scripts": {
31
+ "semver": "../../scripts/semver.sh",
32
+ "up": "../../scripts/up.sh"
33
+ },
34
+ "dependencies": {
35
+ "husky": "^4.3.8",
36
+ "lint-staged": "^15.0.2"
37
+ }
38
+ }
@@ -1,39 +1,39 @@
1
- {
2
- "name": "@alexlit/config-htmllint",
3
- "version": "1.0.1",
4
- "private": false,
5
- "description": "htmllint config",
6
- "keywords": [
7
- "config",
8
- "html",
9
- "htmllint",
10
- "linthtml"
11
- ],
12
- "homepage": "https://github.com/alex-lit/lint-kit#readme",
13
- "bugs": {
14
- "url": "https://github.com/alex-lit/lint-kit/issues"
15
- },
16
- "repository": {
17
- "type": "git",
18
- "url": "https://github.com/alex-lit/lint-kit.git",
19
- "directory": "packages/config-htmllint"
20
- },
21
- "license": "MIT",
22
- "author": "Alexey Litovchenko",
23
- "maintainers": [
24
- "Alexey Litovchenko <alex.lit@outlook.com> (https://alexlit.gitlab.io)"
25
- ],
26
- "main": "index.js",
27
- "files": [
28
- "README.md",
29
- "index.js"
30
- ],
31
- "scripts": {
32
- "semver": "../../scripts/semver.sh",
33
- "up": "../../scripts/up.sh"
34
- },
35
- "dependencies": {
36
- "@linthtml/linthtml": "^0.9.5",
37
- "@linthtml/linthtml-config-recommended": "^0.1.0"
38
- }
39
- }
1
+ {
2
+ "name": "@alexlit/config-htmllint",
3
+ "version": "1.0.1",
4
+ "private": false,
5
+ "description": "htmllint config",
6
+ "keywords": [
7
+ "config",
8
+ "html",
9
+ "htmllint",
10
+ "linthtml"
11
+ ],
12
+ "homepage": "https://github.com/alex-lit/lint-kit#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/alex-lit/lint-kit/issues"
15
+ },
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/alex-lit/lint-kit.git",
19
+ "directory": "packages/config-htmllint"
20
+ },
21
+ "license": "MIT",
22
+ "author": "Alexey Litovchenko",
23
+ "maintainers": [
24
+ "Alexey Litovchenko <alex.lit@outlook.com> (https://alexlit.gitlab.io)"
25
+ ],
26
+ "main": "index.js",
27
+ "files": [
28
+ "README.md",
29
+ "index.js"
30
+ ],
31
+ "scripts": {
32
+ "semver": "../../scripts/semver.sh",
33
+ "up": "../../scripts/up.sh"
34
+ },
35
+ "dependencies": {
36
+ "@linthtml/linthtml": "^0.9.5",
37
+ "@linthtml/linthtml-config-recommended": "^0.1.0"
38
+ }
39
+ }