Skip to content

Commit

Permalink
Update lint dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rajsite committed Nov 7, 2024
1 parent d949a55 commit 9c43f4c
Show file tree
Hide file tree
Showing 8 changed files with 1,604 additions and 1,164 deletions.
3 changes: 2 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"configurability",
"roadmap",
"pluggable",
"plotly"
"plotly",
"jsli"
]
}
3 changes: 2 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ module.exports = {
'prefer-destructuring': 'off',
'prefer-template': 'off',
'valid-typeof': 'off',
'no-lonely-if': 'off'
'no-lonely-if': 'off',
'require-await': 'off'
},
overrides: [{
files: ['.eslintrc.js'],
Expand Down
21 changes: 0 additions & 21 deletions .github/ISSUE_TEMPLATE/issue_template.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '22'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
- name: Lint markdown
Expand Down
1 change: 1 addition & 0 deletions .linkcheck.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"timeout": "5m",
"ignorePatterns": [
]
}
2 changes: 1 addition & 1 deletion RichText/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ It seems like there are two major models for the edit time representation for ri

Unfortunately, the `contenteditable` feature does not make it easy to plugin a sophisticated editing experience and has been plagued with cross-browser consistency issues. Modern rich text editors generally avoid using the `contenteditable` feature directly to represent the value of the rich text content and instead keep a separate representation of the value in JavaScript memory.

### Persistance representation
### Persistence representation

The save format for the output of the JavaScript library. The value that may be sent to a server, etc.

Expand Down
2,717 changes: 1,587 additions & 1,130 deletions package-lock.json

Large diffs are not rendered by default.

19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
"private": true,
"description": "A collection of experiments for WebVIs 🧪.",
"scripts": {
"link": "glob-exec --foreach \"{./*.md,./.github/*.md,./.github/**/*.md}\" -- \"npm run markdown-link-check -- -c .linkcheck.json {{file}}\"",
"markdown-link-check": "markdown-link-check",
"link": "glob-exec --foreach \"{./*.md,./.github/*.md,./.github/**/*.md}\" -- \"npm run markdown-link-check -- --verbose -c .linkcheck.json {{file}}\"",
"lint": "npm run lint:markdown && npm run lint:js && npm run lint:spelling",
"lint:markdown": "markdownlint {./*.md,./.github/*.md,./.github/**/*.md}",
"lint": "eslint .",
"spelling": "cspell \"./*.md\" \"./.github/**/*.md\" \"./*/*.md\"",
"test": "npm run lint && npm run lint:markdown && npm run spelling && npm run link"
"lint:js": "eslint .",
"lint:spelling": "cspell --verbose --exclude \"**/node_modules/**\" \"**/*.md\"",
"test": "npm run lint && npm run link",
"markdown-link-check": "markdown-link-check"
},
"repository": {
"type": "git",
Expand All @@ -22,10 +23,10 @@
},
"homepage": "https://github.com/rajsite/webvi-experiments#readme",
"dependencies": {
"@ni/eslint-config-javascript": "^4.2.1",
"cspell": "^8.3.2",
"@ni/eslint-config-javascript": "^4.3.0",
"cspell": "^8.15.2",
"glob-exec": "^0.1.1",
"markdown-link-check": "^3.11.2",
"markdownlint-cli": "^0.39.0"
"markdown-link-check": "3.12.2",
"markdownlint-cli": "^0.42.0"
}
}

0 comments on commit 9c43f4c

Please sign in to comment.