@etchteam/eslint-config 1.10.0 → 1.11.1

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.
@@ -2,6 +2,9 @@
2
2
  version: 2
3
3
  updates:
4
4
  - package-ecosystem: "npm"
5
+ directory: "/"
6
+ schedule:
7
+ interval: "daily"
5
8
  commit-message:
6
9
  prefix: "fix"
7
10
  prefix-development: "chore"
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env sh
2
+ . "$(dirname -- "$0")/_/husky.sh"
3
+
4
+ npx --no -- lint-staged
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ## [1.10.0](https://github.com/etchteam/eslint/compare/v1.9.0...v1.10.0) (2024-01-11)
1
+ ## [1.11.1](https://github.com/etchteam/eslint/compare/v1.11.0...v1.11.1) (2024-05-23)
2
2
 
3
3
 
4
- ### Features
4
+ ### Bug Fixes
5
5
 
6
- * configure dependabot so that it uses the correct commit message prefix ([cfbce50](https://github.com/etchteam/eslint/commit/cfbce504ef3017fc3074d4f4ca6a764fd8cf13cc))
6
+ * bump eslint-config-next from 14.0.1 to 14.2.3 ([7e28c6d](https://github.com/etchteam/eslint/commit/7e28c6dbe065a5282460db4d3aaaa5ddb5c308b3))
@@ -1,3 +1,3 @@
1
1
  module.exports = {
2
- '*.js': 'eslint --fix',
2
+ '*.{ts,tsx,js,jsx,yml,yaml,json}': 'eslint --fix',
3
3
  };
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@etchteam/eslint-config",
3
- "version": "1.10.0",
3
+ "version": "1.11.1",
4
4
  "description": "Etch's standard eslint config",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
7
+ "postinstall": "husky install",
7
8
  "test": "echo \"Error: no test specified\" && exit 1",
8
9
  "release": "semantic-release"
9
10
  },
@@ -24,14 +25,14 @@
24
25
  },
25
26
  "homepage": "https://github.com/etchteam/eslint#readme",
26
27
  "devDependencies": {
27
- "@commitlint/cli": "^17.3.0",
28
- "@commitlint/config-conventional": "^17.3.0",
29
- "husky": "^8.0.2",
30
- "lint-staged": "^13.1.0"
28
+ "@commitlint/cli": "^19.3.0",
29
+ "@commitlint/config-conventional": "^19.2.2",
30
+ "husky": "^9.0.11",
31
+ "lint-staged": "^15.2.2"
31
32
  },
32
33
  "dependencies": {
33
- "@typescript-eslint/eslint-plugin": "^6.18.1",
34
- "@typescript-eslint/parser": "^6.18.1",
34
+ "@typescript-eslint/eslint-plugin": "^7.10.0",
35
+ "@typescript-eslint/parser": "^7.10.0",
35
36
  "eslint": ">=8.29.0",
36
37
  "eslint-config-next": "^14.0.1",
37
38
  "eslint-config-prettier": "^9.0.0",
@@ -40,10 +41,11 @@
40
41
  "eslint-plugin-jsx-a11y": "^6.8.0",
41
42
  "eslint-plugin-prettier": "^5.0.1",
42
43
  "eslint-plugin-react": "^7.33.2",
43
- "eslint-plugin-security": "^1.7.1",
44
- "eslint-plugin-storybook": "^0.6.15",
44
+ "eslint-plugin-security": "^3.0.0",
45
+ "eslint-plugin-storybook": "^0.8.0",
45
46
  "eslint-plugin-unused-imports": "^3.0.0",
46
47
  "eslint-plugin-yml": "^1.10.0",
48
+ "eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0",
47
49
  "prettier": ">=3.0.0"
48
50
  },
49
51
  "peerDependencies": {
package/src/index.js CHANGED
@@ -9,6 +9,7 @@ module.exports = {
9
9
  'plugin:prettier/recommended',
10
10
  'plugin:jsx-a11y/strict',
11
11
  'plugin:json/recommended',
12
+ 'plugin:you-dont-need-lodash-underscore/compatible',
12
13
  'plugin:yml/standard',
13
14
  'plugin:yml/prettier',
14
15
  ],