Skip to content

Commit

Permalink
Clarify docs for additionalRules.languageModel
Browse files Browse the repository at this point in the history
  • Loading branch information
valentjn committed Oct 25, 2021
1 parent c408bcc commit 7e04d87
Show file tree
Hide file tree
Showing 7 changed files with 6,549 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
node-version: "16.11.0"

- name: "Install Node.js Dependencies"
run: "npm install && npm install -g vsce@1.100.1"
run: "npm ci && npm install -g vsce@1.100.1"

- name: "Set up Python"
uses: "actions/setup-python@v2"
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
run: "python -u tools/patchForTarget.py --target coc.nvim"

- name: "Install Node.js Dependencies"
run: "npm install"
run: "npm ci"

- name: "Compile and Package"
run: "npm run coc.nvim:prepublish"
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
node-version: "16.11.0"

- name: "Install Node.js Dependencies"
run: "npm install && npm install -g vsce@1.100.1 ovsx@0.2.1"
run: "npm ci && npm install -g vsce@1.100.1 ovsx@0.2.1"

- name: "Set up Python"
uses: "actions/setup-python@v2"
Expand Down Expand Up @@ -257,7 +257,7 @@ jobs:
run: "python -u tools/patchForTarget.py --target coc.nvim"

- name: "Install Node.js Dependencies"
run: "npm install"
run: "npm ci"

- name: "Set VSCODE_LTEX_VERSION"
run: "echo \"VSCODE_LTEX_VERSION=$(python -u -c \"import json; print(json.load(open('package.json', 'r'))['version'], end='')\")\" >> $GITHUB_ENV"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
node-version: "16.11.0"

- name: "Install Node.js Dependencies"
run: "npm install && npm install -g vsce@1 ovsx@0.2.1"
run: "npm ci && npm install -g vsce@1 ovsx@0.2.1"

- name: "Set up Python"
uses: "actions/setup-python@v2"
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
*.pyc

/CHANGELOG.md
/package-lock.json
/*.vsix

/.vscode-test/
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ If you like LT<sub>E</sub>X, but are not able to contribute in any of these ways
2. Fork vscode-ltex on GitHub.
3. Clone the fork: `git clone https://github.com/<YOUR_USERNAME>/vscode-ltex.git`
4. Open the cloned folder in VS Code.
5. Install the npm dependencies: `cd vscode-ltex && npm install`
5. Install the npm dependencies: `cd vscode-ltex && npm ci`
6. Run the `Launch extension` task to launch and debug the extension.

## How to Contribute Code
Expand Down
Loading

0 comments on commit 7e04d87

Please sign in to comment.