mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-01 23:41:04 -05:00
c0d6a9c5f0
GitOrigin-RevId: 91ba72285b0f01c3c00fdb1a64c30e9ff67f72f5
9 lines
538 B
TypeScript
9 lines
538 B
TypeScript
import { NodeProp } from '@lezer/common'
|
|
|
|
/**
|
|
* A node prop that contains an array, each item of which is an array of parent node types that's
|
|
* passed to [matchContext](https://lezer.codemirror.net/docs/ref/#common.SyntaxNodeRef.matchContext)
|
|
* to test whether the node matches the given context. If so, the text in the node is excluded from spell checking.
|
|
* An empty string is treated as a wildcard, so `[['']]` indicates that the node type should always be excluded.
|
|
*/
|
|
export const noSpellCheckProp = new NodeProp<string[][]>()
|