File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -213,7 +213,6 @@ describe("local", () => {
213213 "lint checkdoc" ,
214214 "lint declare" ,
215215 "lint elint" ,
216- "lint elisp-lint" ,
217216 "lint indent" ,
218217 "lint keywords" ,
219218 "lint license" ,
@@ -222,17 +221,21 @@ describe("local", () => {
222221 await ctx . runEask ( cmd ) ;
223222 } ) ;
224223
224+ // XXX: Elsa is not stable, ignore it for now
225+ test . skip ( "lint elsa" , async ( ) => {
226+ await ctx . runEask ( "lint elsa" ) ;
227+ } ) ;
228+
229+ it ( "lint elint" , async ( ) => {
230+ await ctx . runEask ( "lint elisp-lint" , avoid11 ) ;
231+ } ) ;
232+
225233 it ( "lint regexps" , async ( ) => {
226234 if ( ( await emacsVersion ( ) ) >= "27.1" ) {
227235 await ctx . runEask ( "lint regexps" ) ;
228236 }
229237 } ) ;
230238
231- // XXX: Elsa is not stable, ignore it for now
232- test . skip ( "lint elsa" , async ( ) => {
233- await ctx . runEask ( "lint elsa" ) ;
234- } ) ;
235-
236239 it ( "lint org *.org" , async ( ) => {
237240 await ctx . runEask ( "lint org *.org" ) ;
238241 } ) ;
You can’t perform that action at this time.
0 commit comments