Skip to content

Commit 57eaeb0

Browse files
committed
major packages update
1 parent 3b022a3 commit 57eaeb0

File tree

92 files changed

+14656
-17916
lines changed

Some content is hidden

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

92 files changed

+14656
-17916
lines changed

.babelrc

-13
This file was deleted.

.browserslistrc

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

.editorconfig

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
root = true
2-
3-
[*]
4-
charset = utf-8
1+
[*.{js,jsx,ts,tsx,vue}]
52
indent_style = space
63
indent_size = 2
7-
end_of_line = lf
8-
insert_final_newline = true
94
trim_trailing_whitespace = true
5+
insert_final_newline = true

.env.example

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
VUE_APP_MAPBOX_ACCESS_TOKEN=
2+
VUE_APP_JARKUS_BASE_URL=
3+
VUE_APP_SERVER_URL=
4+
VUE_APP_COASTVIEWER_SERVER_URL=

.eslintignore

-5
This file was deleted.

.eslintrc.js

+22-19
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,28 @@
1-
// https://eslint.org/docs/user-guide/configuring
2-
31
module.exports = {
42
root: true,
5-
parser: 'babel-eslint',
6-
parserOptions: {
7-
sourceType: 'module'
8-
},
93
env: {
10-
browser: true,
4+
node: true
115
},
12-
// required to lint *.vue files
13-
plugins: [
14-
'html'
6+
extends: [
7+
'plugin:vue/essential',
8+
'@vue/standard'
159
],
16-
// add your custom rules here
17-
'rules': {
18-
// allow debugger during development
19-
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
20-
"no-trailing-spaces": [2],
21-
"indent": ["error", 2],
22-
"no-multiple-empty-lines": [2, {"max": 2}],
23-
"comma-dangle": ["error", "never"]
24-
}
10+
parserOptions: {
11+
parser: 'babel-eslint'
12+
},
13+
rules: {
14+
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
15+
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off'
16+
},
17+
overrides: [
18+
{
19+
files: [
20+
'**/__tests__/*.{j,t}s?(x)',
21+
'**/tests/unit/**/*.spec.{j,t}s?(x)'
22+
],
23+
env: {
24+
jest: true
25+
}
26+
}
27+
]
2528
}

.gitignore

+12-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
.DS_Store
2-
node_modules/
3-
notebooks/
4-
static/jarkus_years/
5-
static/data/
6-
/dist/
2+
node_modules
3+
/dist
4+
5+
6+
# local env files
7+
.env
8+
.env.local
9+
.env.*.local
10+
11+
# Log files
712
npm-debug.log*
813
yarn-debug.log*
914
yarn-error.log*
10-
/test/unit/coverage/
11-
/test/e2e/reports/
12-
selenium-debug.log
15+
pnpm-debug.log*
1316

1417
# Editor directories and files
1518
.idea
@@ -18,4 +21,4 @@ selenium-debug.log
1821
*.ntvs*
1922
*.njsproj
2023
*.sln
21-
*.swp
24+
*.sw?

.postcssrc.js

-9
This file was deleted.

0 commit comments

Comments
 (0)