Skip to content

Commit 43f61fd

Browse files
committed
Saving files before refreshing line endings
1 parent 8e7db8b commit 43f61fd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+29245
-0
lines changed

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.eslintignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/dist
2+
/src-bex/www
3+
/src-capacitor
4+
/src-cordova
5+
/src
6+
/.quasar
7+
/node_modules
8+
.eslintrc.js
9+
babel.config.js
10+
/src/components/ComponentDisplay.vue

.eslintrc.js

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
module.exports = {
2+
// https://eslint.org/docs/user-guide/configuring#configuration-cascading-and-hierarchy
3+
// This option interrupts the configuration hierarchy at this file
4+
// Remove this if you have an higher level ESLint config file (it usually happens into a monorepos)
5+
root: true,
6+
7+
rules: {
8+
'vue/no-deprecated-slot-attribute': 'off',
9+
},
10+
11+
parserOptions: {
12+
parser: '@babel/eslint-parser',
13+
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
14+
sourceType: 'module', // Allows for the use of imports
15+
requireConfigFile: false
16+
},
17+
18+
env: {
19+
browser: true
20+
},
21+
22+
// Rules order is important, please avoid shuffling them
23+
extends: [
24+
// Base ESLint recommended rules
25+
// 'eslint:recommended',
26+
27+
28+
// Uncomment any of the lines below to choose desired strictness,
29+
// but leave only one uncommented!
30+
// See https://eslint.vuejs.org/rules/#available-rules
31+
'plugin:vue/vue3-essential', // Priority A: Essential (Error Prevention)
32+
// 'plugin:vue/vue3-strongly-recommended', // Priority B: Strongly Recommended (Improving Readability)
33+
// 'plugin:vue/vue3-recommended', // Priority C: Recommended (Minimizing Arbitrary Choices and Cognitive Overhead)
34+
35+
// https://github.com/prettier/eslint-config-prettier#installation
36+
// usage with Prettier, provided by 'eslint-config-prettier'.
37+
'prettier'
38+
],
39+
40+
plugins: [
41+
// https://eslint.vuejs.org/user-guide/#why-doesn-t-it-work-on-vue-file
42+
// required to lint *.vue files
43+
'vue',
44+
45+
// https://github.com/typescript-eslint/typescript-eslint/issues/389#issuecomment-509292674
46+
// Prettier has not been included as plugin to avoid performance impact
47+
// add it as an extension for your IDE
48+
],
49+
50+
globals: {
51+
ga: 'readonly', // Google Analytics
52+
cordova: 'readonly',
53+
__statics: 'readonly',
54+
__QUASAR_SSR__: 'readonly',
55+
__QUASAR_SSR_SERVER__: 'readonly',
56+
__QUASAR_SSR_CLIENT__: 'readonly',
57+
__QUASAR_SSR_PWA__: 'readonly',
58+
process: 'readonly',
59+
Capacitor: 'readonly',
60+
chrome: 'readonly'
61+
},
62+
63+
// add your custom rules here
64+
rules: {
65+
'prefer-promise-reject-errors': 'off',
66+
67+
68+
// allow debugger during development only
69+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
70+
}
71+
}

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
.DS_Store
2+
.thumbs.db
3+
node_modules
4+
5+
# Quasar core related directories
6+
.quasar
7+
/dist
8+
9+
# Cordova related directories and files
10+
/src-cordova/node_modules
11+
/src-cordova/platforms
12+
/src-cordova/plugins
13+
/src-cordova/www
14+
15+
# Capacitor related directories and files
16+
/src-capacitor/www
17+
/src-capacitor/node_modules
18+
19+
# BEX related directories and files
20+
/src-bex/www
21+
/src-bex/js/core
22+
23+
# Log files
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# Editor directories and files
29+
.idea
30+
*.suo
31+
*.ntvs*
32+
*.njsproj
33+
*.sln

.postcssrc.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// https://github.com/michael-ciniawsky/postcss-load-config
2+
3+
module.exports = {
4+
plugins: [
5+
// to edit target browsers: use "browserslist" field in package.json
6+
require('autoprefixer')
7+
]
8+
}

babel.config.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
module.exports = api => {
3+
return {
4+
presets: [
5+
[
6+
'@quasar/babel-preset-app',
7+
api.caller(caller => caller && caller.target === 'node')
8+
? { targets: { node: 'current' } }
9+
: {}
10+
]
11+
]
12+
}
13+
}
14+

jsconfig.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"paths": {
5+
"src/*": [
6+
"src/*"
7+
],
8+
"app/*": [
9+
"*"
10+
],
11+
"components/*": [
12+
"src/components/*"
13+
],
14+
"layouts/*": [
15+
"src/layouts/*"
16+
],
17+
"pages/*": [
18+
"src/pages/*"
19+
],
20+
"assets/*": [
21+
"src/assets/*"
22+
],
23+
"boot/*": [
24+
"src/boot/*"
25+
],
26+
"vue$": [
27+
"node_modules/vue/dist/vue.runtime.esm-bundler.js"
28+
]
29+
}
30+
},
31+
"exclude": [
32+
"dist",
33+
".quasar",
34+
"node_modules"
35+
]
36+
}

0 commit comments

Comments
 (0)