Compare commits

..

5 commits

Author SHA1 Message Date
4a77b2d7a0 Remove unnecessary conflicts
All checks were successful
ci/woodpecker/push/check Pipeline was successful
Not sure *why* I ended up with unnecessary conflicts, let's remove them
now.
2025-03-13 19:58:23 +00:00
d094c6291d Capitalize language name 2024-12-23 12:06:46 -05:00
708c4d69d2 Fix address of repository 2024-12-23 12:05:10 -05:00
5f5ee66aad Add explicit 'pre-commit' CI step 2024-12-23 12:04:25 -05:00
e744ebffb4 Fix deprecated CI config 2024-12-23 12:04:02 -05:00
5 changed files with 17 additions and 22 deletions

View file

@ -1,7 +1,12 @@
labels:
backend: local
pipeline:
steps:
- name: pre-commit check
image: bash
commands:
- nix develop --command pre-commit run --all
- name: flake check
image: bash
commands:
@ -14,15 +19,15 @@ pipeline:
- name: notify
image: bash
secrets:
- source: matrix_roomid
target: room
- source: matrix_username
target: user
- source: matrix_password
target: pass
- source: matrix_homeserver
target: address
environment:
ADDRESS:
from_secret: matrix_homeserver
ROOM:
from_secret: matrix_roomid
USER:
from_secret: matrix_username
PASS:
from_secret: matrix_password
commands:
- nix run github:ambroisie/matrix-notifier
when:

View file

@ -4,7 +4,7 @@ description = "Tiger grammar for the tree-sitter parsing library"
version = "0.3.0"
keywords = ["incremental", "parsing", "tiger"]
categories = ["parsing", "text-editors"]
repository = "https://gitea.belanyi.fr/ambroisie/tree-sitter-tiger"
repository = "https://git.belanyi.fr/ambroisie/tree-sitter-tiger"
edition = "2018"
license = "MIT"

View file

@ -31,8 +31,6 @@ module.exports = grammar({
conflicts: ($) => [
[$._lvalue, $.array_expression],
[$._lvalue, $.record_expression],
[$._lvalue, $._type_identifier],
],
externals: ($) => [

View file

@ -1,7 +1,7 @@
{
"name": "tree-sitter-tiger",
"version": "0.3.0",
"description": "tiger grammar for tree-sitter",
"description": "Tiger grammar for tree-sitter",
"main": "bindings/node",
"keywords": [
"parsing",

8
src/grammar.json generated
View file

@ -1932,14 +1932,6 @@
[
"_lvalue",
"array_expression"
],
[
"_lvalue",
"record_expression"
],
[
"_lvalue",
"_type_identifier"
]
],
"precedences": [],