Files
directus/app/src/utils/hljs-graphql.ts
rijkvanzanten 801e868554 Fix remaining eslint errors
h/t @paescuj
2021-04-29 15:55:12 -04:00

46 lines
859 B
TypeScript

import { HASH_COMMENT_MODE, NUMBER_MODE, QUOTE_STRING_MODE } from 'highlight.js';
export default (): LanguageDetail & ModeDetails => ({
aliases: ['gql'],
keywords: {
keyword:
'query mutation subscription|10 type input schema directive interface union scalar fragment|10 enum on ...',
literal: 'true false null',
},
contains: [
HASH_COMMENT_MODE,
QUOTE_STRING_MODE,
NUMBER_MODE,
{
className: 'type',
begin: '[^\\w][A-Z][a-z]',
end: '\\W',
excludeEnd: !0,
},
{
className: 'literal',
begin: '[^\\w][A-Z][A-Z]',
end: '\\W',
excludeEnd: !0,
},
{
className: 'variable',
begin: '\\$',
end: '\\W',
excludeEnd: !0,
},
{
className: 'keyword',
begin: '[.]{2}',
end: '\\.',
},
{
className: 'meta',
begin: '@',
end: '\\W',
excludeEnd: !0,
},
],
illegal: /([;<']|BEGIN)/,
});