ui-library_mercadolibre 1.11.0
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +28 -0
- package/lib/index.js +1 -0
- package/package.json +14 -0
package/index.js
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
module.exports = {
|
2
|
+
env: {
|
3
|
+
},
|
4
|
+
globals: {
|
5
|
+
},
|
6
|
+
extends: ['eslint:recommended', 'airbnb-base'],
|
7
|
+
rules: {
|
8
|
+
strict: 'off',
|
9
|
+
'func-names': 'off',
|
10
|
+
'spaced-comment': 'off',
|
11
|
+
'no-underscore-dangle': 'off',
|
12
|
+
'arrow-body-style': 'off',
|
13
|
+
'arrow-parens': ['off', 'as-needed'],
|
14
|
+
'prefer-rest-params': 'off',
|
15
|
+
'no-trailing-spaces': ['error', { skipBlankLines: true }],
|
16
|
+
'comma-dangle': ['warn', 'never'],
|
17
|
+
'new-cap': 'warn',
|
18
|
+
'no-unused-vars': 'warn',
|
19
|
+
'object-shorthand': 1,
|
20
|
+
'prefer-arrow-callback': 'off',
|
21
|
+
'prefer-template': 'warn',
|
22
|
+
'vars-on-top': 'warn',
|
23
|
+
indent: ['error', 2, { SwitchCase: 1 }],
|
24
|
+
'import/newline-after-import': 0,
|
25
|
+
'no-multi-assign': 1,
|
26
|
+
'no-prototype-builtins': 'warn'
|
27
|
+
}
|
28
|
+
};
|
package/lib/index.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
test
|
package/package.json
ADDED