Skip to content

Commit 63f8461

Browse files
committed
Cleanup eslint file
1 parent 2381a9f commit 63f8461

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.eslintrc.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,27 @@
1-
// http://eslint.org/docs/user-guide/configuring
2-
31
module.exports = {
42
root: true,
53
parserOptions: {
64
parser: 'babel-eslint',
75
ecmaVersion: 2017,
8-
sourceType: "module"
6+
sourceType: 'module'
97
},
108
env: {
119
browser: true,
1210
jest: true
1311
},
14-
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
1512
extends: [
1613
'standard',
1714
'plugin:vue/recommended',
1815
'eslint:recommended',
1916
'prettier/vue',
2017
'plugin:prettier/recommended'
2118
],
22-
// required to lint *.vue files
2319
plugins: [
2420
'vue'
2521
],
26-
// add your custom rules here
2722
rules: {
28-
// allow paren-less arrow functions
23+
'no-console': 'off',
2924
'arrow-parens': 0,
30-
// allow async-await
3125
'generator-star-spacing': 0,
3226
'vue/html-closing-bracket-newline': 0,
3327
'vue/singleline-html-element-content-newline': 0,

0 commit comments

Comments
 (0)