-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
extends plugin:import/recommended
and fix warnings
#2922
Changes from all commits
407ead9
29dfaaa
79ae4f3
a6edf80
cba116a
d5c8f8e
bfcf490
e10f96f
05658fe
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
'cm6-graphql': patch | ||
'codemirror-graphql': patch | ||
'graphiql': patch | ||
'graphql-language-service': patch | ||
'graphql-language-service-cli': patch | ||
'graphql-language-service-server': patch | ||
'monaco-graphql': patch | ||
'vscode-graphql-execution': patch | ||
--- | ||
|
||
extends `plugin:import/recommended` and fix warnings |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,3 +30,5 @@ yarn-1.18.0.js | |
|
||
# Local Netlify folder | ||
.netlify | ||
|
||
examples/*/yarn.lock |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,6 +110,7 @@ wonka | |
wsrun | ||
lezer | ||
buildhelper | ||
sonarjs | ||
|
||
|
||
// identifiers used in code and configs | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"name": "example-cm6-graphql-parcel", | ||
"name": "example-cm6-graphql-legacy-parcel", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
"version": "1.1.10-alpha.8", | ||
"license": "MIT", | ||
"description": "GraphiQL Parcel Example", | ||
|
@@ -24,12 +24,12 @@ | |
"dependencies": { | ||
"@codemirror/basic-setup": "^0.20.0", | ||
"@codemirror/language": "^0.20.0", | ||
"codemirror-graphql": "file:../../packages/codemirror-graphql", | ||
"graphql": "^16.4.0", | ||
"typescript": "^4.6.3" | ||
"codemirror-graphql": "^2.0.2", | ||
"graphql": "^16.4.0" | ||
}, | ||
"devDependencies": { | ||
"parcel-bundler": "^1.12.4", | ||
"worker-loader": "^2.0.0" | ||
"worker-loader": "^2.0.0", | ||
"typescript": "^4.6.3" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,11 +5,7 @@ | |
"license": "MIT", | ||
"workspaces": { | ||
"packages": [ | ||
"packages/*", | ||
"examples/graphiql-webpack", | ||
"examples/monaco-graphql-webpack", | ||
"examples/monaco-graphql-react-vite", | ||
"examples/cm6-graphql-parcel" | ||
"packages/*" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Some of the examples have readme files which instruct users to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. +1 on this, would love if we'd adjust this before merging! |
||
] | ||
}, | ||
"lint-staged": { | ||
|
@@ -94,7 +90,6 @@ | |
"@babel/register": "^7.17.7", | ||
"@changesets/changelog-github": "^0.4.7", | ||
"@changesets/cli": "^2.25.2", | ||
"@cypress/webpack-preprocessor": "^5.5.0", | ||
"@manypkg/get-packages": "^1.1.3", | ||
"@strictsoftware/typedoc-plugin-monorepo": "^0.3.1", | ||
"@testing-library/jest-dom": "5.16.5", | ||
|
@@ -117,14 +112,16 @@ | |
"cors": "^2.8.5", | ||
"cross-env": "^7.0.2", | ||
"cspell": "^5.15.2", | ||
"cypress": "^4.7.0", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. moved inside |
||
"eslint": "^8.28.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-import-resolver-typescript": "^3.5.2", | ||
"eslint-plugin-cypress": "^2.12.1", | ||
"eslint-plugin-import": "^2.26.0", | ||
"eslint-plugin-jest": "^27.1.6", | ||
"eslint-plugin-promise": "^6.1.1", | ||
"eslint-plugin-react": "^7.31.11", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"eslint-plugin-sonarjs": "^0.17.0", | ||
"eslint-plugin-unicorn": "^45.0.1", | ||
"execa": "^6.0.0", | ||
"express": "^4.17.3", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
already included while extending
plugin:import/typescript
config