Skip to content

Commit

Permalink
Update yarn packages
Browse files Browse the repository at this point in the history
  • Loading branch information
JamyGolden committed Aug 25, 2024
1 parent f753be7 commit db27606
Show file tree
Hide file tree
Showing 4 changed files with 268 additions and 335 deletions.
30 changes: 0 additions & 30 deletions .eslintrc.json

This file was deleted.

32 changes: 32 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import typescriptEslint from "@typescript-eslint/eslint-plugin";
import tseslint from "typescript-eslint";
import tsParser from "@typescript-eslint/parser";

export default tseslint.config({
languageOptions: {
parser: tsParser,
ecmaVersion: 6,
sourceType: "module",
},
plugins: {
"@typescript-eslint": typescriptEslint
},
rules: {
"@typescript-eslint/naming-convention": [
"warn",
{
selector: "import",
format: ["camelCase", "PascalCase"]
}
],
curly: "warn",
eqeqeq: "warn",
"no-throw-literal": "warn",
semi: "off"
},
ignores: [
"out",
"dist",
"**/*.d.ts"
]
})
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "base16-tinted-themes",
"displayName": "Tinted VSCode",
"description": "Choose from over 250 Tinted Themes",
"version": "0.10.0",
"version": "0.11.0",
"repository": "https://github.com/tinted-theming/tinted-vscode",
"publisher": "TintedTheming",
"icon": "assets/tinted-theming-logo.png",
Expand All @@ -29,12 +29,12 @@
"update:packagejson:version": "node ./scripts/minorVersionBump.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"jsonc-parser": "^3.2.0",
"rimraf": "^5.0.5",
"typescript": "^5.3.3"
"@typescript-eslint/eslint-plugin": "^8.2.0",
"eslint": "^9.9.1",
"jsonc-parser": "^3.3.1",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"contributes": {
"themes": [
Expand Down
Loading

0 comments on commit db27606

Please sign in to comment.