@meteorlxy/eslint-config 4.0.0 → 4.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/dist/index.cjs +36 -8
- package/dist/index.d.cts +13 -1
- package/dist/index.d.mts +13 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.mjs +34 -6
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
const eslintCommentsPlugin = require('eslint-plugin-eslint-comments');
|
|
4
3
|
const importPlugin = require('eslint-plugin-import-x');
|
|
5
|
-
const globals = require('globals');
|
|
6
4
|
const confusingBrowserGlobals = require('confusing-browser-globals');
|
|
7
5
|
const tsPlugin = require('@typescript-eslint/eslint-plugin');
|
|
6
|
+
const eslintCommentsPlugin = require('eslint-plugin-eslint-comments');
|
|
7
|
+
const globals = require('globals');
|
|
8
8
|
const prettierConfig = require('eslint-config-prettier');
|
|
9
9
|
const tsParser = require('@typescript-eslint/parser');
|
|
10
10
|
|
|
11
11
|
function _interopDefaultCompat (e) { return e && typeof e === 'object' && 'default' in e ? e.default : e; }
|
|
12
12
|
|
|
13
|
-
const eslintCommentsPlugin__default = /*#__PURE__*/_interopDefaultCompat(eslintCommentsPlugin);
|
|
14
13
|
const importPlugin__default = /*#__PURE__*/_interopDefaultCompat(importPlugin);
|
|
15
|
-
const globals__default = /*#__PURE__*/_interopDefaultCompat(globals);
|
|
16
14
|
const confusingBrowserGlobals__default = /*#__PURE__*/_interopDefaultCompat(confusingBrowserGlobals);
|
|
17
15
|
const tsPlugin__default = /*#__PURE__*/_interopDefaultCompat(tsPlugin);
|
|
16
|
+
const eslintCommentsPlugin__default = /*#__PURE__*/_interopDefaultCompat(eslintCommentsPlugin);
|
|
17
|
+
const globals__default = /*#__PURE__*/_interopDefaultCompat(globals);
|
|
18
18
|
const prettierConfig__default = /*#__PURE__*/_interopDefaultCompat(prettierConfig);
|
|
19
19
|
const tsParser__default = /*#__PURE__*/_interopDefaultCompat(tsParser);
|
|
20
20
|
|
|
@@ -1717,14 +1717,39 @@ const index$1 = {
|
|
|
1717
1717
|
vueRules: vueRules
|
|
1718
1718
|
};
|
|
1719
1719
|
|
|
1720
|
+
const imports = ({
|
|
1721
|
+
overrides,
|
|
1722
|
+
packageDir
|
|
1723
|
+
} = {}) => [
|
|
1724
|
+
{
|
|
1725
|
+
name: "meteorlxy/imports/plugins",
|
|
1726
|
+
plugins: {
|
|
1727
|
+
import: importPlugin__default
|
|
1728
|
+
}
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
name: "meteorlxy/imports/rules",
|
|
1732
|
+
rules: {
|
|
1733
|
+
...importsRules,
|
|
1734
|
+
"import/no-extraneous-dependencies": [
|
|
1735
|
+
importsRules["import/no-extraneous-dependencies"][0],
|
|
1736
|
+
{
|
|
1737
|
+
...importsRules["import/no-extraneous-dependencies"][1],
|
|
1738
|
+
packageDir
|
|
1739
|
+
}
|
|
1740
|
+
],
|
|
1741
|
+
...overrides
|
|
1742
|
+
}
|
|
1743
|
+
}
|
|
1744
|
+
];
|
|
1745
|
+
|
|
1720
1746
|
const javascript = ({
|
|
1721
1747
|
overrides
|
|
1722
1748
|
} = {}) => [
|
|
1723
1749
|
{
|
|
1724
1750
|
name: "meteorlxy/javascript/plugins",
|
|
1725
1751
|
plugins: {
|
|
1726
|
-
"eslint-comments": eslintCommentsPlugin__default
|
|
1727
|
-
"import": importPlugin__default
|
|
1752
|
+
"eslint-comments": eslintCommentsPlugin__default
|
|
1728
1753
|
}
|
|
1729
1754
|
},
|
|
1730
1755
|
{
|
|
@@ -1751,7 +1776,6 @@ const javascript = ({
|
|
|
1751
1776
|
rules: {
|
|
1752
1777
|
...builtinRules,
|
|
1753
1778
|
...eslintCommentsRules,
|
|
1754
|
-
...importsRules,
|
|
1755
1779
|
...overrides
|
|
1756
1780
|
}
|
|
1757
1781
|
},
|
|
@@ -1804,7 +1828,8 @@ const markdown = async ({
|
|
|
1804
1828
|
program: null,
|
|
1805
1829
|
// used in typescript-eslint's disable-type-checking config, might be a typo program -> programs
|
|
1806
1830
|
programs: null,
|
|
1807
|
-
project: false
|
|
1831
|
+
project: false,
|
|
1832
|
+
projectService: false
|
|
1808
1833
|
}
|
|
1809
1834
|
},
|
|
1810
1835
|
rules: {
|
|
@@ -1983,6 +2008,7 @@ const vue = async ({
|
|
|
1983
2008
|
const index = {
|
|
1984
2009
|
__proto__: null,
|
|
1985
2010
|
ignores: ignores,
|
|
2011
|
+
imports: imports,
|
|
1986
2012
|
javascript: javascript,
|
|
1987
2013
|
markdown: markdown,
|
|
1988
2014
|
prettier: prettier,
|
|
@@ -2005,6 +2031,8 @@ const meteorlxy = async (options, ...customConfigs) => [
|
|
|
2005
2031
|
...ignores(options.ignores),
|
|
2006
2032
|
// javascript core rules
|
|
2007
2033
|
...javascript(options.javascript),
|
|
2034
|
+
// imports rules
|
|
2035
|
+
...imports(options.imports),
|
|
2008
2036
|
// react rules - should be placed before typescript rules
|
|
2009
2037
|
...options.react ? await react(options.react === true ? {} : options.react) : [],
|
|
2010
2038
|
// typescript rules
|
package/dist/index.d.cts
CHANGED
|
@@ -6,6 +6,15 @@ type EslintIgnoresOptions = FlatConfig.Config['ignores'];
|
|
|
6
6
|
*/
|
|
7
7
|
declare const ignores: (options?: EslintIgnoresOptions) => FlatConfig.Config[];
|
|
8
8
|
|
|
9
|
+
interface EslintImportsOptions {
|
|
10
|
+
overrides?: FlatConfig.Config['rules'];
|
|
11
|
+
packageDir?: string[] | string;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Imports configuration for eslint.
|
|
15
|
+
*/
|
|
16
|
+
declare const imports: ({ overrides, packageDir, }?: EslintImportsOptions) => FlatConfig.Config[];
|
|
17
|
+
|
|
9
18
|
interface EslintJavascriptOptions {
|
|
10
19
|
overrides?: FlatConfig.Config['rules'];
|
|
11
20
|
}
|
|
@@ -56,12 +65,14 @@ interface EslintVueOptions {
|
|
|
56
65
|
declare const vue: ({ files, overrides, }?: EslintVueOptions) => Promise<FlatConfig.Config[]>;
|
|
57
66
|
|
|
58
67
|
type index$1_EslintIgnoresOptions = EslintIgnoresOptions;
|
|
68
|
+
type index$1_EslintImportsOptions = EslintImportsOptions;
|
|
59
69
|
type index$1_EslintJavascriptOptions = EslintJavascriptOptions;
|
|
60
70
|
type index$1_EslintMarkdownOptions = EslintMarkdownOptions;
|
|
61
71
|
type index$1_EslintReactOptions = EslintReactOptions;
|
|
62
72
|
type index$1_EslintTypescriptOptions = EslintTypescriptOptions;
|
|
63
73
|
type index$1_EslintVueOptions = EslintVueOptions;
|
|
64
74
|
declare const index$1_ignores: typeof ignores;
|
|
75
|
+
declare const index$1_imports: typeof imports;
|
|
65
76
|
declare const index$1_javascript: typeof javascript;
|
|
66
77
|
declare const index$1_markdown: typeof markdown;
|
|
67
78
|
declare const index$1_prettier: typeof prettier;
|
|
@@ -69,7 +80,7 @@ declare const index$1_react: typeof react;
|
|
|
69
80
|
declare const index$1_typescript: typeof typescript;
|
|
70
81
|
declare const index$1_vue: typeof vue;
|
|
71
82
|
declare namespace index$1 {
|
|
72
|
-
export { type index$1_EslintIgnoresOptions as EslintIgnoresOptions, type index$1_EslintJavascriptOptions as EslintJavascriptOptions, type index$1_EslintMarkdownOptions as EslintMarkdownOptions, type index$1_EslintReactOptions as EslintReactOptions, type index$1_EslintTypescriptOptions as EslintTypescriptOptions, type index$1_EslintVueOptions as EslintVueOptions, index$1_ignores as ignores, index$1_javascript as javascript, index$1_markdown as markdown, index$1_prettier as prettier, index$1_react as react, index$1_typescript as typescript, index$1_vue as vue };
|
|
83
|
+
export { type index$1_EslintIgnoresOptions as EslintIgnoresOptions, type index$1_EslintImportsOptions as EslintImportsOptions, type index$1_EslintJavascriptOptions as EslintJavascriptOptions, type index$1_EslintMarkdownOptions as EslintMarkdownOptions, type index$1_EslintReactOptions as EslintReactOptions, type index$1_EslintTypescriptOptions as EslintTypescriptOptions, type index$1_EslintVueOptions as EslintVueOptions, index$1_ignores as ignores, index$1_imports as imports, index$1_javascript as javascript, index$1_markdown as markdown, index$1_prettier as prettier, index$1_react as react, index$1_typescript as typescript, index$1_vue as vue };
|
|
73
84
|
}
|
|
74
85
|
|
|
75
86
|
declare const IS_CI: boolean;
|
|
@@ -1328,6 +1339,7 @@ declare namespace utils {
|
|
|
1328
1339
|
|
|
1329
1340
|
interface EslintOptions {
|
|
1330
1341
|
ignores?: EslintIgnoresOptions;
|
|
1342
|
+
imports?: EslintImportsOptions;
|
|
1331
1343
|
javascript?: EslintJavascriptOptions;
|
|
1332
1344
|
markdown?: EslintMarkdownOptions | boolean;
|
|
1333
1345
|
react?: EslintReactOptions | boolean;
|
package/dist/index.d.mts
CHANGED
|
@@ -6,6 +6,15 @@ type EslintIgnoresOptions = FlatConfig.Config['ignores'];
|
|
|
6
6
|
*/
|
|
7
7
|
declare const ignores: (options?: EslintIgnoresOptions) => FlatConfig.Config[];
|
|
8
8
|
|
|
9
|
+
interface EslintImportsOptions {
|
|
10
|
+
overrides?: FlatConfig.Config['rules'];
|
|
11
|
+
packageDir?: string[] | string;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Imports configuration for eslint.
|
|
15
|
+
*/
|
|
16
|
+
declare const imports: ({ overrides, packageDir, }?: EslintImportsOptions) => FlatConfig.Config[];
|
|
17
|
+
|
|
9
18
|
interface EslintJavascriptOptions {
|
|
10
19
|
overrides?: FlatConfig.Config['rules'];
|
|
11
20
|
}
|
|
@@ -56,12 +65,14 @@ interface EslintVueOptions {
|
|
|
56
65
|
declare const vue: ({ files, overrides, }?: EslintVueOptions) => Promise<FlatConfig.Config[]>;
|
|
57
66
|
|
|
58
67
|
type index$1_EslintIgnoresOptions = EslintIgnoresOptions;
|
|
68
|
+
type index$1_EslintImportsOptions = EslintImportsOptions;
|
|
59
69
|
type index$1_EslintJavascriptOptions = EslintJavascriptOptions;
|
|
60
70
|
type index$1_EslintMarkdownOptions = EslintMarkdownOptions;
|
|
61
71
|
type index$1_EslintReactOptions = EslintReactOptions;
|
|
62
72
|
type index$1_EslintTypescriptOptions = EslintTypescriptOptions;
|
|
63
73
|
type index$1_EslintVueOptions = EslintVueOptions;
|
|
64
74
|
declare const index$1_ignores: typeof ignores;
|
|
75
|
+
declare const index$1_imports: typeof imports;
|
|
65
76
|
declare const index$1_javascript: typeof javascript;
|
|
66
77
|
declare const index$1_markdown: typeof markdown;
|
|
67
78
|
declare const index$1_prettier: typeof prettier;
|
|
@@ -69,7 +80,7 @@ declare const index$1_react: typeof react;
|
|
|
69
80
|
declare const index$1_typescript: typeof typescript;
|
|
70
81
|
declare const index$1_vue: typeof vue;
|
|
71
82
|
declare namespace index$1 {
|
|
72
|
-
export { type index$1_EslintIgnoresOptions as EslintIgnoresOptions, type index$1_EslintJavascriptOptions as EslintJavascriptOptions, type index$1_EslintMarkdownOptions as EslintMarkdownOptions, type index$1_EslintReactOptions as EslintReactOptions, type index$1_EslintTypescriptOptions as EslintTypescriptOptions, type index$1_EslintVueOptions as EslintVueOptions, index$1_ignores as ignores, index$1_javascript as javascript, index$1_markdown as markdown, index$1_prettier as prettier, index$1_react as react, index$1_typescript as typescript, index$1_vue as vue };
|
|
83
|
+
export { type index$1_EslintIgnoresOptions as EslintIgnoresOptions, type index$1_EslintImportsOptions as EslintImportsOptions, type index$1_EslintJavascriptOptions as EslintJavascriptOptions, type index$1_EslintMarkdownOptions as EslintMarkdownOptions, type index$1_EslintReactOptions as EslintReactOptions, type index$1_EslintTypescriptOptions as EslintTypescriptOptions, type index$1_EslintVueOptions as EslintVueOptions, index$1_ignores as ignores, index$1_imports as imports, index$1_javascript as javascript, index$1_markdown as markdown, index$1_prettier as prettier, index$1_react as react, index$1_typescript as typescript, index$1_vue as vue };
|
|
73
84
|
}
|
|
74
85
|
|
|
75
86
|
declare const IS_CI: boolean;
|
|
@@ -1328,6 +1339,7 @@ declare namespace utils {
|
|
|
1328
1339
|
|
|
1329
1340
|
interface EslintOptions {
|
|
1330
1341
|
ignores?: EslintIgnoresOptions;
|
|
1342
|
+
imports?: EslintImportsOptions;
|
|
1331
1343
|
javascript?: EslintJavascriptOptions;
|
|
1332
1344
|
markdown?: EslintMarkdownOptions | boolean;
|
|
1333
1345
|
react?: EslintReactOptions | boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,15 @@ type EslintIgnoresOptions = FlatConfig.Config['ignores'];
|
|
|
6
6
|
*/
|
|
7
7
|
declare const ignores: (options?: EslintIgnoresOptions) => FlatConfig.Config[];
|
|
8
8
|
|
|
9
|
+
interface EslintImportsOptions {
|
|
10
|
+
overrides?: FlatConfig.Config['rules'];
|
|
11
|
+
packageDir?: string[] | string;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Imports configuration for eslint.
|
|
15
|
+
*/
|
|
16
|
+
declare const imports: ({ overrides, packageDir, }?: EslintImportsOptions) => FlatConfig.Config[];
|
|
17
|
+
|
|
9
18
|
interface EslintJavascriptOptions {
|
|
10
19
|
overrides?: FlatConfig.Config['rules'];
|
|
11
20
|
}
|
|
@@ -56,12 +65,14 @@ interface EslintVueOptions {
|
|
|
56
65
|
declare const vue: ({ files, overrides, }?: EslintVueOptions) => Promise<FlatConfig.Config[]>;
|
|
57
66
|
|
|
58
67
|
type index$1_EslintIgnoresOptions = EslintIgnoresOptions;
|
|
68
|
+
type index$1_EslintImportsOptions = EslintImportsOptions;
|
|
59
69
|
type index$1_EslintJavascriptOptions = EslintJavascriptOptions;
|
|
60
70
|
type index$1_EslintMarkdownOptions = EslintMarkdownOptions;
|
|
61
71
|
type index$1_EslintReactOptions = EslintReactOptions;
|
|
62
72
|
type index$1_EslintTypescriptOptions = EslintTypescriptOptions;
|
|
63
73
|
type index$1_EslintVueOptions = EslintVueOptions;
|
|
64
74
|
declare const index$1_ignores: typeof ignores;
|
|
75
|
+
declare const index$1_imports: typeof imports;
|
|
65
76
|
declare const index$1_javascript: typeof javascript;
|
|
66
77
|
declare const index$1_markdown: typeof markdown;
|
|
67
78
|
declare const index$1_prettier: typeof prettier;
|
|
@@ -69,7 +80,7 @@ declare const index$1_react: typeof react;
|
|
|
69
80
|
declare const index$1_typescript: typeof typescript;
|
|
70
81
|
declare const index$1_vue: typeof vue;
|
|
71
82
|
declare namespace index$1 {
|
|
72
|
-
export { type index$1_EslintIgnoresOptions as EslintIgnoresOptions, type index$1_EslintJavascriptOptions as EslintJavascriptOptions, type index$1_EslintMarkdownOptions as EslintMarkdownOptions, type index$1_EslintReactOptions as EslintReactOptions, type index$1_EslintTypescriptOptions as EslintTypescriptOptions, type index$1_EslintVueOptions as EslintVueOptions, index$1_ignores as ignores, index$1_javascript as javascript, index$1_markdown as markdown, index$1_prettier as prettier, index$1_react as react, index$1_typescript as typescript, index$1_vue as vue };
|
|
83
|
+
export { type index$1_EslintIgnoresOptions as EslintIgnoresOptions, type index$1_EslintImportsOptions as EslintImportsOptions, type index$1_EslintJavascriptOptions as EslintJavascriptOptions, type index$1_EslintMarkdownOptions as EslintMarkdownOptions, type index$1_EslintReactOptions as EslintReactOptions, type index$1_EslintTypescriptOptions as EslintTypescriptOptions, type index$1_EslintVueOptions as EslintVueOptions, index$1_ignores as ignores, index$1_imports as imports, index$1_javascript as javascript, index$1_markdown as markdown, index$1_prettier as prettier, index$1_react as react, index$1_typescript as typescript, index$1_vue as vue };
|
|
73
84
|
}
|
|
74
85
|
|
|
75
86
|
declare const IS_CI: boolean;
|
|
@@ -1328,6 +1339,7 @@ declare namespace utils {
|
|
|
1328
1339
|
|
|
1329
1340
|
interface EslintOptions {
|
|
1330
1341
|
ignores?: EslintIgnoresOptions;
|
|
1342
|
+
imports?: EslintImportsOptions;
|
|
1331
1343
|
javascript?: EslintJavascriptOptions;
|
|
1332
1344
|
markdown?: EslintMarkdownOptions | boolean;
|
|
1333
1345
|
react?: EslintReactOptions | boolean;
|
package/dist/index.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import eslintCommentsPlugin from 'eslint-plugin-eslint-comments';
|
|
2
1
|
import importPlugin from 'eslint-plugin-import-x';
|
|
3
|
-
import globals from 'globals';
|
|
4
2
|
import confusingBrowserGlobals from 'confusing-browser-globals';
|
|
5
3
|
import tsPlugin from '@typescript-eslint/eslint-plugin';
|
|
4
|
+
import eslintCommentsPlugin from 'eslint-plugin-eslint-comments';
|
|
5
|
+
import globals from 'globals';
|
|
6
6
|
import prettierConfig from 'eslint-config-prettier';
|
|
7
7
|
import tsParser from '@typescript-eslint/parser';
|
|
8
8
|
|
|
@@ -1705,14 +1705,39 @@ const index$1 = {
|
|
|
1705
1705
|
vueRules: vueRules
|
|
1706
1706
|
};
|
|
1707
1707
|
|
|
1708
|
+
const imports = ({
|
|
1709
|
+
overrides,
|
|
1710
|
+
packageDir
|
|
1711
|
+
} = {}) => [
|
|
1712
|
+
{
|
|
1713
|
+
name: "meteorlxy/imports/plugins",
|
|
1714
|
+
plugins: {
|
|
1715
|
+
import: importPlugin
|
|
1716
|
+
}
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
name: "meteorlxy/imports/rules",
|
|
1720
|
+
rules: {
|
|
1721
|
+
...importsRules,
|
|
1722
|
+
"import/no-extraneous-dependencies": [
|
|
1723
|
+
importsRules["import/no-extraneous-dependencies"][0],
|
|
1724
|
+
{
|
|
1725
|
+
...importsRules["import/no-extraneous-dependencies"][1],
|
|
1726
|
+
packageDir
|
|
1727
|
+
}
|
|
1728
|
+
],
|
|
1729
|
+
...overrides
|
|
1730
|
+
}
|
|
1731
|
+
}
|
|
1732
|
+
];
|
|
1733
|
+
|
|
1708
1734
|
const javascript = ({
|
|
1709
1735
|
overrides
|
|
1710
1736
|
} = {}) => [
|
|
1711
1737
|
{
|
|
1712
1738
|
name: "meteorlxy/javascript/plugins",
|
|
1713
1739
|
plugins: {
|
|
1714
|
-
"eslint-comments": eslintCommentsPlugin
|
|
1715
|
-
"import": importPlugin
|
|
1740
|
+
"eslint-comments": eslintCommentsPlugin
|
|
1716
1741
|
}
|
|
1717
1742
|
},
|
|
1718
1743
|
{
|
|
@@ -1739,7 +1764,6 @@ const javascript = ({
|
|
|
1739
1764
|
rules: {
|
|
1740
1765
|
...builtinRules,
|
|
1741
1766
|
...eslintCommentsRules,
|
|
1742
|
-
...importsRules,
|
|
1743
1767
|
...overrides
|
|
1744
1768
|
}
|
|
1745
1769
|
},
|
|
@@ -1792,7 +1816,8 @@ const markdown = async ({
|
|
|
1792
1816
|
program: null,
|
|
1793
1817
|
// used in typescript-eslint's disable-type-checking config, might be a typo program -> programs
|
|
1794
1818
|
programs: null,
|
|
1795
|
-
project: false
|
|
1819
|
+
project: false,
|
|
1820
|
+
projectService: false
|
|
1796
1821
|
}
|
|
1797
1822
|
},
|
|
1798
1823
|
rules: {
|
|
@@ -1971,6 +1996,7 @@ const vue = async ({
|
|
|
1971
1996
|
const index = {
|
|
1972
1997
|
__proto__: null,
|
|
1973
1998
|
ignores: ignores,
|
|
1999
|
+
imports: imports,
|
|
1974
2000
|
javascript: javascript,
|
|
1975
2001
|
markdown: markdown,
|
|
1976
2002
|
prettier: prettier,
|
|
@@ -1993,6 +2019,8 @@ const meteorlxy = async (options, ...customConfigs) => [
|
|
|
1993
2019
|
...ignores(options.ignores),
|
|
1994
2020
|
// javascript core rules
|
|
1995
2021
|
...javascript(options.javascript),
|
|
2022
|
+
// imports rules
|
|
2023
|
+
...imports(options.imports),
|
|
1996
2024
|
// react rules - should be placed before typescript rules
|
|
1997
2025
|
...options.react ? await react(options.react === true ? {} : options.react) : [],
|
|
1998
2026
|
// typescript rules
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meteorlxy/eslint-config",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"description": "meteorlxy eslint config",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"config",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "386bf17ac9a662a9ded20c1d1311254d13c9e962"
|
|
83
83
|
}
|