@@ -192,20 +192,20 @@ type ParserOptions = {
192192} ;
193193
194194type ESLintRcConfig = {
195- env : Record < string , boolean > ;
195+ env : Record < string , boolean > ;
196196 extends : string | string [ ] ;
197- // globals: Record<string, GlobalConf>;
198- ignorePatterns : string | string [ ] ;
199- noInlineConfig : boolean ;
200- // overrides: OverrideConfigData[];
201- parser : string | null ;
202- parserOptions ?: ParserOptions ;
203- plugins : string [ ] ;
204- processor : string ;
205- reportUnusedDisableDirectives : boolean | undefined ;
206- root : boolean ;
207- rules : Record < string , RuleConf > ;
208- settings : object ;
197+ // globals: Record<string, GlobalConf>;
198+ ignorePatterns : string | string [ ] ;
199+ noInlineConfig : boolean ;
200+ // overrides: OverrideConfigData[];
201+ parser : string | null ;
202+ parserOptions ?: ParserOptions ;
203+ plugins : string [ ] ;
204+ processor : string ;
205+ reportUnusedDisableDirectives : boolean | undefined ;
206+ root : boolean ;
207+ rules : Record < string , RuleConf > ;
208+ settings : object ;
209209} ;
210210type ESLintConfig = ESLintRcConfig ;
211211
@@ -789,7 +789,8 @@ export namespace ESLint {
789789 [ 'jsonc' , 'jsonc' ] ,
790790 [ 'mdx' , 'mdx' ] ,
791791 [ 'vue' , 'vue' ] ,
792- [ 'markdown' , 'markdown' ]
792+ [ 'markdown' , 'markdown' ] ,
793+ [ 'css' , 'css' ]
793794 ] ) ;
794795
795796 const defaultLanguageIds : Set < string > = new Set ( [
0 commit comments