Skip to content

Commit

Permalink
0.9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
yofukashino committed Feb 9, 2023
1 parent 0b9d3ef commit 1eed74d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 14 deletions.
9 changes: 2 additions & 7 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ parser: "@typescript-eslint/parser"
parserOptions:
sourceType: module
plugins:
- "@typescript-eslint"
- "react"
rules:
func-names: off
node/no-unsupported-features/es-syntax:
Expand All @@ -32,11 +32,9 @@ rules:
no-process-exit: off
no-undef: off
no-unused-vars: off
"@typescript-eslint/no-unused-vars": error

overrides:
- files: "**/*.ts"
extends: eslint-config-dmitmel/presets/typescript-addon
- files: "**/*.jsx"
rules:
node/no-missing-import: off
eqeqeq: off
Expand All @@ -45,9 +43,6 @@ overrides:
no-void: off
consistent-return: off

- files: "**/src/**/*.jsx"
extends: eslint-config-dmitmel/rules/typescript/with-type-checking

- files: "**/*.d.jsx"
rules:
no-var: off
Expand Down
Empty file added extra.ts
Empty file.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"discordID": "1025214794766221384",
"github": "Tharki-God"
},
"version": "0.9.7",
"version": "0.9.8",
"updater": {
"type": "github",
"id": "Tharki-God/PremiumScreenShare"
Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,7 @@
"prettier:check": "prettier ./src --check",
"eslint:check": "eslint ./src",
"prettier:fix": "prettier ./src --write",
"eslint:fix": "eslint ./src --fix",
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run check",
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix"
"eslint:fix": "eslint ./src --fix"
},
"keywords": [],
"author": "",
Expand Down
8 changes: 5 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

/* JavaScript Support */
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
"checkJs": false, /* Enable error reporting in type-checked JavaScript files. */
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */

/* Emit */
Expand Down Expand Up @@ -76,7 +76,7 @@
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,

/* Type Checking */
"strict": true /* Enable all strict type-checking options. */,
"strict": false /* Enable all strict type-checking options. */,
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
Expand All @@ -98,6 +98,8 @@

/* Completeness */
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */
"skipLibCheck": true /* Skip type checking all .d.ts files. */,


}
}

0 comments on commit 1eed74d

Please sign in to comment.