Skip to content

Commit 37e966a

Browse files
chore(vendor): update @lightbase/eslint-plugin
_This PR is created by sync and will be force-pushed daily. Overwriting any manual changes done to this PR._ - chore(deps): bump the minor-prod group with 7 updates (lightbasenl/frontend-components#88) (lightbasenl/frontend-components@14e2493) - chore(deps): bump the minor-prod group with 5 updates (lightbasenl/frontend-components#81) (lightbasenl/frontend-components@69e5fe9) - chore(deps): bump the minor-prod group with 9 updates (lightbasenl/frontend-components#71) (lightbasenl/frontend-components@7eb3791) - feat(eslint-plugin): error on floaty promises & constant binary expresssions (lightbasenl/frontend-components#59) (lightbasenl/frontend-components@f4c4ac8) - chore(deps): update dependencies (lightbasenl/frontend-components#57) (lightbasenl/frontend-components@0e10900) - chore(deps): update dependencies (lightbasenl/frontend-components#54) (lightbasenl/frontend-components@090296e) - chore(deps): update dependencies (lightbasenl/frontend-components#52) (lightbasenl/frontend-components@d4ae062) - chore(deps): update dependencies (lightbasenl/frontend-components#51) (lightbasenl/frontend-components@b4b0600) - chore(deps): update dependencies (lightbasenl/frontend-components#48) (lightbasenl/frontend-components@19c4df1)- Failed to execute `npm run format`. Sync is not able to correct this, so human checks and fixes are necessary for this PR.
1 parent 039d225 commit 37e966a

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

vendor/eslint-plugin/package.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
"private": true,
55
"main": "./src/index.js",
66
"dependencies": {
7-
"@typescript-eslint/eslint-plugin": "6.7.5",
8-
"@typescript-eslint/parser": "6.7.5",
9-
"eslint": "8.51.0",
10-
"eslint-config-next": "13.5.4",
11-
"eslint-config-prettier": "9.0.0",
7+
"@typescript-eslint/eslint-plugin": "6.18.0",
8+
"@typescript-eslint/parser": "6.18.0",
9+
"eslint": "8.56.0",
10+
"eslint-config-next": "14.0.4",
11+
"eslint-config-prettier": "9.1.0",
1212
"eslint-plugin-no-relative-import-paths": "1.5.3",
13-
"eslint-plugin-prettier": "5.0.1",
13+
"eslint-plugin-prettier": "5.1.2",
1414
"eslint-plugin-unused-imports": "3.0.0",
15-
"prettier": "3.0.3",
16-
"prettier-plugin-tailwindcss": "0.5.6"
15+
"prettier": "3.1.1",
16+
"prettier-plugin-tailwindcss": "0.5.11"
1717
},
1818
"files": [
1919
"README.md",
2020
"src/index.js"
2121
],
22-
"gitHead": "29ce2d6a4ddccaf10df12fd5a180b13b4c6ca450"
22+
"gitHead": "4410a3e0201f455092576429e5e95e6ae20990b6"
2323
}

vendor/eslint-plugin/src/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ module.exports = {
9494
"@typescript-eslint/no-explicit-any": "error",
9595
"@typescript-eslint/prefer-ts-expect-error": "error",
9696
"@typescript-eslint/ban-ts-comment": "off",
97+
"@typescript-eslint/no-floating-promises": "error",
9798

9899
"@next/next/no-img-element": "off",
99100
"react/react-in-jsx-scope": "off",
@@ -103,6 +104,8 @@ module.exports = {
103104
"default-case": "off",
104105
curly: "error",
105106

107+
"no-constant-binary-expression": "error",
108+
106109
"react-hooks/rules-of-hooks": "error",
107110
"react-hooks/exhaustive-deps": "error",
108111
},

0 commit comments

Comments
 (0)