File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 22 "root": true,
33 "extends": "@1stg",
44 "rules": {
5- "@typescript-eslint/consistent-type-imports": 2
5+ "@typescript-eslint/consistent-type-imports": "error",
6+ "unicorn/prefer-top-level-await": "off"
67 }
78}
Original file line number Diff line number Diff line change 11{
22 "rules": {
3- "sonarjs/no-nested-template-literals": 0 ,
4- "unicorn/filename-case": 0
3+ "sonarjs/no-nested-template-literals": "off" ,
4+ "unicorn/filename-case": "off"
55 }
66}
Original file line number Diff line number Diff line change 1- import nodePath from 'path'
1+ import nodePath from 'node: path'
22
33import _assembleReleasePlan from '@changesets/assemble-release-plan'
44import { parse as parseConfig } from '@changesets/config'
Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ export async function runPublish({
9797
9898 // eslint-disable-next-line no-negated-condition -- do not change original source code logic
9999 if ( tool !== 'root' ) {
100+ // eslint-disable-next-line regexp/no-super-linear-backtracking
100101 const newTagRegex = / N e w t a g : \s + ( @ [ ^ / ] + \/ [ ^ @ ] + | [ ^ / ] + ) @ ( \S + ) /
101102 const packagesByName = new Map ( packages . map ( x => [ x . packageJson . name , x ] ) )
102103
You can’t perform that action at this time.
0 commit comments