@labeg/code-style 5.3.2 → 5.3.3

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/eslint.config.js +5 -1
  2. package/package.json +1 -1
package/eslint.config.js CHANGED
@@ -8,7 +8,11 @@ import globals from "globals";
8
8
 
9
9
  /** @type {import("eslint").Linter.Config} */
10
10
  export default tseslint.config(
11
- js.configs.all,
11
+ {ignores: ["**/node_modules/**", "dist/"]},
12
+ {
13
+ files: ["**/*.{js}"],
14
+ extends: [js.configs.all]
15
+ },
12
16
  {
13
17
  files: ["**/*.{ts}"], // ,tsx
14
18
  extends: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@labeg/code-style",
3
- "version": "5.3.2",
3
+ "version": "5.3.3",
4
4
  "author": "Eugene Labutin",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/LabEG/code-style#readme",