@@ -25,7 +25,7 @@ npm i --save-dev eslint @typescript-eslint/parser @typescript-eslint/eslint-plug
2525 "project" : " ./tsconfig.json"
2626 },
2727 "extends" : [
28- " plugin:@stencil/recommended"
28+ " plugin:@stencil-community /recommended"
2929 ]
3030}
3131```
@@ -55,94 +55,94 @@ npm run lint
5555
5656## Supported Rules
5757
58- - [ ` @stencil/async-methods ` ] ( ./docs/async-methods.md )
58+ - [ ` @stencil-community /async-methods ` ] ( ./docs/async-methods.md )
5959
6060This rule catches Stencil public methods that are not async.
6161
62- - [ ` @stencil/ban-prefix ` ] ( ./docs/ban-prefix.md )
62+ - [ ` @stencil-community /ban-prefix ` ] ( ./docs/ban-prefix.md )
6363
6464This rule catches Stencil Component banned tag name prefix.
6565
66- - [ ` @stencil/class-pattern ` ] ( ./docs/class-pattern.md )
66+ - [ ` @stencil-community /class-pattern ` ] ( ./docs/class-pattern.md )
6767
6868This rule catches Stencil Component class name not matching configurable pattern.
6969
70- - [ ` @stencil/decorators-context ` ] ( ./docs/decorators-context.md )
70+ - [ ` @stencil-community /decorators-context ` ] ( ./docs/decorators-context.md )
7171
7272This rule catches Stencil decorators in bad locations.
7373
74- - [ ` @stencil/decorators-style ` ] ( ./docs/decorators-style.md )
74+ - [ ` @stencil-community /decorators-style ` ] ( ./docs/decorators-style.md )
7575
7676This rule catches Stencil decorators style usage.
7777
78- - [ ` @stencil/element-type ` ] ( ./docs/element-type.md )
78+ - [ ` @stencil-community /element-type ` ] ( ./docs/element-type.md )
7979
8080This rule catches Stencil Element decorator have the correct type.
8181
82- - [ ` @stencil/host-data-deprecated ` ] ( ./docs/host-data-deprecated.md )
82+ - [ ` @stencil-community /host-data-deprecated ` ] ( ./docs/host-data-deprecated.md )
8383
8484This rule catches Stencil method hostData.
8585
86- - [ ` @stencil/methods-must-be-public ` ] ( ./docs/methods-must-be-public.md )
86+ - [ ` @stencil-community /methods-must-be-public ` ] ( ./docs/methods-must-be-public.md )
8787
8888This rule catches Stencil Methods marked as private or protected.
8989
90- - [ ` @stencil/no-unused-watch ` ] ( ./docs/no-unused-watch.md )
90+ - [ ` @stencil-community /no-unused-watch ` ] ( ./docs/no-unused-watch.md )
9191
9292This rule catches Stencil Watchs with non existing Props or States.
9393
94- - [ ` @stencil/own-methods-must-be-private ` ] ( ./docs/own-methods-must-be-private.md )
94+ - [ ` @stencil-community /own-methods-must-be-private ` ] ( ./docs/own-methods-must-be-private.md )
9595
9696This rule catches own class methods marked as public.
9797
98- - [ ` @stencil/own-props-must-be-private ` ] ( ./docs/own-props-must-be-private.md )
98+ - [ ` @stencil-community /own-props-must-be-private ` ] ( ./docs/own-props-must-be-private.md )
9999
100100This rule catches own class properties marked as public.
101101
102- - [ ` @stencil/prefer-vdom-listener ` ] ( ./docs/prefer-vdom-listener.md )
102+ - [ ` @stencil-community /prefer-vdom-listener ` ] ( ./docs/prefer-vdom-listener.md )
103103
104104This rule catches Stencil Listen with vdom events.
105105
106- - [ ` @stencil/props-must-be-public ` ] ( ./docs/props-must-be-public.md )
106+ - [ ` @stencil-community /props-must-be-public ` ] ( ./docs/props-must-be-public.md )
107107
108108This rule catches Stencil Props marked as private or protected.
109109
110- - [ ` @stencil/props-must-be-readonly ` ] ( ./docs/props-must-be-readonly.md )
110+ - [ ` @stencil-community /props-must-be-readonly ` ] ( ./docs/props-must-be-readonly.md )
111111
112112This rule catches Stencil Props marked as non readonly, excluding mutable ones.
113113
114- - [ ` @stencil/render-returns-host ` ] ( ./docs/render-returns-host.md )
114+ - [ ` @stencil-community /render-returns-host ` ] ( ./docs/render-returns-host.md )
115115
116116This rule catches Stencil Render returning array instead of Host tag.
117117
118- - [ ` @stencil/required-jsdoc ` ] ( ./docs/required-jsdoc.md )
118+ - [ ` @stencil-community /required-jsdoc ` ] ( ./docs/required-jsdoc.md )
119119
120120This rule catches Stencil Props, Methods and Events to define jsdoc.
121121
122- - [ ` @stencil/required-prefix ` ] ( ./docs/required-prefix.md )
122+ - [ ` @stencil-community /required-prefix ` ] ( ./docs/required-prefix.md )
123123
124124This rule catches Stencil Component required tag name prefix.
125125
126- - [ ` @stencil/reserved-member-names ` ] ( ./docs/reserved-member-names.md )
126+ - [ ` @stencil-community /reserved-member-names ` ] ( ./docs/reserved-member-names.md )
127127
128128This rule catches Stencil Prop names that share names of Global HTML Attributes.
129129
130- - [ ` @stencil/single-export ` ] ( ./docs/single-export.md )
130+ - [ ` @stencil-community /single-export ` ] ( ./docs/single-export.md )
131131
132132This rule catches modules that expose more than just the Stencil Component itself.
133133
134- - [ ` @stencil/strict-mutable ` ] ( ./docs/strict-mutable.md )
134+ - [ ` @stencil-community /strict-mutable ` ] ( ./docs/strict-mutable.md )
135135
136136This rule catches Stencil Prop marked as mutable but not changing value in code.
137137
138138## Recommended rules
139139
140140``` json
141141{
142- "@stencil/async-methods" : " error" ,
143- "@stencil/ban-prefix" : [" error" , [" stencil" , " stnl" , " st" ]],
144- "@stencil/decorators-context" : " error" ,
145- "@stencil/decorators-style" : [
142+ "@stencil-community /async-methods" : " error" ,
143+ "@stencil-community /ban-prefix" : [" error" , [" stencil" , " stnl" , " st" ]],
144+ "@stencil-community /decorators-context" : " error" ,
145+ "@stencil-community /decorators-style" : [
146146 " error" , {
147147 "prop" : " inline" ,
148148 "state" : " inline" ,
@@ -152,20 +152,20 @@ This rule catches Stencil Prop marked as mutable but not changing value in code.
152152 "watch" : " multiline" ,
153153 "listen" : " multiline"
154154 }],
155- "@stencil/element-type" : " error" ,
156- "@stencil/host-data-deprecated" : " error" ,
157- "@stencil/methods-must-be-public" : " error" ,
158- "@stencil/no-unused-watch" : " error" ,
159- "@stencil/own-methods-must-be-private" : " error" ,
160- "@stencil/own-props-must-be-private" : " error" ,
161- "@stencil/prefer-vdom-listener" : " error" ,
162- "@stencil/props-must-be-public" : " error" ,
163- "@stencil/props-must-be-readonly" : " error" ,
164- "@stencil/render-returns-host" : " error" ,
165- "@stencil/required-jsdoc" : " error" ,
166- "@stencil/reserved-member-names" : " error" ,
167- "@stencil/single-export" : " error" ,
168- "@stencil/strict-mutable" : " error"
155+ "@stencil-community /element-type" : " error" ,
156+ "@stencil-community /host-data-deprecated" : " error" ,
157+ "@stencil-community /methods-must-be-public" : " error" ,
158+ "@stencil-community /no-unused-watch" : " error" ,
159+ "@stencil-community /own-methods-must-be-private" : " error" ,
160+ "@stencil-community /own-props-must-be-private" : " error" ,
161+ "@stencil-community /prefer-vdom-listener" : " error" ,
162+ "@stencil-community /props-must-be-public" : " error" ,
163+ "@stencil-community /props-must-be-readonly" : " error" ,
164+ "@stencil-community /render-returns-host" : " error" ,
165+ "@stencil-community /required-jsdoc" : " error" ,
166+ "@stencil-community /reserved-member-names" : " error" ,
167+ "@stencil-community /single-export" : " error" ,
168+ "@stencil-community /strict-mutable" : " error"
169169}
170170```
171171
0 commit comments