-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
441 additions
and
328 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@dethdkn/eslint-config", | ||
"type": "module", | ||
"version": "1.4.10", | ||
"version": "1.5.0", | ||
"packageManager": "[email protected]", | ||
"description": "🧹 My Opinionated ESLint Config", | ||
"author": { | ||
|
@@ -43,41 +43,41 @@ | |
"@intlify/eslint-plugin-vue-i18n": "3.0.0", | ||
"@nuxt/eslint-plugin": "0.3.13", | ||
"@stylistic/eslint-plugin": "^2.3.0", | ||
"@typescript-eslint/eslint-plugin": "^7.16.1", | ||
"@typescript-eslint/parser": "^7.16.1", | ||
"@typescript-eslint/parser": "8.0.0-alpha.53", | ||
"eslint": "^9.7.0", | ||
"eslint-import-resolver-typescript": "^3.6.1", | ||
"eslint-plugin-antfu": "^2.3.4", | ||
"eslint-plugin-css": "^0.10.0", | ||
"eslint-plugin-eslint-comments": "^3.2.0", | ||
"eslint-plugin-import-x": "^3.0.1", | ||
"eslint-plugin-jsdoc": "^48.7.0", | ||
"eslint-plugin-import-x": "^3.1.0", | ||
"eslint-plugin-jsdoc": "^48.8.3", | ||
"eslint-plugin-jsonc": "^2.16.0", | ||
"eslint-plugin-n": "^17.9.0", | ||
"eslint-plugin-no-only-tests": "^3.1.0", | ||
"eslint-plugin-perfectionist": "^2.11.0", | ||
"eslint-plugin-promise": "^6.4.0", | ||
"eslint-plugin-perfectionist": "^3.0.0", | ||
"eslint-plugin-promise": "^7.0.0", | ||
"eslint-plugin-regexp": "^2.6.0", | ||
"eslint-plugin-security": "^3.0.1", | ||
"eslint-plugin-tailwindcss": "^3.17.4", | ||
"eslint-plugin-toml": "^0.11.1", | ||
"eslint-plugin-unicorn": "^54.0.0", | ||
"eslint-plugin-unused-imports": "^4.0.0", | ||
"eslint-plugin-unused-imports": "^4.0.1", | ||
"eslint-plugin-vitest": "^0.5.4", | ||
"eslint-plugin-vue": "^9.27.0", | ||
"eslint-plugin-vuejs-accessibility": "^2.4.0", | ||
"eslint-plugin-vuejs-accessibility": "^2.4.1", | ||
"eslint-plugin-yml": "^1.14.0", | ||
"jsonc-eslint-parser": "^2.4.0", | ||
"toml-eslint-parser": "^0.10.0", | ||
"typescript-eslint": "8.0.0-alpha.53", | ||
"vue-eslint-parser": "^9.4.3", | ||
"yaml-eslint-parser": "^1.2.3" | ||
}, | ||
"devDependencies": { | ||
"@eslint/config-inspector": "^0.5.2", | ||
"@types/node": "^20.14.11", | ||
"@types/node": "^20.14.12", | ||
"tailwindcss": "^3.4.6", | ||
"terser": "^5.31.3", | ||
"typescript": "^5.5.3", | ||
"typescript": "^5.5.4", | ||
"vue": "^3.4.33" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import antfu from 'eslint-plugin-antfu' | ||
|
||
export default { | ||
|
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import css from 'eslint-plugin-css' | ||
|
||
export default { | ||
|
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import * as importx from 'eslint-plugin-import-x' | ||
|
||
export default { | ||
|
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import jsdoc from 'eslint-plugin-jsdoc' | ||
|
||
export default { | ||
|
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import json from 'eslint-plugin-jsonc' | ||
|
||
export default [ | ||
|
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import node from 'eslint-plugin-n' | ||
|
||
export default { | ||
|
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import perfectionist from 'eslint-plugin-perfectionist' | ||
|
||
export default { | ||
|
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import regexp from 'eslint-plugin-regexp' | ||
|
||
export default { | ||
|
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import security from 'eslint-plugin-security' | ||
|
||
export default { | ||
|
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import tailwind from 'eslint-plugin-tailwindcss' | ||
|
||
export default { | ||
|
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import toml from 'eslint-plugin-toml' | ||
|
||
export default { | ||
|
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import unusedImports from 'eslint-plugin-unused-imports' | ||
|
||
export default { | ||
|
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,4 +1,5 @@ | ||
import type { Linter } from 'eslint' | ||
|
||
import yaml from 'eslint-plugin-yml' | ||
|
||
export default { | ||
|