Skip to content

feat!: Support coc.nvim latest(0.0.82) and drop prior versions #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Oct 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
.vscode/
.idea/
node_modules/
out/
coverage/
7 changes: 5 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
const configureBase = require('@luma-dev/eslint-config-base/configure');

const config = { __dirname };
const config = {
__dirname,
unresolvable: ['coc.nvim'],
};

/** @type {import('eslint').Linter.Config} */
module.exports = {
extends: ['@luma-dev/base', '@luma-dev/jest'],
extends: ['@luma-dev/base'],
overrides: [...configureBase(config)],
};
15 changes: 9 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
${{ runner.os }}-
- uses: pnpm/action-setup@v2
with:
version: 6
version: 7
run_install: |
- recursive: true
args: [--frozen-lockfile, --prefer-offline]
Expand All @@ -40,7 +40,9 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14]
node-version:
- 14
- 16
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand All @@ -55,15 +57,17 @@ jobs:
${{ runner.os }}-
- uses: pnpm/action-setup@v2
with:
version: 6
version: 7
run_install: |
- recursive: true
args: [--frozen-lockfile, --prefer-offline]
- run: pnpm run ts-node-run -- ./scripts/md-to-package-json.ts --exit-code
- run: pnpm run lint
- run: pnpm test:tsc
- run: pnpm run check
- run: pnpm run coverage
- uses: codecov/codecov-action@v1
with:
files: ./coverage/lcov.info
- run: pnpm run build
release:
needs: test
Expand All @@ -83,13 +87,12 @@ jobs:
${{ runner.os }}-
- uses: pnpm/action-setup@v2
with:
version: 6
version: 7
run_install: |
- recursive: true
args: [--frozen-lockfile, --prefer-offline]
- run: pnpm run build
- run: npx semantic-release
env:
HUSKY: 0
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
node_modules/
.pnpm-debug.log*
/out/
coverage/
4 changes: 0 additions & 4 deletions .husky/commit-msg

This file was deleted.

4 changes: 0 additions & 4 deletions .husky/pre-push

This file was deleted.

2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
engine-strict=false
strict-peer-dependencies=true
public-hoist-pattern[]=*types*
public-hoist-pattern[]=*eslint*
public-hoist-pattern[]=*prettier*
shamefully-hoist=false
save-prefix=^
8 changes: 6 additions & 2 deletions codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ coverage:
precision: 2
round: down
status:
default:
target: 0%
project:
default:
target: 0%
patch:
default:
target: 0%

comment:
layout: "reach,diff,flags,files,footer"
Expand Down
1 change: 0 additions & 1 deletion commitlint.config.cjs

This file was deleted.

4 changes: 0 additions & 4 deletions jest.config.js

This file was deleted.

Loading