@alexlit/lint-kit 120.7.0 → 121.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/lint-kit",
3
- "version": "120.7.0",
3
+ "version": "121.0.0",
4
4
  "private": false,
5
5
  "description": "Preset of configuration files and dependencies for linting web applications (designed for Vue.js with TypeScript)",
6
6
  "keywords": [
@@ -0,0 +1,15 @@
1
+ # Changelog
2
+
3
+
4
+ ## v88.0.0
5
+
6
+ [compare changes](https://github.com/alex-lit/lint-kit/compare/v45.10.1...v88.0.0)
7
+
8
+ ### 🏡 Chore
9
+
10
+ - **@alexlit/config-stylelint:** Bump version ([f24c6c7](https://github.com/alex-lit/lint-kit/commit/f24c6c7))
11
+
12
+ ### ❤️ Contributors
13
+
14
+ - Alexey Litovchenko ([@alex-lit](http://github.com/alex-lit))
15
+
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "86.7.0",
3
+ "version": "88.0.0",
4
4
  "private": false,
5
5
  "description": "Eslint config",
6
6
  "keywords": [
@@ -38,10 +38,10 @@
38
38
  "up": "../../scripts/up.sh"
39
39
  },
40
40
  "dependencies": {
41
- "@babel/eslint-parser": "^7.24.7",
41
+ "@babel/eslint-parser": "^7.24.8",
42
42
  "@eslint/eslintrc": "^3.1.0",
43
43
  "@intlify/eslint-plugin-vue-i18n": "^3.0.0",
44
- "@tanstack/eslint-plugin-query": "^5.50.1",
44
+ "@tanstack/eslint-plugin-query": "^5.51.1",
45
45
  "@typescript-eslint/eslint-plugin": "^7.16.0",
46
46
  "@typescript-eslint/parser": "^7.16.0",
47
47
  "eslint": "^8.57.0",
@@ -50,17 +50,17 @@
50
50
  "eslint-define-config": "^2.1.0",
51
51
  "eslint-import-resolver-alias": "^1.1.2",
52
52
  "eslint-plugin-array-func": "^4.0.0",
53
- "eslint-plugin-compat": "^5.0.0",
53
+ "eslint-plugin-compat": "^6.0.0",
54
54
  "eslint-plugin-decorator-position": "^5.0.2",
55
55
  "eslint-plugin-eslint-comments": "^3.2.0",
56
56
  "eslint-plugin-etc": "^2.0.3",
57
57
  "eslint-plugin-ext": "^0.1.0",
58
58
  "eslint-plugin-filenames": "^1.3.2",
59
59
  "eslint-plugin-import": "^2.29.1",
60
- "eslint-plugin-jsdoc": "^48.6.0",
60
+ "eslint-plugin-jsdoc": "^48.7.0",
61
61
  "eslint-plugin-jsx-a11y": "^6.9.0",
62
62
  "eslint-plugin-lit": "^1.14.0",
63
- "eslint-plugin-lit-a11y": "^4.1.3",
63
+ "eslint-plugin-lit-a11y": "^4.1.4",
64
64
  "eslint-plugin-more": "^1.0.5",
65
65
  "eslint-plugin-no-await-in-promise": "^2.0.1",
66
66
  "eslint-plugin-no-constructor-bind": "^2.0.4",
@@ -15,9 +15,9 @@ module.exports = {
15
15
  ArrowFunctionExpression: false,
16
16
  ClassDeclaration: true,
17
17
  ClassExpression: false,
18
- FunctionDeclaration: true,
18
+ FunctionDeclaration: false,
19
19
  FunctionExpression: false,
20
- MethodDefinition: true,
20
+ MethodDefinition: false,
21
21
  },
22
22
  },
23
23
  ],
@@ -1,10 +1,10 @@
1
1
  module.exports = {
2
2
  extends: ['prettier'],
3
3
 
4
- plugins: ['prettier'],
4
+ // plugins: ['prettier'],
5
5
 
6
6
  rules: {
7
- 'prettier/prettier': 'error',
7
+ // 'prettier/prettier': 'error',
8
8
 
9
9
  /** Fix for prettier/vue */
10
10
  'vue/html-self-closing': [
@@ -1,8 +1,8 @@
1
1
  /* eslint-disable unicorn/no-null */
2
2
 
3
- const ALLOW_BOOLEAN_PROPERTY_LIST = require('../constants/allow-boolean-property-list');
4
- const BOOLEAN_PREFIXES = require('../constants/boolean-prefixes');
5
- const ENGLISH_VERBS = require('../constants/english-verbs');
3
+ // const ALLOW_BOOLEAN_PROPERTY_LIST = require('../constants/allow-boolean-property-list');
4
+ // const BOOLEAN_PREFIXES = require('../constants/boolean-prefixes');
5
+ // const ENGLISH_VERBS = require('../constants/english-verbs');
6
6
 
7
7
  module.exports = {
8
8
  extends: ['plugin:@typescript-eslint/recommended'],
@@ -52,89 +52,91 @@ module.exports = {
52
52
 
53
53
  '@typescript-eslint/method-signature-style': ['error', 'method'],
54
54
 
55
- '@typescript-eslint/naming-convention': [
56
- 'error',
57
- {
58
- format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
59
- selector: 'default',
60
- },
61
- {
62
- format: ['camelCase'],
63
- selector: 'variable',
64
- },
65
- {
66
- format: ['camelCase'],
67
- leadingUnderscore: 'allow',
68
- selector: 'parameter',
69
- },
70
- {
71
- format: ['camelCase'],
72
- leadingUnderscore: 'require',
73
- modifiers: ['private'],
74
- selector: 'memberLike',
75
- },
76
- {
77
- format: ['PascalCase'],
78
- selector: ['typeLike'],
79
- },
80
- {
81
- format: ['UPPER_CASE'],
82
- selector: ['enumMember'],
83
- },
84
- {
85
- custom: {
86
- match: false,
87
- regex: '^I[A-Z]',
88
- },
89
-
90
- format: ['PascalCase'],
91
- selector: 'interface',
92
- },
93
- {
94
- format: null,
95
- leadingUnderscore: 'allow',
96
- selector: 'objectLiteralProperty',
97
- },
98
- {
99
- format: null,
100
- selector: 'objectLiteralMethod',
101
- },
102
- {
103
- format: null,
104
- modifiers: ['destructured'],
105
- selector: 'parameter',
106
- },
107
- {
108
- format: ['camelCase', 'UPPER_CASE', 'PascalCase'],
109
- modifiers: ['const'],
110
- selector: 'variable',
111
- },
112
- {
113
- filter: {
114
- match: false,
115
- regex: `(${ALLOW_BOOLEAN_PROPERTY_LIST.join('|')})`,
116
- },
117
-
118
- format: ['PascalCase'],
119
-
120
- leadingUnderscore: 'allow',
121
-
122
- prefix: BOOLEAN_PREFIXES,
123
-
124
- selector: ['accessor', 'parameter', 'variable'],
125
-
126
- types: ['boolean'],
127
- },
128
- {
129
- format: ['PascalCase'],
130
-
131
- leadingUnderscore: 'allow',
132
-
133
- prefix: [...ENGLISH_VERBS, 'on'],
134
-
135
- selector: ['classMethod', 'function'],
136
- },
137
- ],
55
+ '@typescript-eslint/naming-convention': 'off', // slow
56
+
57
+ // '@typescript-eslint/naming-convention': [
58
+ // 'error',
59
+ // {
60
+ // format: ['camelCase', 'PascalCase', 'UPPER_CASE'],
61
+ // selector: 'default',
62
+ // },
63
+ // {
64
+ // format: ['camelCase'],
65
+ // selector: 'variable',
66
+ // },
67
+ // {
68
+ // format: ['camelCase'],
69
+ // leadingUnderscore: 'allow',
70
+ // selector: 'parameter',
71
+ // },
72
+ // {
73
+ // format: ['camelCase'],
74
+ // leadingUnderscore: 'require',
75
+ // modifiers: ['private'],
76
+ // selector: 'memberLike',
77
+ // },
78
+ // {
79
+ // format: ['PascalCase'],
80
+ // selector: ['typeLike'],
81
+ // },
82
+ // {
83
+ // format: ['UPPER_CASE'],
84
+ // selector: ['enumMember'],
85
+ // },
86
+ // {
87
+ // custom: {
88
+ // match: false,
89
+ // regex: '^I[A-Z]',
90
+ // },
91
+
92
+ // format: ['PascalCase'],
93
+ // selector: 'interface',
94
+ // },
95
+ // {
96
+ // format: null,
97
+ // leadingUnderscore: 'allow',
98
+ // selector: 'objectLiteralProperty',
99
+ // },
100
+ // {
101
+ // format: null,
102
+ // selector: 'objectLiteralMethod',
103
+ // },
104
+ // {
105
+ // format: null,
106
+ // modifiers: ['destructured'],
107
+ // selector: 'parameter',
108
+ // },
109
+ // {
110
+ // format: ['camelCase', 'UPPER_CASE', 'PascalCase'],
111
+ // modifiers: ['const'],
112
+ // selector: 'variable',
113
+ // },
114
+ // {
115
+ // filter: {
116
+ // match: false,
117
+ // regex: `(${ALLOW_BOOLEAN_PROPERTY_LIST.join('|')})`,
118
+ // },
119
+
120
+ // format: ['PascalCase'],
121
+
122
+ // leadingUnderscore: 'allow',
123
+
124
+ // prefix: BOOLEAN_PREFIXES,
125
+
126
+ // selector: ['accessor', 'parameter', 'variable'],
127
+
128
+ // types: ['boolean'],
129
+ // },
130
+ // {
131
+ // format: ['PascalCase'],
132
+
133
+ // leadingUnderscore: 'allow',
134
+
135
+ // prefix: [...ENGLISH_VERBS, 'on'],
136
+
137
+ // selector: ['classMethod', 'function'],
138
+ // },
139
+ // ],
138
140
 
139
141
  '@typescript-eslint/no-explicit-any': 'off',
140
142
 
@@ -3,27 +3,9 @@
3
3
  const { defineConfig } = require('eslint-define-config');
4
4
 
5
5
  const DEFAULT_PLUGINS = {
6
- /** @see [eslint-plugin-array-func](https://github.com/freaktechnik/eslint-plugin-array-func) */
7
- 'array-func': true,
8
-
9
- /** @see [eslint-plugin-compat](https://github.com/amilajack/eslint-plugin-compat) */
10
- compat: true,
11
-
12
6
  /** @see [eslint-plugin-decorator-position](https://github.com/NullVoxPopuli/eslint-plugin-decorator-position) */
13
7
  'decorator-position': true,
14
8
 
15
- /** @see [eslint-plugin-eslint-comments](hhttps://github.com/mysticatea/eslint-plugin-eslint-comments) */
16
- 'eslint-comments': true,
17
-
18
- /** @see [eslint-plugin-etc](https://github.com/cartant/eslint-plugin-etc) */
19
- etc: true,
20
-
21
- /** @see [eslint-plugin-ext](https://github.com/jiangfengming/eslint-plugin-ext) */
22
- ext: true,
23
-
24
- /** @see [eslint-plugin-filenames](https://github.com/selaux/eslint-plugin-filenames) */
25
- filenames: true,
26
-
27
9
  /**
28
10
  * @see [eslint-plugin-import](https://github.com/benmosher/eslint-plugin-import)
29
11
  * @see [eslint-import-resolver-alias](https://github.com/johvin/eslint-import-resolver-alias)
@@ -33,39 +15,6 @@ const DEFAULT_PLUGINS = {
33
15
  /** @see [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) */
34
16
  jsdoc: true,
35
17
 
36
- /** @see [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) */
37
- 'jsx-a11y': true,
38
-
39
- /** @see [eslint-plugin-lit](https://github.com/43081j/eslint-plugin-lit) */
40
- lit: true,
41
-
42
- /** @see [eslint-plugin-lit-a11y](https://www.npmjs.com/package/eslint-plugin-lit-a11y) */
43
- 'lit-a11y': true,
44
-
45
- /** @see [eslint-plugin-more](https://github.com/WebbyLab/eslint-plugin-more) */
46
- more: true,
47
-
48
- /** @see [eslint-plugin-no-await-in-promise](https://github.com/hugo-vrijswijk/eslint-plugin-no-await-in-promise/) */
49
- 'no-await-in-promise': true,
50
-
51
- /** @see [eslint-plugin-no-constructor-bind](https://github.com/markalfred/eslint-plugin-no-constructor-bind) */
52
- 'no-constructor-bind': true,
53
-
54
- /** @see [eslint-plugin-no-explicit-type-exports](https://github.com/intuit/eslint-plugin-no-explicit-type-exports) */
55
- 'no-explicit-type-exports': true,
56
-
57
- /** @see [eslint-plugin-no-loops](https://github.com/buildo/eslint-plugin-no-loops) */
58
- 'no-loops': true,
59
-
60
- /** @see [eslint-plugin-no-secrets](https://github.com/nickdeis/eslint-plugin-no-secrets) */
61
- 'no-secrets': true,
62
-
63
- /** @see [eslint-plugin-no-use-extend-native](https://github.com/dustinspecker/eslint-plugin-no-use-extend-native) */
64
- 'no-use-extend-native': true,
65
-
66
- /** @see [eslint-plugin-promise](https://github.com/xjamundx/eslint-plugin-promise) */
67
- promise: true,
68
-
69
18
  /** @see [eslint-plugin-regexp](https://github.com/ota-meshi/eslint-plugin-regexp) */
70
19
  regexp: true,
71
20
 
@@ -84,12 +33,6 @@ const DEFAULT_PLUGINS = {
84
33
  /** @see [eslint-plugin-sort-keys-fix](https://github.com/leo-buneev/eslint-plugin-sort-keys-fix) */
85
34
  'sort-keys-fix': true,
86
35
 
87
- /** @see [eslint-plugin-spellcheck](https://github.com/aotaduy/eslint-plugin-spellcheck) */
88
- spellcheck: true,
89
-
90
- /** @see [eslint-plugin-sql](https://github.com/gajus/eslint-plugin-sql) */
91
- sql: true,
92
-
93
36
  /** @see [@tanstack/query](https://tanstack.com/query/v4/docs/react/eslint/eslint-plugin-query) */
94
37
  'tanstack-query': true,
95
38
 
@@ -119,20 +62,77 @@ const DEFAULT_PLUGINS = {
119
62
 
120
63
  /** @see [eslint-plugin-vuejs-accessibility](https://github.com/vue-a11y/eslint-plugin-vuejs-accessibility) */
121
64
  'vuejs-accessibility': true,
122
-
123
- /** @see [eslint-plugin-wc](https://github.com/43081j/eslint-plugin-wc) */
124
- wc: true,
125
-
126
- /** @see [eslint-plugin-write-good-comments](https://github.com/kantord/eslint-plugin-write-good-comments) */
127
- 'write-good-comments': true,
128
65
  };
129
66
 
130
67
  const OPTIONAL_PLUGINS = {
68
+ /** @see [eslint-plugin-array-func](https://github.com/freaktechnik/eslint-plugin-array-func) */
69
+ 'array-func': false,
70
+
71
+ /** @see [eslint-plugin-compat](https://github.com/amilajack/eslint-plugin-compat) */
72
+ compat: false,
73
+
74
+ /** @see [eslint-plugin-eslint-comments](https://github.com/mysticatea/eslint-plugin-eslint-comments) */
75
+ 'eslint-comments': false,
76
+
77
+ /** @see [eslint-plugin-etc](https://github.com/cartant/eslint-plugin-etc) */
78
+ etc: false,
79
+
80
+ /** @see [eslint-plugin-ext](https://github.com/jiangfengming/eslint-plugin-ext) */
81
+ ext: false,
82
+
83
+ /** @see [eslint-plugin-filenames](https://github.com/selaux/eslint-plugin-filenames) */
84
+ filenames: false,
85
+
86
+ /** @see [eslint-plugin-jsx-a11y](https://github.com/jsx-eslint/eslint-plugin-jsx-a11y) */
87
+ 'jsx-a11y': false,
88
+
89
+ /** @see [eslint-plugin-lit](https://github.com/43081j/eslint-plugin-lit) */
90
+ lit: false,
91
+
92
+ /** @see [eslint-plugin-lit-a11y](https://www.npmjs.com/package/eslint-plugin-lit-a11y) */
93
+ 'lit-a11y': false,
94
+
95
+ /** @see [eslint-plugin-more](https://github.com/WebbyLab/eslint-plugin-more) */
96
+ more: false,
97
+
98
+ /** @see [eslint-plugin-no-await-in-promise](https://github.com/hugo-vrijswijk/eslint-plugin-no-await-in-promise/) */
99
+ 'no-await-in-promise': false,
100
+
101
+ /** @see [eslint-plugin-no-constructor-bind](https://github.com/markalfred/eslint-plugin-no-constructor-bind) */
102
+ 'no-constructor-bind': false,
103
+
104
+ /** @see [eslint-plugin-no-explicit-type-exports](https://github.com/intuit/eslint-plugin-no-explicit-type-exports) */
105
+ 'no-explicit-type-exports': false,
106
+
107
+ /** @see [eslint-plugin-no-loops](https://github.com/buildo/eslint-plugin-no-loops) */
108
+ 'no-loops': false,
109
+
110
+ /** @see [eslint-plugin-no-secrets](https://github.com/nickdeis/eslint-plugin-no-secrets) */
111
+ 'no-secrets': false,
112
+
113
+ /** @see [eslint-plugin-no-use-extend-native](https://github.com/dustinspecker/eslint-plugin-no-use-extend-native) */
114
+ 'no-use-extend-native': false,
115
+
131
116
  /** @see [eslint-plugin-node](https://github.com/mysticatea/eslint-plugin-node) */
132
117
  node: false,
133
118
 
119
+ /** @see [eslint-plugin-promise](https://github.com/xjamundx/eslint-plugin-promise) */
120
+ promise: false,
121
+
134
122
  /** @see [eslint-plugin-security](https://github.com/nodesecurity/eslint-plugin-security) */
135
123
  security: false,
124
+
125
+ /** @see [eslint-plugin-spellcheck](https://github.com/aotaduy/eslint-plugin-spellcheck) */
126
+ spellcheck: false,
127
+
128
+ /** @see [eslint-plugin-sql](https://github.com/gajus/eslint-plugin-sql) */
129
+ sql: false,
130
+
131
+ /** @see [eslint-plugin-wc](https://github.com/43081j/eslint-plugin-wc) */
132
+ wc: false,
133
+
134
+ /** @see [eslint-plugin-write-good-comments](https://github.com/kantord/eslint-plugin-write-good-comments) */
135
+ 'write-good-comments': false,
136
136
  };
137
137
 
138
138
  const CODESTYLE_PLUGINS = {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-prettier",
3
- "version": "18.5.5",
3
+ "version": "18.5.7",
4
4
  "private": false,
5
5
  "description": "prettier config",
6
6
  "keywords": [
@@ -38,7 +38,7 @@
38
38
  "@prettier/plugin-pug": "^3.0.0",
39
39
  "@prettier/plugin-ruby": "^4.0.4",
40
40
  "@prettier/plugin-xml": "^3.4.1",
41
- "prettier": "^3.3.2",
41
+ "prettier": "^3.3.3",
42
42
  "prettier-plugin-jsdoc": "^1.3.0",
43
43
  "prettier-plugin-packagejson": "^2.5.0",
44
44
  "prettier-plugin-sh": "^0.14.0",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-stylelint",
3
- "version": "45.10.0",
3
+ "version": "45.11.0",
4
4
  "private": false,
5
5
  "description": "Stylelint config",
6
6
  "keywords": [
@@ -37,8 +37,8 @@
37
37
  "@double-great/stylelint-a11y": "^3.0.2",
38
38
  "postcss": "^8.4.39",
39
39
  "postcss-html": "^1.7.0",
40
- "prettier": "^3.3.2",
41
- "stylelint": "^16.6.1",
40
+ "prettier": "^3.3.3",
41
+ "stylelint": "^16.7.0",
42
42
  "stylelint-at-rule-no-children": "^0.3.1",
43
43
  "stylelint-color-format": "^1.1.0",
44
44
  "stylelint-config-recommended-vue": "^1.5.0",
@@ -53,8 +53,8 @@
53
53
  "stylelint-no-unsupported-browser-features": "^8.0.1",
54
54
  "stylelint-order": "^6.0.4",
55
55
  "stylelint-plugin-logical-css": "^1.2.1",
56
- "stylelint-prettier": "^5.0.0",
57
- "stylelint-scss": "^6.4.0",
56
+ "stylelint-prettier": "^5.0.1",
57
+ "stylelint-scss": "^6.4.1",
58
58
  "stylelint-selector-no-empty": "^1.0.9",
59
59
  "stylelint-use-nesting": "^5.1.1"
60
60
  },
@@ -1,6 +1,6 @@
1
1
  # Подсчет кол-ва строк кода в исходных файлах
2
2
 
3
- source "$(dirname $0)"/.config.sh
3
+ source "$(dirname $0)"/../bash.config.sh
4
4
 
5
5
  echo -e "${YELLOW}Проверяю editorconfig...${WHITE}"
6
6
 
package/scripts/i.sh CHANGED
@@ -1,6 +1,6 @@
1
1
  # Устанавливает зависимости
2
2
 
3
- source "$(dirname $0)"/.config.sh
3
+ source "$(dirname $0)"/../bash.config.sh
4
4
 
5
5
  echo -e "${YELLOW}Устанавливаю зависимости...${WHITE}"
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Launch scripts linter
2
2
 
3
- source "$(dirname $0)"/.config.sh
3
+ source "$(dirname $0)"/../bash.config.sh
4
4
 
5
5
  OPTION=${1}
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Launch HTML linter
2
2
 
3
- source "$(dirname $0)"/.config.sh
3
+ source "$(dirname $0)"/../bash.config.sh
4
4
 
5
5
  FILES='**/*.html'
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Launch linter for .md files
2
2
 
3
- source "$(dirname $0)"/.config.sh
3
+ source "$(dirname $0)"/../bash.config.sh
4
4
 
5
5
  OPTION=${1}
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Launch NPM linter
2
2
 
3
- source "$(dirname $0)"/.config.sh
3
+ source "$(dirname $0)"/../bash.config.sh
4
4
 
5
5
  PACKAGE_FILES='. ./packages'
6
6
  LOCK_FILE='package-lock.json'
package/scripts/lint.sh CHANGED
@@ -1,6 +1,6 @@
1
1
  # Запускает линтеры
2
2
 
3
- source "$(dirname $0)"/.config.sh
3
+ source "$(dirname $0)"/../bash.config.sh
4
4
 
5
5
  OPTION=${1}
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Launch styles linter
2
2
 
3
- source "$(dirname $0)"/.config.sh
3
+ source "$(dirname $0)"/../bash.config.sh
4
4
 
5
5
  OPTION=${1}
6
6
 
@@ -1,6 +1,6 @@
1
1
  # Релиз пакета (коммит в npm и git)
2
2
 
3
- source "$(dirname $0)"/.config.sh
3
+ source "$(dirname $0)"/../bash.config.sh
4
4
 
5
5
  VERSION=${1:-patch} # patch | minor | major
6
6
 
package/scripts/semver.sh CHANGED
@@ -1,6 +1,6 @@
1
1
  # Обновляет версию пакета
2
2
 
3
- source "$(dirname $0)"/.config.sh
3
+ source "$(dirname $0)"/../bash.config.sh
4
4
 
5
5
  VERSION=${1:-patch} # <major | minor | patch | premajor | preminor | prepatch | prerelease>
6
6
 
package/scripts/up.sh CHANGED
@@ -1,6 +1,6 @@
1
1
  # Обновляет зависимости до указанной версии (latest, newest, greatest, minor, patch)
2
2
 
3
- source "$(dirname $0)"/.config.sh
3
+ source "$(dirname $0)"/../bash.config.sh
4
4
 
5
5
  VERSION=${1:-minor}
6
6
 
@@ -1,14 +0,0 @@
1
- # Colors
2
- export BLUE='\e[94m'
3
- export CYAN='\e[96m'
4
- export GREEN='\e[32m'
5
- export GREY='\e[90m'
6
- export WHITE='\e[39m'
7
- export YELLOW='\e[33m'
8
-
9
- # Paths
10
- export CURRENT_DIR=${PWD##*/}
11
- export CURRENT_PACKAGE_NAME=$(node -p "require('./package.json').name")
12
- export CURRENT_PACKAGE_VERSION=$(node -p "require('./package.json').version")
13
- export MAIN_PACKAGE="@alexlit/lint-kit"
14
- export SKIPED_PACKAGES='eslint,eslint-plugin-array-func,eslint-plugin-no-use-extend-native'