Skip to content

Commit 6b18c4d

Browse files
committed
Message txt according status
1 parent 4204bc5 commit 6b18c4d

File tree

7 files changed

+240
-328
lines changed

7 files changed

+240
-328
lines changed

.eslintrc.js

Lines changed: 14 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,23 @@
1-
// https://eslint.org/docs/user-guide/configuring
2-
// File taken from https://github.com/vuejs-templates/webpack/blob/1.3.1/template/.eslintrc.js, thanks.
3-
41
module.exports = {
5-
root: true,
6-
parserOptions: {
7-
parser: 'babel-eslint'
8-
},
92
env: {
103
browser: true,
11-
webextensions: true,
4+
commonjs: true,
5+
es6: true,
126
},
137
extends: [
14-
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
15-
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
168
'plugin:vue/essential',
17-
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
18-
'standard' ],
19-
// required to lint *.vue files
9+
'airbnb-base',
10+
],
11+
globals: {
12+
Atomics: 'readonly',
13+
SharedArrayBuffer: 'readonly',
14+
},
15+
parserOptions: {
16+
ecmaVersion: 2018,
17+
},
2018
plugins: [
21-
'vue'
19+
'vue',
2220
],
23-
// add your custom rules here
2421
rules: {
25-
// allow async-await
26-
'generator-star-spacing': 'off',
27-
// allow debugger during development
28-
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
29-
}
30-
}
22+
},
23+
};

package-lock.json

Lines changed: 64 additions & 80 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,16 @@
4242
"cross-env": "^5.2.0",
4343
"css-loader": "^3.4.0",
4444
"ejs": "^2.6.1",
45-
"eslint": "^6.6.0",
45+
"eslint": "^6.8.0",
46+
"eslint-config-airbnb-base": "^14.1.0",
4647
"eslint-config-standard": "^14.1.0",
4748
"eslint-friendly-formatter": "^4.0.1",
4849
"eslint-loader": "^3.0.2",
49-
"eslint-plugin-import": "^2.18.2",
50+
"eslint-plugin-import": "^2.20.2",
5051
"eslint-plugin-node": "^10.0.0",
5152
"eslint-plugin-promise": "^4.2.1",
5253
"eslint-plugin-standard": "^4.0.1",
53-
"eslint-plugin-vue": "^6.0.1",
54+
"eslint-plugin-vue": "^6.2.2",
5455
"file-loader": "^5.0.2",
5556
"google-fonts-webpack-plugin": "^0.4.4",
5657
"mini-css-extract-plugin": "^0.9.0",

0 commit comments

Comments
 (0)