aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js32
1 files changed, 17 insertions, 15 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 9506a3e..8e1c2e4 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,20 +1,22 @@
module.exports = {
- "env": {
- "browser": true,
- "es6": true
+ env: {
+ browser: true,
+ es6: true
},
- "extends": "plugin:vue/essential",
- "globals": {
- "Atomics": "readonly",
- "SharedArrayBuffer": "readonly"
+ extends: [
+ 'plugin:vue/essential',
+ 'standard'
+ ],
+ globals: {
+ Atomics: 'readonly',
+ SharedArrayBuffer: 'readonly'
},
- "parserOptions": {
- "ecmaVersion": 2018,
- "sourceType": "module"
+ parserOptions: {
+ ecmaVersion: 2018,
+ sourceType: 'module'
},
- "plugins": [
- "vue"
+ plugins: [
+ 'vue'
],
- "rules": {
- }
-}; \ No newline at end of file
+ rules: {}
+}