Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-05-12 22:52:15 +0300
committerJoas Schilling <coding@schilljs.com>2020-05-12 22:52:15 +0300
commit400939180626203c1d22de6e6a87e57f46533071 (patch)
tree3600c7e6f64f2b01fc1abb58964d640003ce31c8
parente5ccfbf6ae21710ddcd14c66e63c030d22f35efa (diff)
Update the exclude lists
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.gitignore27
-rw-r--r--Makefile4
2 files changed, 17 insertions, 14 deletions
diff --git a/.gitignore b/.gitignore
index 45b42408f..8d8d82cbb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,20 +1,21 @@
# Exclude npm stuff
-build
-node_modules
+/build
+/node_modules
+
+# PHP Code Sniffer
+/vendor
+/.php_cs.cache
# Local docs
/site
# Karma/jasmine coverage data
-coverage
-tests/php/coverage-html
-tests/php/clover.xml
-tests/php/.phpunit.result.cache
-tests/integration/vendor
-tests/integration/output
-
-js
+/coverage
+/tests/php/coverage-html
+/tests/php/clover.xml
+/tests/php/.phpunit.result.cache
+/tests/integration/vendor
+/tests/integration/output
-# PHP Coding Style
-vendor/
-.php_cs.cache
+# Compiled javascript
+/js
diff --git a/Makefile b/Makefile
index 86310e4a2..46bf306e8 100644
--- a/Makefile
+++ b/Makefile
@@ -79,11 +79,13 @@ appstore:
--exclude=package.json \
--exclude=package-lock.json \
--exclude=.php_cs.dist \
+ --exclude=.php_cs.cache \
--exclude=README.md \
--exclude=run-*lint.sh \
--exclude=src \
--exclude=.stylelintignore \
- --exclude=.stylelintrc \
+ --exclude=stylelint.config.js \
+ --exclude=.tx \
--exclude=tests \
--exclude=vendor \
--exclude=webpack.*.js \