Skip to content

Commit ffccf00

Browse files
Change Rule no-script-in-head To no-script-component-in-head (#276)
1 parent 708ff9d commit ffccf00

File tree

4 files changed

+185
-208
lines changed

4 files changed

+185
-208
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717

1818
### Dependencies
1919

20+
## [5.2.3] - 2022-02-17
21+
22+
### Added
23+
24+
### Changed
25+
26+
- Change rule `no-script-in-head` to `no-script-component-in-head`
27+
28+
### Fixed
29+
30+
### Removed
31+
32+
### Dependencies
33+
2034
## [5.2.2] - 2022-02-12
2135

2236
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@techmmunity/eslint-config",
3-
"version": "5.2.2",
3+
"version": "5.2.3",
44
"license": "Apache-2.0",
55
"author": "Techmmunity",
66
"description": "Techmmunity Style Guide",

src/configs/nextjs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ module.exports = {
6363
"@next/next/no-document-import-in-page": "error",
6464
"@next/next/no-head-import-in-document": "error",
6565
"@next/next/no-script-in-document": "error",
66-
"@next/next/no-script-in-head": "error",
66+
"@next/next/no-script-component-in-head": "error",
6767
"@next/next/no-typos": "warn",
6868
"@next/next/no-duplicate-head": "error",
6969
"@next/next/inline-script-id": "error",

0 commit comments

Comments
 (0)