Skip to content

Commit

Permalink
Merge pull request #31 from openearth/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
luisrodriguezgalvez authored Oct 7, 2024
2 parents 249dd14 + ff83190 commit b4990ad
Show file tree
Hide file tree
Showing 96 changed files with 18,010 additions and 28,547 deletions.
1 change: 1 addition & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
> 1%
last 2 versions
not dead
not ie 11
6 changes: 3 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VUE_APP_MAPBOX_TOKEN
VUE_APP_CATALOG_URL
VUE_APP_STORIES_CONFIGURATION_URL
VUE_APP_MAPBOX_TOKEN
VUE_APP_CATALOG_URL
VUE_APP_STORIES_CONFIGURATION_URL
VUE_APP_NEWS_CONFIGURATION_URL
45 changes: 18 additions & 27 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,36 +1,27 @@
module.exports = {
root: true,
env: {
node: true
node: true,
browser: true,
},
'extends': [
'plugin:vue/essential',
'plugin:vue/strongly-recommended',
'eslint:recommended'
extends: [
"plugin:vue/vue3-essential",
"eslint:recommended",
"plugin:prettier/recommended",
],
parserOptions: {
parser: '@babel/eslint-parser'
parser: "@babel/eslint-parser",
},
plugins: [ 'vue' ],
rules: {
'array-bracket-spacing': [ 'warn', 'always' ],
'eol-last': [ "error", "always" ],
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
'no-unused-vars': 'warn',
'vue/script-indent': [ 'error', 2, { baseIndent: 1 } ],
'vue/no-unused-components': 'warn',
'vue/no-v-html': 'off',
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
"vue/multi-word-component-names": "off",
"prettier/prettier": [
"error",
{
endOfLine: "auto",
},
],
useTabs: "off",
},
overrides: [
{
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/tests/unit/**/*.spec.{j,t}s?(x)'
],
env: {
jest: true
}
}
]
}
};
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ node_modules


# local env files
.env
.env.local
.env.*.local
.env

# Log files
npm-debug.log*
Expand Down
13 changes: 0 additions & 13 deletions Dockerfile

This file was deleted.

5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ npm run serve
npm run build
```

### Run your unit tests
```
npm run test:unit
```

### Lints and fixes files
```
npm run lint
Expand Down
6 changes: 2 additions & 4 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
presets: ["@vue/cli-plugin-babel/preset"],
};
3 changes: 0 additions & 3 deletions jest.config.js

This file was deleted.

Loading

0 comments on commit b4990ad

Please sign in to comment.