Skip to content
This repository was archived by the owner on Apr 1, 2021. It is now read-only.

Commit a3cf88b

Browse files
committed
Merge branch 'feature/eslint' into develop
2 parents a758c6c + 5d2c500 commit a3cf88b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+15839
-10407
lines changed

.eslintrc

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"extends": [
3+
"standard",
4+
"plugin:vue/strongly-recommended"
5+
],
6+
"env": {
7+
"browser": true
8+
},
9+
"parserOptions": {
10+
"ecmaVersion": 8
11+
},
12+
"globals": {
13+
"$": true,
14+
"_": true,
15+
"jQuery": true,
16+
"moment": true,
17+
"axios": true,
18+
"Vue": true,
19+
"CONFIG": true
20+
},
21+
"rules": {
22+
"curly": ["error", "multi-or-nest"],
23+
"camelcase": "warn",
24+
"comma-dangle": ["error", "always-multiline"],
25+
"no-var": "error",
26+
"no-console": ["error", {
27+
"allow": ["warn", "error"]
28+
}],
29+
"prefer-const": ["error", {
30+
"destructuring": "all"
31+
}],
32+
"quote-props": ["error", "consistent-as-needed"],
33+
"prefer-template": "error",
34+
"object-curly-spacing": ["error", "always"],
35+
"linebreak-style": "off",
36+
"key-spacing": ["error", {
37+
"align": {
38+
"beforeColon": false,
39+
"afterColon": true,
40+
"on": "colon"
41+
}
42+
}],
43+
"vue/require-default-prop": "off",
44+
"vue/require-prop-types": "off"
45+
}
46+
}

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
/node_modules
22
/public/hot
33
/public/storage
4+
/public/js
5+
/public/css
6+
/public/images
7+
/public/fonts
8+
/public/mix-manifest.json
49
/storage/*.key
510
/vendor
611
/.idea

0 commit comments

Comments
 (0)