-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from Meteor-Community-Packages/migration/3.0
Migration/3.0
- Loading branch information
Showing
9 changed files
with
2,226 additions
and
3,695 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -30,4 +30,4 @@ jobs: | |
- run: | | ||
npm ci | ||
npm run lint | ||
npm run pre-commit | ||
npm run lint:ts |
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,4 +1,5 @@ | ||
node_modules/ | ||
.npm | ||
.idea/ | ||
.npm/ | ||
__types/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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,17 +1,18 @@ | ||
babel-compiler@7.10.5 | ||
babel-runtime@1.5.1 | ||
dynamic-import@0.7.3 | ||
ecmascript-runtime@0.8.1 | ||
ecmascript-runtime-client@0.12.1 | ||
ecmascript-runtime-server@0.11.0 | ||
fetch@0.1.4 | ||
inter-process-messaging@0.1.1 | ||
meteor@1.11.5 | ||
modern-browsers@0.1.10 | ||
modules@0.20.0 | ||
modules-runtime@0.13.1 | ||
promise@0.12.2 | ||
react-fast-refresh@0.2.8 | ||
tmeasday:check-npm-versions@1.0.3 | ||
typescript@4.9.5 | ||
babel-compiler@7.11.0 | ||
babel-runtime@1.5.2 | ||
core-runtime@1.0.0 | ||
dynamic-import@0.7.4 | ||
ecmascript-runtime@0.8.2 | ||
ecmascript-runtime-client@0.12.2 | ||
ecmascript-runtime-server@0.11.1 | ||
fetch@0.1.5 | ||
inter-process-messaging@0.1.2 | ||
meteor@2.0.0 | ||
modern-browsers@0.1.11 | ||
modules@0.20.1 | ||
modules-runtime@0.13.2 | ||
promise@1.0.0 | ||
react-fast-refresh@0.2.9 | ||
tmeasday:check-npm-versions@2.0.0-rc300.1 | ||
typescript@5.4.3 | ||
zodern:types@1.0.13 |
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
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,17 @@ | ||
// @ts-check | ||
|
||
import eslint from '@eslint/js'; | ||
import tseslint from 'typescript-eslint'; | ||
|
||
// see https://typescript-eslint.io/getting-started | ||
|
||
export default tseslint.config( | ||
eslint.configs.recommended, | ||
...tseslint.configs.recommended, | ||
{ | ||
rules: { | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/no-var-requires': 'off', | ||
} | ||
} | ||
); |
Oops, something went wrong.