Skip to content

Commit b456b3b

Browse files
authored
Add missing eslint-config-prettier to ESLint flat config (#36)
* Add Dependabot configuration for GitHub Actions * Add missing space in template `tsconfig.json` * Add eslint-config-prettier * Apply eslint-config-prettier change locally * npm update --save * Move to caret restrictions * npm update --save * npm i --save-dev @rollup/plugin-node-resolve@latest eslint-config-prettier@latest globals@latest * npm i --save chalk@latest commander@latest * Remove esbuild override * Align versions * Revert commander to ^12 as 13 doesn't allow short options (single dash) with multiple characters * Update Vite to fix security advisory * Bump versions
1 parent 0912a55 commit b456b3b

File tree

8 files changed

+2083
-1339
lines changed

8 files changed

+2083
-1339
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@ updates:
66
directory: '/'
77
schedule:
88
interval: 'weekly'
9+
- package-ecosystem: 'github-actions'
10+
directory: '/'
11+
schedule:
12+
interval: 'weekly'

eslint.config.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import globals from 'globals'
22
import eslintmakerx from '@makerx/eslint-config/flat.js'
3+
import eslintConfigPrettier from 'eslint-config-prettier/flat'
34

45
export default [
56
{
@@ -16,6 +17,7 @@ export default [
1617
],
1718
},
1819
...eslintmakerx,
20+
eslintConfigPrettier,
1921
{
2022
languageOptions: {
2123
globals: {

0 commit comments

Comments
 (0)