Skip to content

Commit

Permalink
v3.0.0 RC 1
Browse files Browse the repository at this point in the history
  • Loading branch information
matiasperrone committed Apr 21, 2020
1 parent cd885b7 commit c73bf36
Show file tree
Hide file tree
Showing 21 changed files with 2,256 additions and 21,701 deletions.
5 changes: 0 additions & 5 deletions .babelrc

This file was deleted.

37 changes: 35 additions & 2 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,19 @@ env:
browser: true
commonjs: true
es6: true
extends: 'eslint:recommended'
amd: true
extends: 'plugin:vue/recommended'
plugins:
- html
- vue
- prettier
settings:
html/html-extensions:
- ".html"
- ".vue"
parserOptions:
sourceType: module
parser: "babel-eslint"
ecmaVersion: 2017
rules:
indent:
- error
Expand All @@ -21,6 +25,35 @@ rules:
quotes:
- error
- single
-
avoidEscape: true
semi:
- error
- always
no-console: 0
no-debugger: 0
vue/require-default-prop: 0
vue/html-indent: 0
max-len:
- 1
-
code: 120
ignoreUrls: true
vue/html-self-closing:
- error
-
html:
void: 'any'
vue/max-attributes-per-line:
- 2
-
singleline: 120
multiline:
max: 2
allowFirstLine: true
globals:
window: true
location: true
document: true
module: true
__dirname: true
33 changes: 33 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"endOfLine": "crlf",
"printWidth": 120,
"singleQuote": true,
"tabWidth": 4,
"useTabs": false,
"semi": false,
"trailingComma": "all",
"insertPragma": false,
"overrides": [
{
"files": [
"*.php",
"*.yml",
"*.yaml"
],
"options": {
"tabWidth": 4
}
},
{
"files": [
"*.js"
],
"options": {
"tabWidth": 4
}
}
],
"plugins": [
"eslint-plugin-prettier"
]
}
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}
};
Loading

0 comments on commit c73bf36

Please sign in to comment.