Skip to content

Commit

Permalink
Initial application with map and agraratlas tiles
Browse files Browse the repository at this point in the history
  • Loading branch information
ahocevar committed Apr 21, 2024
1 parent ce278cf commit 3f9778f
Show file tree
Hide file tree
Showing 32 changed files with 2,814 additions and 568 deletions.
16 changes: 10 additions & 6 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
/* eslint-env node */
require('@rushstack/eslint-patch/modern-module-resolution')
require('@rushstack/eslint-patch/modern-module-resolution');

module.exports = {
root: true,
'extends': [
extends: [
'plugin:vue/vue3-essential',
'eslint:recommended',
'@vue/eslint-config-prettier/skip-formatting'
'plugin:import/recommended',
'@vue/eslint-config-prettier/skip-formatting',
],
parserOptions: {
ecmaVersion: 'latest'
}
}
ecmaVersion: 'latest',
},
rules: {
'import/extensions': ['error', 'always', { ignorePackages: true }],
},
};
6 changes: 1 addition & 5 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
{
"recommendations": [
"Vue.volar",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
"recommendations": ["Vue.volar", "dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# bml-fast

FaST Tool für den Agraratlas des BML
10 changes: 10 additions & 0 deletions custom-modules.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
declare module '*.vue' {
import type { DefineComponent } from 'vue';
const component: DefineComponent<object, object, any>;
export default component;
}

declare module '*.svg' {
const content: string;
export default content;
}
8 changes: 4 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
Expand Down
8 changes: 0 additions & 8 deletions jsconfig.json

This file was deleted.

Loading

0 comments on commit 3f9778f

Please sign in to comment.