@labeg/code-style 4.0.3 → 4.0.4

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/.eslintrc.js +2 -1
  2. package/package.json +1 -1
package/.eslintrc.js CHANGED
@@ -57,7 +57,8 @@ const jsAndTsRules = {
57
57
  "@stylistic/multiline-ternary": ["error", "always-multiline"], // More nice
58
58
  "@stylistic/array-element-newline": ["error", "consistent"], // More nice
59
59
  "@stylistic/operator-linebreak": ["error", "after"], // More nice
60
- "@stylistic/no-extra-parens": "off"
60
+ "@stylistic/no-extra-parens": "off",
61
+ "@stylistic/dot-location": ["error", "property"] // Maybe later?
61
62
  };
62
63
 
63
64
  module.exports = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@labeg/code-style",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "scripts": {
5
5
  "prepublishOnly": "npm version patch"
6
6
  },