@eagleoutice/eslint-config-flowr 1.0.32 → 1.0.33

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.
Files changed (2) hide show
  1. package/index.js +13 -9
  2. package/package.json +1 -3
package/index.js CHANGED
@@ -120,7 +120,7 @@ module.exports = {
120
120
  "assertionStyle": "as"
121
121
  }
122
122
  ],
123
- "@stylistic/ts/key-spacing": [
123
+ "@stylistic/key-spacing": [
124
124
  "error",
125
125
  {
126
126
  "align": "value"
@@ -132,18 +132,18 @@ module.exports = {
132
132
  "allowIndentationTabs": true
133
133
  }
134
134
  ],
135
- "@stylistic/js/semi": [
135
+ "@stylistic/semi": [
136
136
  "error",
137
137
  "always",
138
138
  {
139
139
  "omitLastInOneLineBlock": true
140
140
  }
141
141
  ],
142
- "@stylistic/js/space-before-function-paren": [
142
+ "@stylistic/space-before-function-paren": [
143
143
  "error",
144
144
  "never"
145
145
  ],
146
- "@stylistic/js/keyword-spacing": "off",
146
+ "@stylistic/keyword-spacing": "off",
147
147
  "check-file/filename-naming-convention": [
148
148
  "error",
149
149
  {
@@ -156,7 +156,7 @@ module.exports = {
156
156
  "*.spec.{js,jsx,ts,tsx}": "test/**"
157
157
  }
158
158
  ],
159
- "@stylistic/ts/keyword-spacing": [
159
+ "@stylistic/keyword-spacing": [
160
160
  "error",
161
161
  {
162
162
  "before": true,
@@ -189,7 +189,7 @@ module.exports = {
189
189
  }
190
190
  }
191
191
  ],
192
- "@stylistic/ts/space-before-function-paren": [
192
+ "@stylistic/space-before-function-paren": [
193
193
  "error",
194
194
  "never"
195
195
  ],
@@ -258,13 +258,17 @@ module.exports = {
258
258
  "curly": "error",
259
259
  "@stylistic/type-annotation-spacing": [
260
260
  "error",
261
- { "before": false, "after": true, "overrides": { "arrow": { "before": true, "after": true }} }
261
+ { "before": false, "after": true }
262
262
  ],
263
- "@stylistic/js/brace-style": [
263
+ "@stylistic/arrow-spacing": [
264
+ "error",
265
+ { "before": true, "after": true }
266
+ ],
267
+ "@stylistic/brace-style": [
264
268
  "error",
265
269
  "1tbs"
266
270
  ],
267
- "@stylistic/js/new-parens": "error",
271
+ "@stylistic/new-parens": "error",
268
272
  "import/no-duplicates": [
269
273
  "error",
270
274
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eagleoutice/eslint-config-flowr",
3
- "version": "1.0.32",
3
+ "version": "1.0.33",
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",