-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* style(plugins): moving plugins * ci(packages): add package tests to test workflow Including testing of packages (if they declare tests) to the test workflow * ci(ci): remove chore * ci(build): adds tests to build --------- Co-authored-by: Jake Lauer <[email protected]>
- Loading branch information
Showing
20 changed files
with
199 additions
and
346 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,5 +4,4 @@ node_modules | |
.husky | ||
*.d.ts | ||
!.examples | ||
packages/publisher/**/* | ||
packages/gpt-zip/**/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.* | ||
tsconfig.json | ||
/src | ||
/packages/publisher | ||
/packages/**/* | ||
node_modules | ||
pnpm-workspace.yaml | ||
*.map | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,6 @@ export default { | |
"always", | ||
[ | ||
"build", | ||
"chore", | ||
"ci", | ||
"docs", | ||
"feat", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
/* eslint-disable no-undef */ | ||
module.exports = { | ||
rules: { | ||
"break-on-chainable": require("./rules/break-on-chainable"), | ||
}, | ||
configs: { | ||
recommended: { | ||
plugins: [ | ||
"theseus", // This should match the name of your plugin | ||
], | ||
rules: { | ||
"theseus/break-on-chainable": "error", | ||
}, | ||
}, | ||
}, | ||
rules: { | ||
"break-on-chainable": require("./rules/break-on-chainable"), | ||
}, | ||
configs: { | ||
recommended: { | ||
plugins: [ | ||
"theseus", // This should match the name of your plugin | ||
], | ||
rules: { | ||
"theseus/break-on-chainable": "error", | ||
}, | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,6 @@ | |
"mocha": "^10.3.0" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC" | ||
"author": "Jake Lauer", | ||
"license": "MIT" | ||
} |
Oops, something went wrong.