@effect-app/eslint-shared-config 0.0.12 → 0.0.13
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/dprint.json +5 -2
- package/src/eslint.base.config.mjs +2 -1
- package/src/eslint.vue.config.mjs +2 -1
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/dprint.json
CHANGED
|
@@ -8,13 +8,16 @@
|
|
|
8
8
|
"memberExpression.linePerExpression": true,
|
|
9
9
|
"binaryExpression.linePerExpression": true,
|
|
10
10
|
"importDeclaration.forceSingleLine": true,
|
|
11
|
-
"exportDeclaration.forceSingleLine": true
|
|
11
|
+
"exportDeclaration.forceSingleLine": true,
|
|
12
|
+
"lineWidth": 120,
|
|
12
13
|
},
|
|
13
14
|
"json": {},
|
|
14
15
|
"markdown": {},
|
|
15
16
|
"toml": {},
|
|
16
17
|
"malva": {},
|
|
17
|
-
"markup": {
|
|
18
|
+
"markup": {
|
|
19
|
+
"printWidth": 120
|
|
20
|
+
},
|
|
18
21
|
"yaml": {},
|
|
19
22
|
"excludes": [
|
|
20
23
|
"**/node_modules",
|
|
@@ -195,7 +195,8 @@ export function augmentedConfig(dirName, forceTS = false, project = undefined) {
|
|
|
195
195
|
"memberExpression.linePerExpression": true,
|
|
196
196
|
"binaryExpression.linePerExpression": true,
|
|
197
197
|
"importDeclaration.forceSingleLine": true,
|
|
198
|
-
"exportDeclaration.forceSingleLine": true
|
|
198
|
+
"exportDeclaration.forceSingleLine": true,
|
|
199
|
+
"lineWidth": 120,
|
|
199
200
|
}
|
|
200
201
|
},
|
|
201
202
|
],
|
|
@@ -85,13 +85,13 @@ export function vueConfig(dirName, forceTS = false, dprintConfigFile ) {
|
|
|
85
85
|
config: {
|
|
86
86
|
// The markup_fmt configuration of dprint
|
|
87
87
|
// See also https://dprint.dev/plugins/markup_fmt/config/
|
|
88
|
+
"printWidth": 120,
|
|
88
89
|
},
|
|
89
90
|
},
|
|
90
91
|
],
|
|
91
92
|
"@ben_12/dprint/typescript": [
|
|
92
93
|
"error",
|
|
93
94
|
{
|
|
94
|
-
// Usa lo stesso file config risolto in modo assoluto
|
|
95
95
|
configFile: dprintConfigFile,
|
|
96
96
|
config: {
|
|
97
97
|
indentWidth: 2,
|
|
@@ -103,6 +103,7 @@ export function vueConfig(dirName, forceTS = false, dprintConfigFile ) {
|
|
|
103
103
|
"binaryExpression.linePerExpression": true,
|
|
104
104
|
"importDeclaration.forceSingleLine": true,
|
|
105
105
|
"exportDeclaration.forceSingleLine": true,
|
|
106
|
+
"lineWidth": 120,
|
|
106
107
|
},
|
|
107
108
|
},
|
|
108
109
|
],
|