Skip to content

Commit

Permalink
fix: eslint option is project not package
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Oct 6, 2023
1 parent 60f34fb commit fc3b4e1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/check-project/manifests/typed-cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export async function typedCJSManifest (manifest, branchName, repoUrl, homePage
eslintConfig: merge({
extends: 'ipfs',
parserOptions: {
package: true
project: true
}
}, manifest.eslintConfig),
release: (manifest.scripts?.release?.includes('semantic-release') || manifest.scripts?.release?.includes('aegir release')) ? semanticReleaseConfig(branchName) : undefined
Expand Down
2 changes: 1 addition & 1 deletion src/check-project/manifests/typed-esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function typedESMManifest (manifest, branchName, repoUrl, homePage
eslintConfig: merge({
extends: 'ipfs',
parserOptions: {
package: true,
project: true,
sourceType: 'module'
}
}, manifest.eslintConfig),
Expand Down
2 changes: 1 addition & 1 deletion src/check-project/manifests/typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export async function typescriptManifest (manifest, branchName, repoUrl, homePag
eslintConfig: merge({
extends: 'ipfs',
parserOptions: {
package: true,
project: true,
sourceType: 'module'
}
}, manifest.eslintConfig),
Expand Down
2 changes: 1 addition & 1 deletion src/check-project/manifests/untyped-cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export async function untypedCJSManifest (manifest, branchName, repoUrl, homePag
eslintConfig: merge({
extends: 'ipfs',
parserOptions: {
package: true
project: true
}
}, manifest.eslintConfig),
release: (manifest.scripts?.release?.includes('semantic-release') || manifest.scripts?.release?.includes('aegir release')) ? semanticReleaseConfig(branchName) : undefined
Expand Down
2 changes: 1 addition & 1 deletion src/check-project/manifests/untyped-esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export async function untypedESMManifest (manifest, branchName, repoUrl, homePag
eslintConfig: merge({
extends: 'ipfs',
parserOptions: {
package: true,
project: true,
sourceType: 'module'
}
}, manifest.eslintConfig),
Expand Down

0 comments on commit fc3b4e1

Please sign in to comment.