Skip to content

Commit

Permalink
test: move to vitest
Browse files Browse the repository at this point in the history
+ eslint instead of xo
  • Loading branch information
cossssmin committed Jan 19, 2024
1 parent f0634c9 commit 2959629
Show file tree
Hide file tree
Showing 6 changed files with 4,706 additions and 16,425 deletions.
18 changes: 18 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [2, 2, {"SwitchCase": 1}],
"quotes": [2, "single"],
"linebreak-style": [2, "unix"],
"camelcase": [2, {"properties": "always"}],
"brace-style": [2, "1tbs", {"allowSingleLine": true}]
},
"env": {
"es6": true,
"node": true,
"browser": false
},
"extends": "eslint:recommended"
}
Loading

0 comments on commit 2959629

Please sign in to comment.