-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enhancement/upgrade greenwood v0.31.0 (#100)
* upgrade greenwood v0.31.0-alpha.0 * process.env.NODE_ENV work around * upgrade greenwood v0.31.0-alpha.1 * upgrade greenwood v0.31.0-alpha.2 * bump to v0.31.0-alpha.5 and bump to Node 22 * ESLint and Stylelint upgrades * upgrade greenwood v0.31.0-alpha.6 * bump to greenwood v0.31.0
- Loading branch information
1 parent
fac8efd
commit c389b3b
Showing
30 changed files
with
5,885 additions
and
3,484 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,4 +13,5 @@ ls: | |
|
||
ignore: | ||
- .git | ||
- node_modules | ||
- node_modules | ||
- public |
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 +1 @@ | ||
18.20.2 | ||
22.13.0 |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module.exports = { | ||
plugins: [ | ||
require('postcss-nested') // eslint-disable-line @typescript-eslint/no-require-imports | ||
] | ||
}; // eslint-disable-line @typescript-eslint/no-unused-expressions |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
import js from "@eslint/js"; | ||
import globals from "globals"; | ||
import noOnlyTests from "eslint-plugin-no-only-tests"; | ||
import tseslint from "typescript-eslint"; | ||
|
||
export default tseslint.config( | ||
{ | ||
// https://github.com/eslint/eslint/discussions/18304#discussioncomment-9069706 | ||
ignores: [ | ||
".greenwood/*", | ||
"node_modules/*", | ||
"public/*", | ||
"reports/*", | ||
"storybook-static/**", | ||
"patches/**", | ||
], | ||
}, | ||
{ | ||
languageOptions: { | ||
parserOptions: { | ||
ecmaVersion: 2022, | ||
sourceType: "module", | ||
}, | ||
globals: { | ||
...globals.browser, | ||
...globals.mocha, | ||
...globals.chai, | ||
...globals.node, | ||
}, | ||
}, | ||
plugins: { | ||
"no-only-tests": noOnlyTests, | ||
}, | ||
}, | ||
js.configs.recommended, | ||
tseslint.configs.recommended, | ||
); |
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
Oops, something went wrong.