Skip to content

Commit

Permalink
Merge pull request #209 from jacob-alford/1.0.0-schema-first
Browse files Browse the repository at this point in the history
1.0.0
  • Loading branch information
jacob-alford authored Nov 27, 2022
2 parents f348beb + 85a0f6b commit 660117c
Show file tree
Hide file tree
Showing 337 changed files with 14,660 additions and 12,736 deletions.
7 changes: 5 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"plugins": ["@typescript-eslint", "unused-imports", "simple-import-sort"],
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"env": {
"node": true
},
"rules": {
"@typescript-eslint/no-empty-interface": "off"
"@typescript-eslint/no-empty-interface": "off",
"unused-imports/no-unused-imports": "warn",
"simple-import-sort/imports": "warn",
"simple-import-sort/exports": "warn"
}
}
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ on:
push:
branches:
- main
- 1.0.0-schema-first
- $default-branch
pull_request:
branches:
- main
- 1.0.0-schema-first
- $default-branch
jobs:
build:
Expand All @@ -28,6 +30,7 @@ jobs:
- run: yarn run eslint
- run: yarn run test:ci
- name: Coveralls
if: github.ref == 'refs/heads/main'
uses: coverallsapp/[email protected]
env:
NODE_COVERALLS_DEBUG: 1
Expand Down
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"printWidth": 90,
"semi": false,
"arrowParens": "avoid",
"plugins": ["prettier-plugin-jsdoc"]
"plugins": ["prettier-plugin-jsdoc"],
"trailingComma": "all"
}
Loading

0 comments on commit 660117c

Please sign in to comment.