@hg-ts/linter 0.1.66 → 0.1.68
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/eslint.config.mjs +3 -2
- package/package.json +1 -1
package/eslint.config.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import tsEslint from 'typescript-eslint';
|
|
2
1
|
import stylisticEslint from '@stylistic/eslint-plugin';
|
|
3
2
|
import globals from 'globals';
|
|
3
|
+
import tsEslint from 'typescript-eslint';
|
|
4
4
|
|
|
5
5
|
/**
|
|
6
6
|
* @type {Linter.Config['rules']}
|
|
@@ -237,6 +237,7 @@ const commonRules = {
|
|
|
237
237
|
'code': 120,
|
|
238
238
|
'tabWidth': 2,
|
|
239
239
|
'comments': 150,
|
|
240
|
+
'ignoreStrings': true
|
|
240
241
|
},
|
|
241
242
|
],
|
|
242
243
|
'max-lines': [
|
|
@@ -607,4 +608,4 @@ const config = {
|
|
|
607
608
|
},
|
|
608
609
|
};
|
|
609
610
|
|
|
610
|
-
export default config;
|
|
611
|
+
export default config;
|