jh-be-tools 1.0.44 → 1.0.46
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.
|
@@ -106,8 +106,11 @@ declare const _default: (import("eslint").Linter.Config<import("eslint").Linter.
|
|
|
106
106
|
quotes: string[];
|
|
107
107
|
"prettier/prettier": (string | {
|
|
108
108
|
singleQuote: boolean;
|
|
109
|
+
semi: boolean;
|
|
110
|
+
useTabs: boolean;
|
|
109
111
|
})[];
|
|
110
112
|
semi: string[];
|
|
113
|
+
indent: string[];
|
|
111
114
|
};
|
|
112
115
|
})[];
|
|
113
116
|
export default _default;
|
|
@@ -59,8 +59,9 @@ export default [
|
|
|
59
59
|
],
|
|
60
60
|
'import/export': 'off',
|
|
61
61
|
"quotes": ["off"],
|
|
62
|
-
"prettier/prettier": ["error", { "singleQuote": true }],
|
|
62
|
+
"prettier/prettier": ["error", { "singleQuote": true, "semi": false, useTabs: true }],
|
|
63
63
|
"semi": ['error', 'never'],
|
|
64
|
+
'indent': ['error', 'tab'],
|
|
64
65
|
},
|
|
65
66
|
},
|
|
66
67
|
{
|