-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
05c3c0e
commit d3afaaf
Showing
9 changed files
with
1,963 additions
and
2,904 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
683 changes: 342 additions & 341 deletions
683
.yarn/releases/yarn-4.1.0.cjs → .yarn/releases/yarn-4.3.0.cjs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1 @@ | ||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs | ||
spec: "@yarnpkg/plugin-interactive-tools" | ||
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs | ||
spec: "@yarnpkg/plugin-typescript" | ||
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs | ||
spec: "@yarnpkg/plugin-version" | ||
|
||
yarnPath: .yarn/releases/yarn-4.1.0.cjs | ||
yarnPath: .yarn/releases/yarn-4.3.0.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
import eslint from "@eslint/js"; | ||
import jest from "eslint-plugin-jest"; | ||
import spellcheck from "eslint-plugin-spellcheck"; | ||
import tsdoc from "eslint-plugin-tsdoc"; | ||
import tseslint from "typescript-eslint"; | ||
|
||
export default tseslint.config( | ||
eslint.configs.recommended, | ||
...tseslint.configs.recommendedTypeChecked, | ||
//...tseslint.configs.stylisticTypeChecked, | ||
//...tseslint.configs.strictTypeChecked, | ||
{ | ||
languageOptions: { | ||
parserOptions: { | ||
project: true, | ||
tsconfigRootDir: import.meta.dirname, | ||
}, | ||
}, | ||
plugins: { | ||
jest, | ||
spellcheck, | ||
tsdoc, | ||
}, | ||
rules: { | ||
"no-console": "error", | ||
"tsdoc/syntax": "error", | ||
"prefer-const": [ | ||
"error", | ||
{ | ||
destructuring: "all", | ||
}, | ||
], | ||
"no-warning-comments": [ | ||
"error", | ||
{ | ||
terms: ["fixme"], | ||
location: "anywhere", | ||
}, | ||
], | ||
"@typescript-eslint/no-unnecessary-type-assertion": "error", | ||
"@typescript-eslint/no-unused-vars": [ | ||
"error", | ||
{ | ||
varsIgnorePattern: "^_+$", | ||
}, | ||
], | ||
"spellcheck/spell-checker": [ | ||
"error", | ||
{ | ||
identifiers: false, | ||
skipWords: [ | ||
"Awan", | ||
"Azura", | ||
"Emden", | ||
"Flowgen", | ||
"Flowtype", | ||
"Gansner", | ||
"Noam", | ||
"accessor", | ||
"accessors", | ||
"acyclic", | ||
"advisee", | ||
"aggregator", | ||
"aggregators", | ||
"bidirectionalizes", | ||
"bigrams", | ||
"bottomup", | ||
"coffman", | ||
"coffmangraham", | ||
"contravariant", | ||
"coord", | ||
"covariant", | ||
"curviness", | ||
"customizable", | ||
"decrement", | ||
"decross", | ||
"decrossed", | ||
"decrossing", | ||
"decrossings", | ||
"decycle", | ||
"dedup", | ||
"deserializing", | ||
"directionally", | ||
"ecode", | ||
"esnext", | ||
"grafo", | ||
"graphvis", | ||
"hydrator", | ||
"idescendants", | ||
"iife", | ||
"ilinks", | ||
"indeg", | ||
"infeasible", | ||
"initializers", | ||
"inits", | ||
"invariants", | ||
"iroots", | ||
"isplit", | ||
"iter", | ||
"iterables", | ||
"javascript", | ||
"lagrangian", | ||
"laidout", | ||
"longestpath", | ||
"minimizers", | ||
"multidag", | ||
"multigraph", | ||
"multimap", | ||
"multitree", | ||
"nchild", | ||
"nchildren", | ||
"negatable", | ||
"outdeg", | ||
"parametrize", | ||
"quadprog", | ||
"radix", | ||
"readonly", | ||
"rect", | ||
"replacer", | ||
"rescale", | ||
"rescaled", | ||
"resized", | ||
"resizing", | ||
"suboptimal", | ||
"sugi", | ||
"sugify", | ||
"sugiyama", | ||
"tabularesque", | ||
"topdown", | ||
"transpiled", | ||
"transpiling", | ||
"twolayer", | ||
"unordered", | ||
"unranked", | ||
"unsugify", | ||
"vals", | ||
"vert", | ||
"verticality", | ||
"zherebko", | ||
], | ||
minLength: 4, | ||
}, | ||
], | ||
}, | ||
}, | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.