-
Notifications
You must be signed in to change notification settings - Fork 778
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for Split pretokenizer w/
behavior=removed
& `invert=fa…
…lse`
- Loading branch information
Showing
76 changed files
with
31,003 additions
and
30,798 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Prettier Check | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
format: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [22] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'npm' | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: format:check | ||
run: npm run format:check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,7 @@ examples | |
scripts | ||
types | ||
*.md | ||
# Ignore python related files | ||
.venv | ||
# Mac files | ||
.DS_STORE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
// Only include files in the src directory | ||
"include": ["src/**/*"], | ||
"compilerOptions": { | ||
// Tells the compiler to check JS files | ||
"checkJs": true, | ||
"target": "esnext", | ||
"module": "nodenext", | ||
"moduleResolution": "nodenext" | ||
}, | ||
"typeAcquisition": { | ||
"include": ["jest"] | ||
} | ||
// Only include files in the src directory | ||
"include": ["src/**/*"], | ||
"compilerOptions": { | ||
// Tells the compiler to check JS files | ||
"checkJs": true, | ||
"target": "esnext", | ||
"module": "nodenext", | ||
"moduleResolution": "nodenext" | ||
}, | ||
"typeAcquisition": { | ||
"include": ["jest"] | ||
} | ||
} |
Oops, something went wrong.