jh-be-tools 1.0.45 → 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.
|
@@ -107,8 +107,10 @@ declare const _default: (import("eslint").Linter.Config<import("eslint").Linter.
|
|
|
107
107
|
"prettier/prettier": (string | {
|
|
108
108
|
singleQuote: boolean;
|
|
109
109
|
semi: boolean;
|
|
110
|
+
useTabs: boolean;
|
|
110
111
|
})[];
|
|
111
112
|
semi: string[];
|
|
113
|
+
indent: string[];
|
|
112
114
|
};
|
|
113
115
|
})[];
|
|
114
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, "semi": false }],
|
|
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
|
{
|