Skip to content

Commit

Permalink
fix(quotes): cleaning + markdown. add test runner. upd elsint
Browse files Browse the repository at this point in the history
  • Loading branch information
yoyurec committed Feb 25, 2023
1 parent ca9bf8f commit 932c51a
Show file tree
Hide file tree
Showing 5 changed files with 824 additions and 334 deletions.
11 changes: 5 additions & 6 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
{
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": ["@typescript-eslint", "react-hooks"],
"plugins": ["@typescript-eslint"],
"parser": "@typescript-eslint/parser",
"rules": {
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"import/prefer-default-export": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unused-vars": ["error", { "ignoreRestSiblings": true }],
"quotes": ["error", "single", { "allowTemplateLiterals": true }]
}
}
}
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,19 @@
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"global-jsdom": "^8.7.0",
"ignore-styles": "^5.0.1",
"jsdom": "^21.1.0",
"semantic-release": "^20.1.0",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"vite": "4.1.1",
"vite": "4.1.4",
"vite-plugin-logseq": "^1.1.2"
},
"logseq": {
Expand Down
Loading

0 comments on commit 932c51a

Please sign in to comment.