Skip to content

Commit

Permalink
Update version to v1.0.47, fix problem not exist getNextFunction
Browse files Browse the repository at this point in the history
  • Loading branch information
Tutitoos committed Jul 10, 2023
1 parent 0df20ba commit 6ac0b54
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 23 deletions.
42 changes: 21 additions & 21 deletions .eslintrc.cjs → .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,40 @@
module.exports = {
env: {
es2021: true,
node: true,
{
"env": {
"es2021": true,
"node": true
},
extends: ["xo", "prettier"],
plugins: ["import"],
overrides: [
"extends": ["xo", "prettier"],
"plugins": ["import"],
"overrides": [
{
extends: ["xo-typescript", "prettier"],
files: ["*.ts", "*.tsx"],
rules: {
"extends": ["xo-typescript", "prettier"],
"files": ["*.ts", "*.tsx"],
"rules": {
"import/first": "error",
"import/no-duplicates": "error",
"no-duplicate-imports": "error",
"no-implicit-coercion": "off",
"no-unused-vars": ["error"],
"@typescript-eslint/consistent-type-definitions": [
"error",
"interface",
"interface"
],
"@typescript-eslint/indent": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-extraneous-class": "off",
"guard-for-in": "off",
},
},
"guard-for-in": "off"
}
}
],
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
rules: {
"rules": {
"import/first": "error",
"import/no-duplicates": "error",
"no-duplicate-imports": "error",
"no-implicit-coercion": "off",
},
};
"no-implicit-coercion": "off"
}
}
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.editorconfig
.eslintrc.cjs
.eslintrc.json
rome.json
tsconfig.json
renovate.json
node_modules/
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "util-tiempo",
"version": "1.0.46",
"version": "1.0.47",
"description": "util-tiempo para calcular tiempos, para obtener la fecha a elegir, con muchas opciones!",
"author": "Tutitoos",
"license": "MIT",
Expand Down

0 comments on commit 6ac0b54

Please sign in to comment.