Skip to content

Commit eadc18f

Browse files
📦 v1.2.0 : Mejor release
1 parent 1900091 commit eadc18f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+327
-288
lines changed

.editorconfig

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ end_of_line = lf
55
charset = utf-8
66
trim_trailing_whitespace = true
77
indent_style = space
8-
indent_size = 2
8+
indent_size = 2
9+
singleQuote = true

.eslintignore

100644100755
File mode changed.

.eslintrc

100644100755
Lines changed: 32 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,57 +1,35 @@
11
{
2-
"plugins": [
3-
"prefer-arrow-functions"
2+
"env": {
3+
"commonjs": true
4+
},
5+
"rules": {
6+
"comma-dangle": ["error", "never"],
7+
"semi": ["error", "always"],
8+
"indent": ["error", 2],
9+
"quotes": ["error", "single"],
10+
"no-multi-spaces": [
11+
"error",
12+
{
13+
"exceptions": {
14+
"ImportDeclaration": true
15+
}
16+
}
417
],
5-
"extends": [
6-
"standard"
18+
"no-multiple-empty-lines": [
19+
"error",
20+
{
21+
"max": 1
22+
}
723
],
8-
"env": {
9-
"commonjs": true
10-
},
11-
"rules": {
12-
"comma-dangle": [
13-
"error",
14-
"never"
15-
],
16-
"semi": [
17-
"error",
18-
"always"
19-
],
20-
"indent": [
21-
"error",
22-
2
23-
],
24-
"quotes": [
25-
"error",
26-
"single"
27-
],
28-
"no-multi-spaces": [
29-
"error",
30-
{
31-
"exceptions": {
32-
"ImportDeclaration": true
33-
}
34-
}
35-
],
36-
"no-multiple-empty-lines": [
37-
"error",
38-
{
39-
"max": 1
40-
}
41-
],
42-
"no-trailing-spaces": [
43-
"error"
44-
],
45-
"no-unused-vars": [
46-
"error",
47-
{
48-
"vars": "all",
49-
"args": "after-used",
50-
"ignoreRestSiblings": false
51-
}
52-
],
53-
"no-var": [
54-
"error"
55-
]
56-
}
57-
}
24+
"no-trailing-spaces": ["error"],
25+
"no-unused-vars": [
26+
"error",
27+
{
28+
"vars": "all",
29+
"args": "after-used",
30+
"ignoreRestSiblings": false
31+
}
32+
],
33+
"no-var": ["error"]
34+
}
35+
}

.gitattributes

100644100755
File mode changed.

.github/FUNDING.yml

100644100755
File mode changed.

.github/ISSUE_TEMPLATE/bug_report.md

100644100755
File mode changed.

.github/ISSUE_TEMPLATE/feature_request.md

100644100755
File mode changed.

.github/logo.png

100644100755
-796 Bytes
Loading

.gitignore

100644100755
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
node_modules/
55
.vscode/
66
tests/
7-
logs/
7+
tmp/
8+
release/
89
build/
910

1011
# Packages #

.npmignore

100644100755
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ node_modules/
22
.vscode/
33
docs/
44
tests/
5-
coverage/
5+
coverage/
6+
build/
7+
sample/

0 commit comments

Comments
 (0)