@luxass/eslint-config 2.2.5 → 2.2.6

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/basic.js +3 -3
  2. package/package.json +2 -5
package/basic.js CHANGED
@@ -256,7 +256,7 @@ module.exports = {
256
256
  "prefer-spread": "error",
257
257
  "prefer-template": "error",
258
258
  "template-curly-spacing": "error",
259
- "arrow-parens": ["error", "as-needed", { requireForBlockBody: true }],
259
+ "arrow-parens": ["error", "always"],
260
260
  "generator-star-spacing": "off",
261
261
  "spaced-comment": [
262
262
  "error",
@@ -288,7 +288,7 @@ module.exports = {
288
288
  "vars-on-top": "error",
289
289
  "require-await": "off",
290
290
  "no-return-assign": "off",
291
- "operator-linebreak": ["error", "before"],
291
+ "operator-linebreak": ["error", "after"],
292
292
  "max-statements-per-line": ["error", { max: 1 }],
293
293
 
294
294
  // unicorns
@@ -335,7 +335,7 @@ module.exports = {
335
335
  allowSeparatedGroups: false
336
336
  }
337
337
  ],
338
- "yml/quotes": ["error", { prefer: "single", avoidEscape: false }],
338
+ "yml/quotes": ["error", { prefer: "double", avoidEscape: true }],
339
339
  "yml/no-empty-document": "off",
340
340
  "padded-blocks": "off",
341
341
  "no-trailing-spaces": ["error", { skipBlankLines: true }]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxass/eslint-config",
3
- "version": "2.2.5",
3
+ "version": "2.2.6",
4
4
  "description": "luxass' ESLint config",
5
5
  "author": {
6
6
  "name": "Lucas Norgaard",
@@ -46,15 +46,12 @@
46
46
  "local-pkg": "^0.4.2"
47
47
  },
48
48
  "devDependencies": {
49
- "@luxass/prettier-config": "^1.1.1",
50
- "bumpp": "^8.2.1",
49
+ "@luxass/prettier-config": "^1.1.4",
51
50
  "eslint": "^8.30.0",
52
51
  "prettier": "^2.8.1",
53
52
  "typescript": "^4.9.4"
54
53
  },
55
54
  "scripts": {
56
- "bump": "bumpp package.json --commit --push --tag",
57
- "release": "pnpm publish --access public",
58
55
  "lint": "eslint --cache *.js"
59
56
  }
60
57
  }