Website-Stand vom FTP-Server synchronisieren

This commit is contained in:
2026-09-02 19:24:09 +02:00
parent fd320ba0c6
commit 2c0e092e67
27 changed files with 267 additions and 721 deletions
+3
View File
@@ -0,0 +1,3 @@
{
"directory": "bower_components/"
}
+6
View File
@@ -0,0 +1,6 @@
# Auto detect text files and perform LF normalization
* text=auto
# SCSS and JS files must always use LF for tools to work
*.js eol=lf
*.scss eol=lf
+3
View File
@@ -0,0 +1,3 @@
github: Alex-D
patreon: AlexandreDemode
custom: https://paypal.me/demodealexandre
+20
View File
@@ -0,0 +1,20 @@
<!--- Provide a general summary of the issue in the Title above -->
### Description
<!--
Provide relevant details according to the context:
- OS
- Browser + version
- Screen resolution
- ...
-->
### How to reproduce?
<!--
If relevant, provide a link to a live example based on: https://jsfiddle.net/AlexandreDemode/p7hb3x6u/
- Edit
- Ctrl + S
- Copy/Paste the URL here
-->
+25
View File
@@ -0,0 +1,25 @@
# Others
~$*
/.sass-cache
/uploaded-files
/node_modules
/bower_components
/dist
/src/ui/sass/_sprite*
/plugins/**/ui/sass/_sprite*
# We use npm: ignore yarn
yarn.lock
# Windows image file caches
Thumbs.db
# Folder config file
Desktop.ini
# Mac crap
.DS_Store
# IDEA
.idea
/nbproject
+29
View File
@@ -0,0 +1,29 @@
{
"bitwise": true,
"camelcase": true,
"esnext": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"indent": 4,
"latedef": false,
"newcap": false,
"noarg": true,
"noempty": true,
"plusplus": true,
"quotmark": "single",
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"maxparams": 5,
"maxdepth": 5,
"maxstatements": 40,
"maxcomplexity": 20,
"maxlen": 1200,
"eqnull": true,
"browser": true,
"globals": {
"jQuery": false
}
}
+15
View File
@@ -0,0 +1,15 @@
Gulpfile.js
banner.jpg
bower.json
src
docs
bower_components
.gitattributes
.gitignore
.jshintrc
.github
.idea
.bowerrc
sponsors
BACKERS.md
CONTRIBUTORS.md
+6
View File
@@ -0,0 +1,6 @@
/node_modules/
/bower_components
/dist
/src
/plugins
uploaded-files/
+31
View File
@@ -0,0 +1,31 @@
{
"bitwise": true,
"camelcase": true,
"esnext": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"indent": 4,
"latedef": false,
"newcap": false,
"noarg": true,
"noempty": true,
"plusplus": true,
"quotmark": "single",
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"maxparams": 5,
"maxdepth": 5,
"maxstatements": 40,
"maxcomplexity": 20,
"maxlen": 1200,
"eqnull": true,
"browser": true,
"node": true,
"globals": {
"jQuery": false,
"hljs": false
}
}