Skip to content

Commit

Permalink
updated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-jonathan committed May 21, 2024
1 parent a89d71a commit dc2d6e4
Show file tree
Hide file tree
Showing 8 changed files with 218 additions and 2 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
LIB_NAME=@cosmicmind/domainjs
Empty file added .env.development
Empty file.
Empty file added .env.production
Empty file.
Empty file added .env.test
Empty file.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist
145 changes: 145 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,145 @@
root: true
env:
node: true
browser: true
es6: true
parser: '@typescript-eslint/parser'
plugins:
- '@typescript-eslint'
extends:
- eslint:recommended
- plugin:@typescript-eslint/eslint-recommended
- plugin:@typescript-eslint/recommended
- plugin:yml/standard
overrides:
- files:
- '**/*.js'
rules:
'@typescript-eslint/no-inferrable-types':
- 0
'@typescript-eslint/explicit-function-return-type':
- 0
rules:
'@typescript-eslint/no-empty-interface':
- 2
'@typescript-eslint/no-inferrable-types':
- 2
'@typescript-eslint/explicit-function-return-type':
- 2
eqeqeq:
- 2
camelcase:
- 2
no-console:
- 2
no-lonely-if:
- 2
comma-dangle:
- 2
- arrays: never
objects: always-multiline
imports: always-multiline
exports: always-multiline
functions: never
indent:
- 2
- 2
object-curly-spacing:
- 2
- always
array-bracket-spacing:
- 2
- always
curly:
- 2
- all
template-curly-spacing:
- 2
no-trailing-spaces:
- 2
no-spaced-func:
- 2
space-before-blocks:
- 2
semi:
- 2
- never
object-curly-newline:
- 2
- multiline: true
minProperties: 2
consistent: true
object-property-newline:
- 2
object-shorthand:
- 2
no-param-reassign:
- 2
- props: false
no-extra-parens:
- 2
no-return-await:
- 2
no-self-compare:
- 2
no-template-curly-in-string:
- 2
no-throw-literal:
- 2
no-undef-init:
- 2
no-unmodified-loop-condition:
- 2
no-unneeded-ternary:
- 2
no-unreachable-loop:
- 2
no-unsafe-optional-chaining:
- 2
no-unused-expressions:
- 2
no-use-before-define:
- 2
- functions: false
no-useless-backreference:
- 2
no-useless-call:
- 2
no-useless-computed-key:
- 2
no-useless-concat:
- 2
no-useless-constructor:
- 2
no-useless-rename:
- 2
no-useless-return:
- 2
no-var:
- 2
nonblock-statement-body-position:
- 2
one-var-declaration-per-line:
- 2
prefer-arrow-callback:
- 2
prefer-const:
- 2
prefer-exponentiation-operator:
- 2
prefer-numeric-literals:
- 2
prefer-object-spread:
- 2
prefer-promise-reject-errors:
- 2
prefer-template:
- 2
prefer-rest-params:
- 2
rest-spread-spacing:
- 2
require-atomic-updates:
- 2
require-await:
- 2
69 changes: 68 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"typescript": "^5.4.5",
"vite": "^4.5.3",
"vite-plugin-dts": "^1.7.3",
"vitest": "^0.34.6"
"vitest": "^0.34.6",
"yup": "^0.32.11"
}
}

0 comments on commit dc2d6e4

Please sign in to comment.