Add prettier for js/css/vue code style fixes

This commit is contained in:
DariusIII
2019-02-01 11:10:27 +01:00
parent 198e646306
commit f71bd50a3e
11 changed files with 7709 additions and 5283 deletions
+2
View File
@@ -0,0 +1,2 @@
public/
vendor/
+6
View File
@@ -0,0 +1,6 @@
{
"printWidth": 100,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5"
}
+3 -2
View File
@@ -1,6 +1,7 @@
2019-02-01 DariusIII 2019-02-01 DariusIII
* Chg: Update sebastian/environment (4.0.2 => 4.1.0) * Chg: Add prettier for css/js/vue files code style fixes
* Chg: Update phpunit/phpunit (7.5.2 => 7.5.3) * Chg: Update sebastian/environment (4.0.2 => 4.1.0)
* Chg: Update phpunit/phpunit (7.5.2 => 7.5.3)
2019-01-31 DariusIII 2019-01-31 DariusIII
* Chg: Update .styleci config file * Chg: Update .styleci config file
* Chg: Update and fix code with php-cs-fixer * Chg: Update and fix code with php-cs-fixer
+1
View File
@@ -7,6 +7,7 @@
<a href="https://packagist.org/packages/nntmux/newznab-tmux"><img src="https://poser.pugx.org/nntmux/newznab-tmux/license.svg" alt="License"></a> <a href="https://packagist.org/packages/nntmux/newznab-tmux"><img src="https://poser.pugx.org/nntmux/newznab-tmux/license.svg" alt="License"></a>
<a href="https://styleci.io/repos/22602573"><img src="https://styleci.io/repos/22602573/shield?branch=dev" alt="StyleCI"></a> <a href="https://styleci.io/repos/22602573"><img src="https://styleci.io/repos/22602573/shield?branch=dev" alt="StyleCI"></a>
<a href='https://coveralls.io/github/NNTmux/newznab-tmux?branch=0.x'><img src='https://coveralls.io/repos/github/NNTmux/newznab-tmux/badge.svg?branch=dev' alt='Coverage Status' /></a> <a href='https://coveralls.io/github/NNTmux/newznab-tmux?branch=0.x'><img src='https://coveralls.io/repos/github/NNTmux/newznab-tmux/badge.svg?branch=dev' alt='Coverage Status' /></a>
<a href="https://github.com/prettier/prettier"><img src=https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square"></a>
<a href="https://www.patreon.com/bePatron?u=6160908"><img src="https://c5.patreon.com/external/logo/become_a_patron_button.png" alt="Become a Patron!" height="35"></a> <a href="https://www.patreon.com/bePatron?u=6160908"><img src="https://c5.patreon.com/external/logo/become_a_patron_button.png" alt="Become a Patron!" height="35"></a>
</p> </p>
+3 -1
View File
@@ -7,7 +7,8 @@
"watch-poll": "npm run watch -- --watch-poll", "watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production", "prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"format": "prettier --write 'resources/**/*.{css,js,vue}'"
}, },
"devDependencies": { "devDependencies": {
"axios": "^0.18", "axios": "^0.18",
@@ -16,6 +17,7 @@
"laravel-mix": "^4.0.14", "laravel-mix": "^4.0.14",
"lodash": "^4.17.11", "lodash": "^4.17.11",
"popper.js": "^1.14.7", "popper.js": "^1.14.7",
"prettier": "1.16.3",
"vue": "^2.5.22" "vue": "^2.5.22"
}, },
"dependencies": { "dependencies": {
File diff suppressed because it is too large Load Diff
+1 -2
View File
@@ -1,4 +1,3 @@
/** /**
* First we will load all of this project's JavaScript dependencies which * First we will load all of this project's JavaScript dependencies which
* includes Vue and other libraries. It is a great starting point when * includes Vue and other libraries. It is a great starting point when
@@ -18,5 +17,5 @@ window.Vue = require('vue');
Vue.component('example-component', require('./components/ExampleComponent.vue')); Vue.component('example-component', require('./components/ExampleComponent.vue'));
const app = new Vue({ const app = new Vue({
el: '#app' el: '#app',
}); });
@@ -15,9 +15,9 @@
</template> </template>
<script> <script>
export default { export default {
mounted() { mounted() {
console.log('Component mounted.') console.log('Component mounted.');
} },
} };
</script> </script>
+4593 -3450
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff