Skip to content

Commit 97a7cb3

Browse files
committed
Initial commit
1 parent e623fad commit 97a7cb3

28 files changed

+13278
-0
lines changed

.browserslistrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
> 1%
2+
last 2 versions

.eslintrc.js

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
extends: [
7+
// "plugin:es-beautifier/standard",
8+
'eslint:recommended',
9+
'plugin:vue/recommended',
10+
'@vue/typescript'
11+
],
12+
rules: {
13+
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
14+
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
15+
'comma-dangle': ['error', 'never'],
16+
semi: ['error', 'never'],
17+
quotes: ['error', 'single'],
18+
'no-var': 1,
19+
'vue/html-closing-bracket-newline': 'off',
20+
'vue/singleline-html-element-content-newline': 'off',
21+
'vue/multiline-html-element-content-newline': 'off',
22+
'vue/max-attributes-per-line': [
23+
'error',
24+
{
25+
singleline: 5,
26+
multiline: {
27+
max: 1,
28+
allowFirstLine: true
29+
}
30+
}
31+
],
32+
'vue/html-self-closing': [
33+
'error',
34+
{
35+
html: {
36+
void: 'always'
37+
}
38+
}
39+
],
40+
'no-multiple-empty-lines': 'error'
41+
},
42+
parserOptions: {
43+
parser: '@typescript-eslint/parser'
44+
}
45+
}

.gitignore

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
# local env files
6+
.env.local
7+
.env.*.local
8+
9+
# Log files
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
14+
# Editor directories and files
15+
.idea
16+
.vscode
17+
*.suo
18+
*.ntvs*
19+
*.njsproj
20+
*.sln
21+
*.sw?

README.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# HAA COnfigurator
2+
3+
TODO
4+
5+
## Project setup
6+
```
7+
npm install
8+
```
9+
10+
### Compiles and hot-reloads for development
11+
```
12+
npm run serve
13+
```
14+
15+
### Compiles and minifies for production
16+
```
17+
npm run build
18+
```
19+
20+
### Lints and fixes files
21+
```
22+
npm run lint
23+
```
24+
25+
### Customize configuration
26+
See [Configuration Reference](https://cli.vuejs.org/config/).

babel.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: ["@vue/app"]
3+
};

0 commit comments

Comments
 (0)