@theholocron/lint-staged-config 4.2.2 → 5.0.0

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.
@@ -5,15 +5,11 @@
5
5
  const config = {
6
6
  "*.css": "stylelint --fix",
7
7
  "*.{js,jsx}": ["prettier --write", "eslint"],
8
- "*.md": ["prettier --write"], // disabling alex --why because of https://github.com/get-alex/alex/issues/348
9
- "*.mdx": ["prettier --write"], // disabling alex --why because of https://github.com/get-alex/alex/issues/348
8
+ "*.md": ["prettier --write"],
9
+ "*.mdx": ["prettier --write"],
10
10
  "*.{png,jpeg,jpg,gif,svg}": "imagemin-lint-staged",
11
11
  "*.scss": "stylelint --syntax=scss --fix",
12
- "*.{ts,tsx}": [
13
- "prettier --write",
14
- "eslint",
15
- "npx tsc-files --noEmit --showConfig",
16
- ],
12
+ "*.{ts,tsx}": ["prettier --write", "eslint"],
17
13
  "package.json": "sort-package-json",
18
14
  };
19
15
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/lint-staged-config",
3
- "version": "4.2.2",
3
+ "version": "5.0.0",
4
4
  "description": "A Lint Staged configuration for linting code that has been staged in Git within the Galaxy.",
5
5
  "homepage": "https://github.com/theholocron/configs/tree/main/packages/lint-staged-config#readme",
6
6
  "bugs": "https://github.com/theholocron/configs/issues",
@@ -16,16 +16,12 @@
16
16
  "husky": "^9.1.7"
17
17
  },
18
18
  "peerDependencies": {
19
- "alex": "^11",
20
19
  "husky": "^9",
21
20
  "imagemin-lint-staged": "^0.5",
22
21
  "lint-staged": "^16",
23
22
  "sort-package-json": "^4"
24
23
  },
25
24
  "peerDependenciesMeta": {
26
- "alex": {
27
- "optional": true
28
- },
29
25
  "imagemin-lint-staged": {
30
26
  "optional": true
31
27
  },