Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: appoly/laravel-pages
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.1
Choose a base ref
...
head repository: appoly/laravel-pages
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
26 changes: 26 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
module.exports = {
"extends": [
// add more generic rulesets here, such as:
// 'eslint:recommended',
"plugin:vue/recommended"
],
"rules": {
// override/add rules settings here, such as:
// 'vue/no-unused-vars': 'error'
"vue/max-attributes-per-line": ["error", {
"singleline": 3,
"multiline": {
"max": 1,
"allowFirstLine": false
}
}],
"vue/html-indent": ["error", "tab", {
"attribute": 1,
"baseIndent": 1,
"closeBracket": 0,
"alignAttributesVertically": true,
"ignores": []
}],
"vue/no-v-html": "off"
}
}
6 changes: 3 additions & 3 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
php:
preset: laravel
enabled:
- alpha_ordered_imports
disabled:
- length_ordered_imports
- unused_use
finder:
not-name:
- index.php
- server.php
js:
finder:
exclude:
- dist
- src/public
not-name:
- webpack.mix.js
css: true
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
}
],
"require": {
"league/flysystem-aws-s3-v3": "^1.0"
"league/flysystem-aws-s3-v3": "^3.0"
},
"autoload": {
"psr-4": {
Loading