We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc8840e commit e007bf5Copy full SHA for e007bf5
.eslintignore
@@ -0,0 +1,2 @@
1
+dist/
2
+node_modules/
.eslintrc.js
@@ -0,0 +1,17 @@
+module.exports = {
+ root: true,
3
+ env: {
4
+ node: true,
5
+ },
6
+ extends: [
7
+ 'plugin:vue/essential',
8
+ 'airbnb-base',
9
+ ],
10
+ rules: {
11
+ 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
12
+ 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
13
14
+ parserOptions: {
15
+ parser: 'babel-eslint',
16
17
+};
tests/unit/.eslintrc.js
@@ -0,0 +1,5 @@
+ jest: true,
0 commit comments