Skip to content

Commit

Permalink
Add schema package
Browse files Browse the repository at this point in the history
  • Loading branch information
bouzuya committed Jul 17, 2023
1 parent 8a10b85 commit 0edbcd6
Show file tree
Hide file tree
Showing 8 changed files with 2,850 additions and 0 deletions.
29 changes: 29 additions & 0 deletions packages/schema/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/strict-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
"prettier"
],
"ignorePatterns": ["/lib"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": true,
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "import"],
"root": true,
"rules": {
"@typescript-eslint/consistent-type-definitions": ["error", "type"],
"@typescript-eslint/consistent-type-imports": "error",
"import/order": [
"error",
{
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
]
}
}
2 changes: 2 additions & 0 deletions packages/schema/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/lib/
/node_modules/
2 changes: 2 additions & 0 deletions packages/schema/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@bouzuya:registry=https://npm.pkg.github.com
//npm.pkg.github.com/:_authToken=${GITHUB_TOKEN}

0 comments on commit 0edbcd6

Please sign in to comment.