@luxass/eslint-config 2.2.2 → 2.2.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.
@@ -166,6 +166,12 @@ module.exports = {
166
166
  "no-unused-expressions": "off",
167
167
  "no-unused-vars": "off"
168
168
  }
169
+ },
170
+ {
171
+ files: [".github/workflows/*.yml"],
172
+ rules: {
173
+ "yml/no-empty-mapping-value": "off"
174
+ }
169
175
  }
170
176
  ],
171
177
  rules: {
@@ -175,7 +181,6 @@ module.exports = {
175
181
  "import/no-unresolved": "off",
176
182
  "import/no-absolute-path": "off",
177
183
  "semi": ["warn", "always"],
178
- "curly": ["error", "multi-or-nest", "consistent"],
179
184
  "quotes": ["error", "double"],
180
185
  "quote-props": ["error", "consistent-as-needed"],
181
186
  "no-unused-vars": "warn",
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luxass/eslint-config",
3
- "version": "2.2.2",
3
+ "version": "2.2.4",
4
4
  "description": "luxass' ESLint config",
5
5
  "author": {
6
6
  "name": "Lucas Norgaard",
@@ -19,9 +19,9 @@
19
19
  "eslintconfig",
20
20
  "eslint config"
21
21
  ],
22
- "main": "src/index.js",
22
+ "main": "index.js",
23
23
  "files": [
24
- "src"
24
+ "*.js"
25
25
  ],
26
26
  "peerDependencies": {
27
27
  "eslint": "^8.30.0",
@@ -52,7 +52,7 @@
52
52
  },
53
53
  "scripts": {
54
54
  "bump": "bumpp package.json --commit --push --tag",
55
- "release": "pnpm -r publish --access public",
56
- "lint": "eslint --cache src/**/*.js"
55
+ "release": "pnpm publish --access public",
56
+ "lint": "eslint --cache *.js"
57
57
  }
58
58
  }
File without changes
File without changes