mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 11:17:53 +01:00
13 lines
411 B
JavaScript
13 lines
411 B
JavaScript
export function gitignoreDefinition() {
|
|
return {
|
|
defaultToken: 'invalid',
|
|
|
|
tokenizer: {
|
|
root: [
|
|
[/^#.*$/, 'comment'],
|
|
[/.*((?<!(^|\/))\*\*.*|\*\*(?!(\/|$))).*/, 'invalid'],
|
|
[/((?:^!\s*(?:\\\s|\S)+)?)((?:^\s*(?:\\\s|\S)+)?)((?:\s+(?:\\\s|\S)+)*)/, ['custom-gitignore.negation', 'tag', 'invalid']]
|
|
]
|
|
}
|
|
};
|
|
} |