-
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
Showing
44 changed files
with
2,561 additions
and
6,194 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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,33 +1,28 @@ | ||
.DS_Store | ||
.thumbs.db | ||
node_modules | ||
|
||
# Quasar core related directories | ||
.quasar | ||
/dist | ||
|
||
# Cordova related directories and files | ||
/src-cordova/node_modules | ||
/src-cordova/platforms | ||
/src-cordova/plugins | ||
/src-cordova/www | ||
|
||
# Capacitor related directories and files | ||
/src-capacitor/www | ||
/src-capacitor/node_modules | ||
|
||
# BEX related directories and files | ||
/src-bex/www | ||
/src-bex/js/core | ||
|
||
# Log files | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
.DS_Store | ||
dist | ||
dist-ssr | ||
coverage | ||
*.local | ||
|
||
/cypress/videos/ | ||
/cypress/screenshots/ | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
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,39 @@ | ||
import globals from 'globals'; | ||
import pluginJs from '@eslint/js'; | ||
import tseslint from 'typescript-eslint'; | ||
import pluginVue from 'eslint-plugin-vue'; | ||
import eslintConfigPrettier from 'eslint-config-prettier'; | ||
import eslintPluginYml from 'eslint-plugin-yml'; | ||
import eslintPluginVueScopedCSS from 'eslint-plugin-vue-scoped-css'; | ||
import html from '@html-eslint/eslint-plugin'; | ||
import json from 'eslint-plugin-json'; | ||
|
||
export default [ | ||
{ ignores: ['dist/*'] }, | ||
{ files: ['**/*.{js,mjs,cjs,ts,vue}'] }, | ||
{ languageOptions: { globals: globals.browser } }, | ||
pluginJs.configs.recommended, | ||
...tseslint.configs.recommended, | ||
...pluginVue.configs['flat/essential'], | ||
{ | ||
rules: { | ||
'vue/multi-word-component-names': 'off', | ||
}, | ||
}, | ||
...eslintPluginYml.configs['flat/recommended'], | ||
...eslintPluginVueScopedCSS.configs['flat/recommended'], | ||
{ files: ['**/*.vue'], languageOptions: { parserOptions: { parser: tseslint.parser } } }, | ||
eslintConfigPrettier, | ||
{ | ||
...html.configs['flat/recommended'], | ||
files: ['**/*.html'], | ||
rules: { | ||
'@html-eslint/indent': ['error', 2], | ||
}, | ||
}, | ||
{ | ||
...json.configs['recommended'], | ||
files: ['**/*.json'], | ||
ignores: ['tsconfig.json'], | ||
}, | ||
]; |
Oops, something went wrong.