File tree Expand file tree Collapse file tree 3 files changed +50
-1
lines changed Expand file tree Collapse file tree 3 files changed +50
-1
lines changed Original file line number Diff line number Diff line change 18
18
" @graphql-eslint_eslint-plugin-1792-dependencies" ,
19
19
" @graphql-eslint_eslint-plugin-1813-dependencies" ,
20
20
" breezy-seals-sparkle" ,
21
+ " chilled-rivers-prove" ,
21
22
" chilly-ants-exist" ,
22
23
" curly-socks-boil" ,
23
24
" dull-scissors-destroy" ,
27
28
" heavy-onions-fry" ,
28
29
" itchy-ads-compete" ,
29
30
" lovely-laws-hide" ,
31
+ " metal-wasps-type" ,
30
32
" rare-planes-love" ,
31
33
" real-coins-share" ,
32
34
" strong-needles-compare"
Original file line number Diff line number Diff line change 1
1
# @graphql-eslint/eslint-plugin
2
2
3
+ ## 4.0.0-alpha.7
4
+
5
+ ### Major Changes
6
+
7
+ - [ #2598 ] ( https://github.com/dimaMachina/graphql-eslint/pull/2598 )
8
+ [ ` e771499 ` ] ( https://github.com/dimaMachina/graphql-eslint/commit/e771499db22ed6aa358af090b535f6206e191ebb )
9
+ Thanks [ @bmulholland ] ( https://github.com/bmulholland ) ! - 1. graphql plugin can now we be specified
10
+ as
11
+
12
+ ``` diff
13
+ plugins: {
14
+ - '@graphql-eslint': {
15
+ - graphqlPlugin.rules
16
+ - }
17
+ + '@graphql-eslint': graphqlPlugin
18
+ }
19
+ ```
20
+
21
+ 1 . Config rules should now be accessed through the ` rules ` property
22
+
23
+ ``` diff
24
+ rules: {
25
+ - ...graphqlESLint.configs['flat/operations-recommended']
26
+ + ...graphqlESLint.configs['flat/operations-recommended'].rules
27
+ ```
28
+
29
+ 1. processor can now be specified with accessing `processor` property
30
+
31
+ ```diff
32
+ - processor: graphql.processors.graphql
33
+ + processor: graphqlPlugin.processor
34
+ ```
35
+
36
+ 1. The plugin can now be imported using a default import
37
+
38
+ ```diff
39
+ - import * as graphql from '@graphql-eslint/eslint-plugin'
40
+ + import graphqlPlugin from '@graphql-eslint/eslint-plugin'
41
+ ```
42
+
43
+ # ## Patch Changes
44
+
45
+ - [#2692](https://github.com/dimaMachina/graphql-eslint/pull/2692)
46
+ [`dcf4e35`](https://github.com/dimaMachina/graphql-eslint/commit/dcf4e3558e13f4350e4e0960d8e9603667cda0b2)
47
+ Thanks [@dimaMachina](https://github.com/dimaMachina)! - fix some issues on Windows by running
48
+ tests with matrix on github CI
49
+
3
50
# # 4.0.0-alpha.6
4
51
5
52
# ## Patch Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @graphql-eslint/eslint-plugin" ,
3
- "version" : " 4.0.0-alpha.6 " ,
3
+ "version" : " 4.0.0-alpha.7 " ,
4
4
"type" : " module" ,
5
5
"description" : " GraphQL plugin for ESLint" ,
6
6
"repository" : " https://github.com/B2o5T/graphql-eslint" ,
You can’t perform that action at this time.
0 commit comments