@eagleoutice/eslint-config-flowr 1.0.32 → 1.0.34
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/index.js +13 -11
- package/package.json +1 -3
package/index.js
CHANGED
|
@@ -25,8 +25,6 @@ module.exports = {
|
|
|
25
25
|
"jsdoc",
|
|
26
26
|
"check-file",
|
|
27
27
|
"@stylistic",
|
|
28
|
-
"@stylistic/js",
|
|
29
|
-
"@stylistic/ts",
|
|
30
28
|
"import"
|
|
31
29
|
],
|
|
32
30
|
"rules": {
|
|
@@ -120,7 +118,7 @@ module.exports = {
|
|
|
120
118
|
"assertionStyle": "as"
|
|
121
119
|
}
|
|
122
120
|
],
|
|
123
|
-
"@stylistic/
|
|
121
|
+
"@stylistic/key-spacing": [
|
|
124
122
|
"error",
|
|
125
123
|
{
|
|
126
124
|
"align": "value"
|
|
@@ -132,18 +130,18 @@ module.exports = {
|
|
|
132
130
|
"allowIndentationTabs": true
|
|
133
131
|
}
|
|
134
132
|
],
|
|
135
|
-
"@stylistic/
|
|
133
|
+
"@stylistic/semi": [
|
|
136
134
|
"error",
|
|
137
135
|
"always",
|
|
138
136
|
{
|
|
139
137
|
"omitLastInOneLineBlock": true
|
|
140
138
|
}
|
|
141
139
|
],
|
|
142
|
-
"@stylistic/
|
|
140
|
+
"@stylistic/space-before-function-paren": [
|
|
143
141
|
"error",
|
|
144
142
|
"never"
|
|
145
143
|
],
|
|
146
|
-
"@stylistic/
|
|
144
|
+
"@stylistic/keyword-spacing": "off",
|
|
147
145
|
"check-file/filename-naming-convention": [
|
|
148
146
|
"error",
|
|
149
147
|
{
|
|
@@ -156,7 +154,7 @@ module.exports = {
|
|
|
156
154
|
"*.spec.{js,jsx,ts,tsx}": "test/**"
|
|
157
155
|
}
|
|
158
156
|
],
|
|
159
|
-
"@stylistic/
|
|
157
|
+
"@stylistic/keyword-spacing": [
|
|
160
158
|
"error",
|
|
161
159
|
{
|
|
162
160
|
"before": true,
|
|
@@ -189,7 +187,7 @@ module.exports = {
|
|
|
189
187
|
}
|
|
190
188
|
}
|
|
191
189
|
],
|
|
192
|
-
"@stylistic/
|
|
190
|
+
"@stylistic/space-before-function-paren": [
|
|
193
191
|
"error",
|
|
194
192
|
"never"
|
|
195
193
|
],
|
|
@@ -258,13 +256,17 @@ module.exports = {
|
|
|
258
256
|
"curly": "error",
|
|
259
257
|
"@stylistic/type-annotation-spacing": [
|
|
260
258
|
"error",
|
|
261
|
-
{ "before": false, "after": true
|
|
259
|
+
{ "before": false, "after": true }
|
|
262
260
|
],
|
|
263
|
-
"@stylistic/
|
|
261
|
+
"@stylistic/arrow-spacing": [
|
|
262
|
+
"error",
|
|
263
|
+
{ "before": true, "after": true }
|
|
264
|
+
],
|
|
265
|
+
"@stylistic/brace-style": [
|
|
264
266
|
"error",
|
|
265
267
|
"1tbs"
|
|
266
268
|
],
|
|
267
|
-
"@stylistic/
|
|
269
|
+
"@stylistic/new-parens": "error",
|
|
268
270
|
"import/no-duplicates": [
|
|
269
271
|
"error",
|
|
270
272
|
{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagleoutice/eslint-config-flowr",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.34",
|
|
4
4
|
"description": "Linting rules for flowr and friends",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"main": "index.js",
|
|
@@ -9,9 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"peerDependencies": {
|
|
11
11
|
"@stylistic/eslint-plugin": "^5.7.1",
|
|
12
|
-
"@stylistic/eslint-plugin-js": "^4.4.1",
|
|
13
12
|
"@stylistic/eslint-plugin-plus": "^4.4.1",
|
|
14
|
-
"@stylistic/eslint-plugin-ts": "^4.4.1",
|
|
15
13
|
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
16
14
|
"eslint": "^9.39.2",
|
|
17
15
|
"eslint-plugin-check-file": "^3.3.1",
|