@eagleoutice/eslint-config-flowr 1.0.7 → 1.0.9

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.
@@ -10,7 +10,6 @@ jobs:
10
10
  uses: actions/checkout@v4
11
11
  with:
12
12
  token: ${{ secrets.PUSH_TOKEN }}
13
- fetch-depth: 0
14
13
  - name: Configure git user
15
14
  run: |
16
15
  git config --local user.email "action@github.com"
@@ -27,7 +26,7 @@ jobs:
27
26
  - name: Bump version
28
27
  id: version
29
28
  run: npm version patch -m "[skip ci] Release %s"
30
- - name: Push version update commmit
29
+ - name: Push version update commit
31
30
  run: |
32
31
  git push
33
32
  git push --tags
package/index.js CHANGED
@@ -81,7 +81,10 @@ module.exports = {
81
81
  ],
82
82
  "@stylistic/js/semi": [
83
83
  "error",
84
- "never"
84
+ "always",
85
+ {
86
+ "omitLastInOneLineBlock": true
87
+ }
85
88
  ],
86
89
  "@stylistic/js/space-before-function-paren": [
87
90
  "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eagleoutice/eslint-config-flowr",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "Linting rules for flowr and friends",
5
5
  "license": "ISC",
6
6
  "main": "index.js",
@@ -8,14 +8,14 @@
8
8
  "publish-npm": "npm publish --access public"
9
9
  },
10
10
  "peerDependencies": {
11
- "@stylistic/eslint-plugin": "^1.6.2",
12
- "@stylistic/eslint-plugin-plus": "^1.6.2",
13
- "@stylistic/eslint-plugin-ts": "^1.6.2",
11
+ "@stylistic/eslint-plugin": "^2.1.0",
12
+ "@stylistic/eslint-plugin-plus": "^2.1.0",
13
+ "@stylistic/eslint-plugin-ts": "^2.1.0",
14
14
  "@typescript-eslint/eslint-plugin": "^7.8.0",
15
- "eslint": "^8.55.0",
16
- "eslint-plugin-check-file": "^2.6.2",
17
- "eslint-plugin-import": "^2.29.0",
18
- "eslint-plugin-n": "^16.3.1",
15
+ "eslint": "^8.57.0",
16
+ "eslint-plugin-check-file": "^2.8.0",
17
+ "eslint-plugin-import": "^2.29.1",
18
+ "eslint-plugin-n": "^17.6.0",
19
19
  "eslint-plugin-promise": "^6.1.1",
20
20
  "eslint-plugin-tsdoc": "^0.2.17"
21
21
  }