Skip to content

Commit

Permalink
refactoring maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
korelstar committed Feb 20, 2020
1 parent 63e53e6 commit 70e77ed
Show file tree
Hide file tree
Showing 20 changed files with 443 additions and 443 deletions.
13 changes: 4 additions & 9 deletions .babelrc.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
module.exports = {
plugins: ['@babel/plugin-syntax-dynamic-import'],
plugins: [
'@babel/plugin-syntax-dynamic-import',
],
presets: [
[
'@babel/preset-env',
{
targets: {
browsers: ['last 2 versions', 'ie >= 11']
}
}
]
[ '@babel/preset-env', { useBuiltIns: 'usage', corejs: 3 } ],
]
}
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ module.exports = {
},
rules: {
// no ending html tag on a new line (was warn in "vue/strongly-recommended")
'vue/html-closing-bracket-newline': ['error', { multiline: 'always' }]
'vue/html-closing-bracket-newline': ['error', { multiline: 'always' }],
},
}
17 changes: 0 additions & 17 deletions .scrutinizer.yml

This file was deleted.

9 changes: 3 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ appstore: clean lint build-js-production
rsync -a \
--exclude=.babelrc.js \
--exclude=build \
--exclude=composer.json \
--exclude=composer.lock \
--exclude=composer.phar \
--exclude=composer.* \
--exclude=CONTRIBUTING.md \
--exclude=.editorconfig \
--exclude=.eslintrc.js \
Expand All @@ -27,7 +25,6 @@ appstore: clean lint build-js-production
--exclude=Makefile \
--exclude=node_modules \
--exclude=package*.json \
--exclude=phpcs.xml \
--exclude=phpunit*xml \
--exclude=.scrutinizer.yml \
--exclude=src \
Expand Down Expand Up @@ -108,11 +105,11 @@ lint-php-ncversion:

lint-php-phan:
# PHAN
vendor/bin/phan --allow-polyfill-parser -k .phan/config.php --no-progress-bar -m checkstyle | vendor/bin/cs2pr
vendor/bin/phan --allow-polyfill-parser -k tests/phan-config.php --no-progress-bar -m checkstyle | vendor/bin/cs2pr

lint-php-phpcs:
# PHP CodeSniffer
vendor/bin/phpcs --standard=phpcs.xml appinfo/ lib/ --report=checkstyle | vendor/bin/cs2pr
vendor/bin/phpcs --standard=tests/phpcs.xml appinfo/ lib/ --report=checkstyle | vendor/bin/cs2pr


lint-js:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ Before reporting bugs:

## :busts_in_silhouette: Maintainers
- [Kristof Hamann](https://github.com/korelstar)
- [Hendrik Leppelsack](https://github.com/Henni)
- [Lukas Reschke](https://github.com/LukasReschke)
- [Hendrik Leppelsack](https://github.com/Henni) (formerly)
- [Lukas Reschke](https://github.com/LukasReschke) (formerly)


## :warning: Developer Info
Expand Down
Loading

0 comments on commit 70e77ed

Please sign in to comment.