Skip to content
This repository was archived by the owner on Jan 25, 2025. It is now read-only.

Commit d0a46c5

Browse files
committed
Umstellung auf neuen Meshviewer
Basis ist Regensburg, Dreiländereck, Frankfurt)
1 parent 34507b7 commit d0a46c5

File tree

181 files changed

+20315
-4304
lines changed

Some content is hidden

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

181 files changed

+20315
-4304
lines changed

.editorconfig

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
end_of_line = lf
8+
insert_final_newline = true
9+
charset = utf-8
10+
11+
# Get rid of whitespace to avoid diffs with a bunch of EOL changes
12+
trim_trailing_whitespace = true
13+
14+
[*.{js,html,scss,json,yml,md}]
15+
indent_size = 2
16+
indent_style = space
17+
18+
19+
[assets/favicon/manifest.json]
20+
indent_size = 4

.eslintrc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
"extends":
3+
- "eslint-config-airbnb-es5"
4+
5+
rules:
6+
"no-undef": 0
7+
"no-console": ["warn", { allow: ["warn", "error"] }]
8+
"no-param-reassign": 0
9+
"func-names": 0
10+
"guard-for-in": 0
11+
"no-undefined": 0
12+
"consistent-return": 0
13+
"no-nested-ternary": 0
14+
"no-extend-native": ["error", { "exceptions": ["String"] }]

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
bower_components/
21
node_modules/
32
build/
4-
.sass-cache/
3+
upload/

.sass-lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
rules:
2+
# No global rules currently

.travis.yml

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,26 @@
1+
sudo: false
2+
dist: trusty
3+
14
language: node_js
2-
before_install:
3-
- gem install sass
4-
- npm install -g grunt-cli
5-
- npm install -g bower
6-
install:
7-
- npm install
8-
- bower install
9-
- cp config.js.example config.js
10-
script: grunt
5+
6+
node_js:
7+
- "12"
8+
9+
os:
10+
- linux
11+
- osx
12+
13+
matrix:
14+
include:
15+
- node_js: "8"
16+
os: linux
17+
- node_js: "10"
18+
os: linux
19+
cache:
20+
yarn: true
21+
22+
before_script:
23+
- if git status | grep -q "modified. \.travis\.yml"; then echo "Dirty yarn.lock"; exit 1; fi
24+
25+
script:
26+
- gulp

CHANGELOG.md

Lines changed: 0 additions & 44 deletions
This file was deleted.

Gruntfile.js

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)