Skip to content

Commit d1fcad7

Browse files
authored
extends plugin:import/recommended and fix warnings (#2922)
* extends `plugin:import/recommended` and fix warnings * fix lint in ci * fix unit tests * fix e2e * remove `wonka`/`regenerator-runtime` from dependencies remove `regenerator-runtime/runtime` import * remove examples from workspaces * rebase and enable merged rules * update examples * rebase fixes
1 parent 18f8e80 commit d1fcad7

File tree

43 files changed

+320
-2798
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+320
-2798
lines changed

.changeset/cold-doors-arrive.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
'cm6-graphql': patch
3+
'codemirror-graphql': patch
4+
'graphiql': patch
5+
'graphql-language-service': patch
6+
'graphql-language-service-cli': patch
7+
'graphql-language-service-server': patch
8+
'monaco-graphql': patch
9+
'vscode-graphql-execution': patch
10+
---
11+
12+
extends `plugin:import/recommended` and fix warnings

.eslintrc.js

+34-18
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ module.exports = {
2222
react: {
2323
version: 'detect',
2424
},
25-
'import/extensions': ['.js', '.jsx', '.ts', '.tsx'],
2625
},
2726
// https://github.com/sindresorhus/globals/blob/master/globals.json
2827
env: {
@@ -36,6 +35,7 @@ module.exports = {
3635

3736
extends: [
3837
'eslint:recommended',
38+
'plugin:import/recommended',
3939
'plugin:import/typescript',
4040
'plugin:react/recommended',
4141
'plugin:react-hooks/recommended',
@@ -109,7 +109,6 @@ module.exports = {
109109
'no-sequences': 1,
110110
'no-throw-literal': 1,
111111
'no-unmodified-loop-condition': 0,
112-
'no-unused-expressions': 0,
113112
'no-useless-call': 1,
114113
'no-useless-concat': 1,
115114
'no-useless-return': 0,
@@ -142,7 +141,6 @@ module.exports = {
142141
'error',
143142
{ argsIgnorePattern: '^_', ignoreRestSiblings: true },
144143
],
145-
'@typescript-eslint/no-unused-expressions': 'error',
146144

147145
'no-use-before-define': 0,
148146

@@ -188,8 +186,6 @@ module.exports = {
188186
'no-bitwise': 1,
189187
'no-continue': 0,
190188
'no-inline-comments': 0,
191-
'no-lonely-if': 'error',
192-
'unicorn/no-lonely-if': 'error',
193189
'no-mixed-operators': 0,
194190
'no-negated-condition': 'error',
195191
'no-nested-ternary': 0,
@@ -229,10 +225,9 @@ module.exports = {
229225
'sort-imports': 0,
230226
'symbol-description': 1,
231227

232-
// import (https://github.com/benmosher/eslint-plugin-import)
233-
// 'import/no-unresolved': [2, { modules: 'es6' }],
234-
'import/no-cycle': 0,
235-
'import/no-extraneous-dependencies': 1,
228+
'import/no-extraneous-dependencies': 'error',
229+
'import/no-duplicates': 'error',
230+
'import/no-named-as-default': 'error',
236231
'prefer-object-spread': 'error',
237232
// react rules
238233
'react/no-unused-state': 'error',
@@ -264,12 +259,22 @@ module.exports = {
264259
],
265260
// Jest rules
266261
'jest/no-conditional-expect': 0,
262+
263+
'promise/no-multiple-resolved': 'error',
264+
'sonarjs/no-redundant-jump': 'error',
265+
'unicorn/prefer-logical-operator-over-ternary': 'error',
266+
'unicorn/throw-new-error': 'error',
267+
'unicorn/prefer-includes': 'error',
268+
'no-lonely-if': 'error',
269+
'unicorn/no-lonely-if': 'error',
270+
'no-unused-expressions': 'off',
271+
'@typescript-eslint/no-unused-expressions': 'error',
267272
},
268273

269-
plugins: ['import', '@typescript-eslint', 'unicorn'],
274+
plugins: ['@typescript-eslint', 'promise', 'sonarjs', 'unicorn'],
270275

271276
overrides: [
272-
// Cypress plugin, global, etc only for cypress directory
277+
// Cypress plugin, global, etc., only for cypress directory
273278
// https://github.com/cypress-io/eslint-plugin-cypress
274279
// cypress clashes with jest expect()
275280
{
@@ -293,13 +298,6 @@ module.exports = {
293298
'jest/no-conditional-expect': 0,
294299
},
295300
},
296-
{
297-
// Converted from 'dependencies' options in ancient config
298-
files: ['**/spec/**', '**/sample-*/**'],
299-
rules: {
300-
'import/no-cycle': 0,
301-
},
302-
},
303301
{
304302
// Resources are typically our helper scripts; make life easier there
305303
files: ['resources/**', '**/resources/**', 'scripts/**'],
@@ -322,6 +320,24 @@ module.exports = {
322320
'no-console': 'off',
323321
'no-new': 'off',
324322
'no-alert': 'off',
323+
'import/no-unresolved': 'off',
324+
},
325+
},
326+
// Ignore imported dependencies from tests files
327+
{
328+
files: ['**/__tests__/**', 'webpack.config.js'],
329+
rules: {
330+
'import/no-extraneous-dependencies': 'off',
331+
},
332+
},
333+
// Allow import `vscode` package
334+
{
335+
files: [
336+
'packages/vscode-graphql/**',
337+
'packages/vscode-graphql-execution/**',
338+
],
339+
rules: {
340+
'import/no-unresolved': ['error', { ignore: ['vscode'] }],
325341
},
326342
},
327343
],

.github/workflows/pr-check.yml

+4-16
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,11 @@ jobs:
2222
cache: 'yarn'
2323
- run: yarn install --frozen-lockfile --immutable
2424

25-
- name: Eslint
25+
- name: TypeScript Build
26+
run: yarn build
27+
28+
- name: ESLint
2629
run: yarn lint
2730

2831
- name: Prettier Check
2932
run: yarn pretty-check
30-
31-
build:
32-
name: Typescript Build
33-
runs-on: ubuntu-20.04
34-
steps:
35-
- name: Checkout Code
36-
uses: actions/checkout@v3
37-
- uses: actions/setup-node@v3
38-
with:
39-
node-version: 16
40-
cache: 'yarn'
41-
- run: yarn install --frozen-lockfile --immutable
42-
43-
- name: Tyescript Build
44-
run: yarn build

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,5 @@ yarn-1.18.0.js
3030

3131
# Local Netlify folder
3232
.netlify
33+
34+
examples/*/yarn.lock

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ this purpose.
238238

239239
- **Discord**
240240
[![Discord](https://img.shields.io/discord/625400653321076807.svg)](https://discord.gg/NP5vbPeUFp) -
241-
Most discussion outside of github happens on the GraphQL
241+
Most discussion outside of GitHub happens on the GraphQL
242242
[Discord Server](https://discord.gg/NP5vbPeUFp)
243243
- **Twitter** - [@GraphiQL](https://twitter.com/@GraphiQL) and
244244
[#GraphiQL](https://twitter.com/hashtag/GraphiQL)

custom-words.txt

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ wonka
110110
wsrun
111111
lezer
112112
buildhelper
113+
sonarjs
113114

114115

115116
// identifiers used in code and configs

cypress.json

-1
This file was deleted.

examples/cm6-graphql-legacy-parcel/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@ GraphQL implementation with parcel bundler.
55

66
### Setup
77

8-
1. `yarn` and `yarn build` at the root of this repository, if you have not
9-
already.
108
1. `yarn` and `yarn start` from this folder to start parcel dev mode.
119
1. `yarn build` to find production ready files.

examples/cm6-graphql-legacy-parcel/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "example-cm6-graphql-parcel",
2+
"name": "example-cm6-graphql-legacy-parcel",
33
"version": "1.1.10-alpha.8",
44
"license": "MIT",
55
"description": "GraphiQL Parcel Example",
@@ -24,12 +24,12 @@
2424
"dependencies": {
2525
"@codemirror/basic-setup": "^0.20.0",
2626
"@codemirror/language": "^0.20.0",
27-
"codemirror-graphql": "file:../../packages/codemirror-graphql",
28-
"graphql": "^16.4.0",
29-
"typescript": "^4.6.3"
27+
"codemirror-graphql": "^2.0.2",
28+
"graphql": "^16.4.0"
3029
},
3130
"devDependencies": {
3231
"parcel-bundler": "^1.12.4",
33-
"worker-loader": "^2.0.0"
32+
"worker-loader": "^2.0.0",
33+
"typescript": "^4.6.3"
3434
}
3535
}

examples/cm6-graphql-parcel/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@ GraphQL implementation with parcel bundler.
55

66
### Setup
77

8-
1. `yarn` and `yarn build` at the root of this repository, if you have not
9-
already.
108
1. `yarn` and `yarn start` from this folder to start parcel dev mode.
119
1. `yarn build` to find production ready files.

examples/cm6-graphql-parcel/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@
2929
"@codemirror/theme-one-dark": "6.0.0",
3030
"@codemirror/view": "6.1.2",
3131
"cm6-graphql": "0.0.1",
32-
"graphql": "^16.4.0",
33-
"typescript": "^4.6.3"
32+
"graphql": "^16.4.0"
3433
},
3534
"devDependencies": {
3635
"parcel": "^2.6.2",
37-
"worker-loader": "^2.0.0"
36+
"worker-loader": "^2.0.0",
37+
"typescript": "^4.6.3"
3838
},
3939
"resolutions": {
4040
"**/@codemirror/autocomplete": "6.0.0",

examples/graphiql-create-react-app/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,5 @@ This example demonstrates how to transpile your own custom ES6 and typescript Gr
44

55
### Setup
66

7-
1. Run `yarn` at root of the repository to install the dependencies.
8-
1. Run `yarn build && yarn build-bundles` at the root to build graphiql for import
97
1. `yarn` and `yarn start` from this folder to start `react-scripts` dev server.
108
1. `yarn build` from this folder to build production ready transpiled files using `react-scripts`. Find the output in `build` folder.

examples/graphiql-create-react-app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.1.11-alpha.8",
44
"private": true,
55
"dependencies": {
6-
"graphiql": "file:../../packages/graphiql",
6+
"graphiql": "^2.2.0",
77
"graphql": "^16.4.0",
88
"react": "^17.0.2",
99
"react-dom": "^17.0.2",

examples/graphiql-parcel/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@ implementation with parcel bundler.
55

66
### Setup
77

8-
1. `yarn` and `yarn build` at the root of this repository, if you have not
9-
already.
108
1. `yarn` and `yarn start` from this folder to start parcel dev mode.
119
1. `yarn build` to find production ready files.

examples/graphiql-parcel/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
]
2323
},
2424
"dependencies": {
25-
"graphiql": "file:../../packages/graphiql",
25+
"graphiql": "^2.2.0",
2626
"graphql": "^16.4.0",
2727
"react": "^17.0.2",
28-
"react-dom": "^17.0.2",
29-
"typescript": "^4.6.3"
28+
"react-dom": "^17.0.2"
3029
},
3130
"devDependencies": {
3231
"parcel": "^2.5.0",
33-
"worker-loader": "^2.0.0"
32+
"worker-loader": "^2.0.0",
33+
"typescript": "^4.6.3"
3434
}
3535
}

examples/graphiql-parcel/src/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from 'react';
22
import ReactDOM from 'react-dom';
3-
import GraphiQL from 'graphiql';
3+
import { GraphiQL } from 'graphiql';
44

55
const App = () => (
66
<GraphiQL

examples/graphiql-webpack/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,4 @@ It appears `create-react-app` supports all the language features we require.
1111

1212
### Setup
1313

14-
1. `yarn` and `yarn build` and `yarn build-bundles` (to build css) at the root
15-
of this repository, if you have not already.
16-
1. `yarn start` from this folder to start webpack dev server
14+
1. `yarn` and `yarn start` from this folder to start webpack dev server

examples/graphiql-webpack/src/index.jsx

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
import 'regenerator-runtime/runtime.js';
2-
32
import * as React from 'react';
43
import { render } from 'react-dom';
5-
import GraphiQL from 'graphiql';
4+
import { GraphiQL } from 'graphiql';
65
import { useExplorerPlugin } from '@graphiql/plugin-explorer';
76
import { useExporterPlugin } from '@graphiql/plugin-code-exporter';
8-
97
import 'graphiql/graphiql.css';
108
import '@graphiql/plugin-explorer/dist/style.css';
119
import '@graphiql/plugin-code-exporter/dist/style.css';

examples/monaco-graphql-react-vite/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,4 @@ This workspace could be used to help us prototype components & hooks for
1010

1111
## Setup
1212

13-
First, `yarn` in the root, and then `yarn build` in the root
14-
15-
Then, in this directory, you can just run `yarn start`
13+
In this directory, you can just run `yarn` and `yarn start`

examples/monaco-graphql-react-vite/src/App.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,6 @@ export default function App() {
190190
});
191191

192192
setSchema(data.data);
193-
194-
return;
195193
})
196194
.then(() => setLoading(false));
197195
}

examples/monaco-graphql-webpack/README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,4 @@ A simple example of `monaco-graphql` using webpack 4
44

55
### Setup
66

7-
1. `yarn` and `yarn build` at the root of this repository, if you have not
8-
already.
9-
2. `yarn start` from this folder to start webpack dev server
7+
`yarn` and `yarn start` from this folder to start webpack dev server

examples/monaco-graphql-webpack/src/editors.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as monaco from 'monaco-editor';
33
// NOTE: using loader syntax because Yaml worker imports editor.worker directly and that
44
// import shouldn't go through loader syntax.
55
// @ts-ignore
6-
import GraphQLWorker from 'monaco-graphql/esm/graphql.worker';
6+
import GraphQLWorker from 'monaco-graphql/esm/graphql.worker'; // eslint-disable-line import/default
77

88
const GRAPHQL_LANGUAGE_ID = 'graphql';
99

functions/schema-demo.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/* example using https://github.com/awslabs/aws-serverless-express */
22
const express = require('express');
3+
// eslint-disable-next-line import/no-extraneous-dependencies
34
const { graphqlHTTP } = require('express-graphql');
45
const awsServerlessExpress = require('aws-serverless-express');
56
const schema = require('../packages/graphiql/test/schema');

package.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,7 @@
55
"license": "MIT",
66
"workspaces": {
77
"packages": [
8-
"packages/*",
9-
"examples/graphiql-webpack",
10-
"examples/monaco-graphql-webpack",
11-
"examples/monaco-graphql-react-vite",
12-
"examples/cm6-graphql-parcel"
8+
"packages/*"
139
]
1410
},
1511
"lint-staged": {
@@ -94,7 +90,6 @@
9490
"@babel/register": "^7.17.7",
9591
"@changesets/changelog-github": "^0.4.7",
9692
"@changesets/cli": "^2.25.2",
97-
"@cypress/webpack-preprocessor": "^5.5.0",
9893
"@manypkg/get-packages": "^1.1.3",
9994
"@strictsoftware/typedoc-plugin-monorepo": "^0.3.1",
10095
"@testing-library/jest-dom": "5.16.5",
@@ -117,14 +112,16 @@
117112
"cors": "^2.8.5",
118113
"cross-env": "^7.0.2",
119114
"cspell": "^5.15.2",
120-
"cypress": "^4.7.0",
121115
"eslint": "^8.28.0",
122116
"eslint-config-prettier": "^8.5.0",
117+
"eslint-import-resolver-typescript": "^3.5.2",
123118
"eslint-plugin-cypress": "^2.12.1",
124119
"eslint-plugin-import": "^2.26.0",
125120
"eslint-plugin-jest": "^27.1.6",
121+
"eslint-plugin-promise": "^6.1.1",
126122
"eslint-plugin-react": "^7.31.11",
127123
"eslint-plugin-react-hooks": "^4.6.0",
124+
"eslint-plugin-sonarjs": "^0.17.0",
128125
"eslint-plugin-unicorn": "^45.0.1",
129126
"execa": "^6.0.0",
130127
"express": "^4.17.3",

packages/cm6-graphql/__tests__/test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// eslint-disable-next-line import/no-unresolved
12
import { graphqlLanguage } from '../dist/index.js';
23
import { fileTests } from '@lezer/generator/dist/test';
34

0 commit comments

Comments
 (0)