linted 13.0.11 → 13.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # [linted](https://npmjs.com/package/linted) v13
1
+ # [`linted`](https://npmjs.com/package/linted) v13
2
2
 
3
3
  Zero-config [**ESLint**](https://eslint.org/) flat config factory for (strict, agglutinative) entire-stack formatting and linting: TypeScript, JavaScript, Svelte, HTML, (Tailwind) CSS, Jest, JSON(C), and sadly YAML.
4
4
 
@@ -9,7 +9,7 @@ Zero-config [**ESLint**](https://eslint.org/) flat config factory for (strict, a
9
9
  - **[JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript):** [`eslint`](https://eslint.org) + [`@stylistic`](https://eslint.style)
10
10
  - **[TypeScript](https://typescriptlang.org):** + [`@typescript-eslint`](https://typescript-eslint.io/)
11
11
  - **[Svelte](https://svelte.dev):** + [`eslint-plugin-svelte`](https://sveltejs.github.io/eslint-plugin-svelte/)
12
- - **[HTML](https://developer.mozilla.org/en-US/docs/Web/HTML):** + [`@html-eslint`](https://html-eslint.org/)
12
+ - **[HTML](https://developer.mozilla.org/en-US/docs/Web/HTML):** [`@html-eslint`](https://html-eslint.org/)
13
13
 
14
14
  ### Data
15
15
 
@@ -36,7 +36,7 @@ Zero-config [**ESLint**](https://eslint.org/) flat config factory for (strict, a
36
36
  ```javascript
37
37
  import linted from "linted";
38
38
 
39
- export default new linted(
39
+ export default linted(
40
40
  { // Scope (i.e. files to lint)
41
41
  js: [
42
42
  "eslint.config.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "linted",
3
- "version": "13.0.11",
3
+ "version": "13.0.13",
4
4
  "description": "Zero-config ESLint flat config factory for (strict, agglutinative) entire-stack formatting and linting: TypeScript, JavaScript, Svelte, HTML, (Tailwind) CSS, Jest, JSON(C), and sadly YAML.",
5
5
  "keywords": [
6
6
  "eslint",
@@ -78,7 +78,7 @@
78
78
  },
79
79
  "devDependencies": {
80
80
  "eslint": "~8.57.0",
81
- "linted": "~13.0.10",
81
+ "linted": "~13.0.11",
82
82
  "typescript": "^5.5.2"
83
83
  },
84
84
  "jest": {