-
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.
- Update Prettier config to use more defaults - Reformat all code using new Prettier config
- Loading branch information
Showing
1,242 changed files
with
57,638 additions
and
58,037 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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
module.exports = { | ||
env: { | ||
es2024: true, | ||
node: true, | ||
}, | ||
extends: ['eslint:recommended', 'prettier'], | ||
parserOptions: { | ||
ecmaVersion: 'latest', | ||
sourceType: 'module', | ||
}, | ||
root: true, | ||
rules: {}, | ||
overrides: [], | ||
} | ||
env: { | ||
es2024: true, | ||
node: true, | ||
}, | ||
extends: ["eslint:recommended", "prettier"], | ||
parserOptions: { | ||
ecmaVersion: "latest", | ||
sourceType: "module", | ||
}, | ||
root: true, | ||
rules: {}, | ||
overrides: [], | ||
}; |
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,6 +1,6 @@ | ||
// Skip Husky install in production and CI | ||
if (process.env.NODE_ENV === 'production' || process.env.CI === 'true') { | ||
process.exit(0) | ||
if (process.env.NODE_ENV === "production" || process.env.CI === "true") { | ||
process.exit(0); | ||
} | ||
const husky = (await import('husky')).default | ||
console.log(husky()) | ||
const husky = (await import("husky")).default; | ||
console.log(husky()); |
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,9 +1,6 @@ | ||
{ | ||
"importOrder": ["<THIRD_PARTY_MODULES>", "^[./]"], | ||
"importOrderSeparation": true, | ||
"importOrderSortSpecifiers": true, | ||
"plugins": ["@trivago/prettier-plugin-sort-imports"], | ||
"semi": false, | ||
"singleQuote": true, | ||
"tabWidth": 4 | ||
"importOrder": ["<THIRD_PARTY_MODULES>", "^[./]"], | ||
"importOrderSeparation": true, | ||
"importOrderSortSpecifiers": true, | ||
"plugins": ["@trivago/prettier-plugin-sort-imports"] | ||
} |
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,3 +1,3 @@ | ||
{ | ||
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] | ||
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] | ||
} |
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,3 +1,3 @@ | ||
{ | ||
"editor.formatOnSave": true | ||
"editor.formatOnSave": true | ||
} |
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,42 +1,42 @@ | ||
## 1.0.0 | ||
|
||
- Introduce Docker dev environments for all projects except for Electron-based projects | ||
- Introduce PostgreSQL support with new Express + PostgreSQL starters: `express-postgres` & `react-express-postgres-ssr` | ||
- Introduce dotenv ^16.4.5 | ||
- Introduce Mock Service Worker ^2.2.2 | ||
- Introduce Prettier 3.2.5 | ||
- Introduce Prisma ^4.15.0 | ||
- Introduce Playwright ^1.44.0 | ||
- Introduce `electron-icon-maker` ^0.0.5 | ||
- Replace Enzyme with React Testing Library ^14.2.1 | ||
- Add DOM Testing Library ^9.3.4 for non-React frontend projects | ||
- Replace Flow and PropTypes with TypeScript ~5.3.3 | ||
- Replace React Hot Loader with React Refresh ^0.14.0 | ||
- Replace Sublime Text support with Visual Studio support | ||
- Drop support for Yarn | ||
- Upgrade Babel to ^7.22.1 | ||
- Upgrade Electron to 29.1.0 | ||
- Upgrade ESLint to ^8.41.0 | ||
- Upgrade Express to ^4.18.2 | ||
- Upgrade Jest to ^29.5.0 | ||
- Upgrade Node.js to ^20.9.0 | ||
- Upgrade React to ^18.2.0 | ||
- Upgrade SuperTest to ^6.3.3 | ||
- Upgrade Stylelint to ^16.2.1 | ||
- Upgrade webpack to ^5.85.0 | ||
- Separate asset test and counter from `browser` project into its own examples: `asset-test` & `counter-react` | ||
- Replace Node Sass with Dart Sass ~1.64.2 for `counter-react` | ||
- Rewrite \*chan from `nodejs-ssr` project into its own `starchan` example | ||
- Upgrade `react-redux` to ^8.1.3 for `starchan` | ||
- Setup Redux Toolkit ^1.9.6 for `starchan` | ||
- Upgrade React Router to ^6.16.0 for `starchan` | ||
- Port `todolist-browser` project as `todo-list` example | ||
- Create new vanilla JavaScript starter for browsers: `basic-browser` | ||
- Create new vanilla JavaScript starter for desktops: `basic-electron` | ||
- Create new vanilla JavaScript starter for Node.js: `basic-node` | ||
- Create new Express + MongoDB starter: `express-mongo` | ||
- Create new React starter for browsers: `react-browser` | ||
- Create new React starter for desktops: `react-electron` | ||
- Create new React + Express + MongoDB server-side rendering starter: `react-express-mongo-ssr` | ||
- Create new desktop app example: `markdown-editor` | ||
- Create new Express + PostgreSQL example: `notes-api` | ||
- Introduce Docker dev environments for all projects except for Electron-based projects | ||
- Introduce PostgreSQL support with new Express + PostgreSQL starters: `express-postgres` & `react-express-postgres-ssr` | ||
- Introduce dotenv ^16.4.5 | ||
- Introduce Mock Service Worker ^2.2.2 | ||
- Introduce Prettier 3.2.5 | ||
- Introduce Prisma ^4.15.0 | ||
- Introduce Playwright ^1.44.0 | ||
- Introduce `electron-icon-maker` ^0.0.5 | ||
- Replace Enzyme with React Testing Library ^14.2.1 | ||
- Add DOM Testing Library ^9.3.4 for non-React frontend projects | ||
- Replace Flow and PropTypes with TypeScript ~5.3.3 | ||
- Replace React Hot Loader with React Refresh ^0.14.0 | ||
- Replace Sublime Text support with Visual Studio support | ||
- Drop support for Yarn | ||
- Upgrade Babel to ^7.22.1 | ||
- Upgrade Electron to 29.1.0 | ||
- Upgrade ESLint to ^8.41.0 | ||
- Upgrade Express to ^4.18.2 | ||
- Upgrade Jest to ^29.5.0 | ||
- Upgrade Node.js to ^20.9.0 | ||
- Upgrade React to ^18.2.0 | ||
- Upgrade SuperTest to ^6.3.3 | ||
- Upgrade Stylelint to ^16.2.1 | ||
- Upgrade webpack to ^5.85.0 | ||
- Separate asset test and counter from `browser` project into its own examples: `asset-test` & `counter-react` | ||
- Replace Node Sass with Dart Sass ~1.64.2 for `counter-react` | ||
- Rewrite \*chan from `nodejs-ssr` project into its own `starchan` example | ||
- Upgrade `react-redux` to ^8.1.3 for `starchan` | ||
- Setup Redux Toolkit ^1.9.6 for `starchan` | ||
- Upgrade React Router to ^6.16.0 for `starchan` | ||
- Port `todolist-browser` project as `todo-list` example | ||
- Create new vanilla JavaScript starter for browsers: `basic-browser` | ||
- Create new vanilla JavaScript starter for desktops: `basic-electron` | ||
- Create new vanilla JavaScript starter for Node.js: `basic-node` | ||
- Create new Express + MongoDB starter: `express-mongo` | ||
- Create new React starter for browsers: `react-browser` | ||
- Create new React starter for desktops: `react-electron` | ||
- Create new React + Express + MongoDB server-side rendering starter: `react-express-mongo-ssr` | ||
- Create new desktop app example: `markdown-editor` | ||
- Create new Express + PostgreSQL example: `notes-api` |
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
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
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
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
Oops, something went wrong.