-
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 package dependencies across multiple projects * Update linter config * Downgrade nuxt content * Call changeset * Downgrade dog typescript * Update Node.js version to 22 in GitHub workflows * Rebuild package-lock * lintfix
- Loading branch information
Showing
23 changed files
with
17,035 additions
and
40,057 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
'@d0rich/nuxt-content-mermaid': minor | ||
'@d0rich/nuxt-design-system': minor | ||
'@d0rich/esprit-design': minor | ||
'd0xigen': minor | ||
'@d0rich/dog': minor | ||
--- | ||
|
||
Update dependencies |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { includeIgnoreFile } from '@eslint/compat' | ||
import vueParser from 'vue-eslint-parser' | ||
import eslintConfigPrettier from 'eslint-config-prettier' | ||
|
||
import path from 'node:path' | ||
import { fileURLToPath } from 'node:url' | ||
|
||
const __filename = fileURLToPath(import.meta.url) | ||
const __dirname = path.dirname(__filename) | ||
const gitignorePath = path.resolve(__dirname, '.gitignore') | ||
|
||
export default [ | ||
eslintConfigPrettier, | ||
includeIgnoreFile(gitignorePath), | ||
{ | ||
files: ['**/*.ts', '**/*.js', '**/*.vue'], | ||
languageOptions: { | ||
parser: vueParser, | ||
parserOptions: { | ||
parser: '@typescript-eslint/parser' | ||
} | ||
}, | ||
rules: { | ||
semi: ['error', 'never'], | ||
quotes: ['error', 'single'], | ||
'vue/no-multiple-template-root': 'off', | ||
'vue/multi-word-component-names': 'off' | ||
} | ||
} | ||
] |
Oops, something went wrong.