summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000..9e383e1
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,19 @@
+module.exports = {
+ root: true,
+ env: {
+ browser: true,
+ node: true
+ },
+ parserOptions: {
+ parser: '@babel/eslint-parser',
+ requireConfigFile: false
+ },
+ extends: [
+ '@nuxtjs',
+ 'plugin:nuxt/recommended'
+ ],
+ plugins: [
+ ],
+ // add your custom rules here
+ rules: {}
+}