-
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.
- Loading branch information
1 parent
393879e
commit d749926
Showing
10 changed files
with
2,188 additions
and
2,398 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,5 @@ | ||
--- | ||
"@simsustech/quasar-components": patch | ||
--- | ||
|
||
chore: update package.json |
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import eslintConfigPrettier from 'eslint-config-prettier' | ||
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended' | ||
import pluginVue from 'eslint-plugin-vue' | ||
import typescriptEslint from 'typescript-eslint' | ||
import vueParser from 'vue-eslint-parser' | ||
|
||
export default typescriptEslint.config( | ||
...typescriptEslint.configs.recommended, | ||
...pluginVue.configs['flat/recommended'], | ||
|
||
{ | ||
files: ['**/*.vue'], | ||
languageOptions: { | ||
parser: vueParser, | ||
parserOptions: { | ||
sourceType: 'module', | ||
parser: { | ||
ts: typescriptEslint.parser | ||
} | ||
} | ||
} | ||
}, | ||
|
||
/** | ||
* end | ||
*/ | ||
eslintConfigPrettier, | ||
eslintPluginPrettierRecommended | ||
) |
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,5 +1,6 @@ | ||
// @ts-nocheck | ||
// @ts-expect-error vite only | ||
import nl from 'nl.flag' | ||
// @ts-expect-error vite only | ||
import enUs from 'en-US.flag' | ||
export { nl, enUs } | ||
export { useLang, loadLang } from './lang/index.js' |
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,3 +1,3 @@ | ||
// @ts-nocheck | ||
// @ts-expect-error vite only | ||
import microsoft from 'microsoft.icon' | ||
export { microsoft } |
Oops, something went wrong.