@slango.configs/lint-staged 1.0.1 → 1.0.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @slango.configs/lint-staged
2
2
 
3
+ ## 1.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Dependencies bump
8
+
9
+ ## 1.0.2
10
+
11
+ ### Patch Changes
12
+
13
+ - React config package
14
+
3
15
  ## 1.0.1
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slango.configs/lint-staged",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "private": false,
5
5
  "description": "Slango lint-staged configs",
6
6
  "type": "module",
@@ -9,13 +9,13 @@
9
9
  },
10
10
  "dependencies": {
11
11
  "deepmerge": "4.3.1",
12
- "lint-staged": "15.5.0"
12
+ "lint-staged": "15.5.1"
13
13
  },
14
14
  "peerDependencies": {
15
15
  "eslint": "^9.24.0"
16
16
  },
17
17
  "devDependencies": {
18
- "@slango.configs/eslint": "1.0.3"
18
+ "@slango.configs/eslint": "1.0.4"
19
19
  },
20
20
  "scripts": {
21
21
  "lint": "eslint . --max-warnings 0",
package/src/commands.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export const prettier = 'prettier --ignore-unknown --write';
2
2
 
3
- export const eslintFix = 'eslint --fix --max-warnings 0 --cache --cache-strategy content';
3
+ export const eslintFix =
4
+ 'eslint --fix --max-warnings 0 --cache --cache-strategy content --no-ignore';
4
5
 
5
6
  // This is a function because tsc --noEmit cannot be used with files (which is the default behavior of lint-staged)
6
7
  export const typescriptBuildCheck = () => 'tsc --noEmit';