Skip to content
This repository was archived by the owner on Mar 7, 2025. It is now read-only.

Commit e844cc1

Browse files
author
Christopher Quadflieg
committed
chore: fix some lint warnings
1 parent 8469109 commit e844cc1

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

.eslintrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ module.exports = defineConfig({
102102
'loc',
103103
'multiline',
104104
'nashorn',
105+
'nocheck',
105106
'phantomjs',
106107
'pragma',
107108
'prototypejs',

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"importscripts",
1313
"linebreak",
1414
"nashorn",
15+
"nocheck",
1516
"prototypejs",
1617
"qunit",
1718
"readonly",

src/env.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ export interface Environments extends Partial<Record<string, boolean>> {
6868
* QUnit global variables.
6969
*/
7070
qunit?: boolean;
71+
// eslint-disable-next-line jsdoc/match-description
7172
/**
7273
* jQuery global variables.
7374
*/

src/rules/eslint/semi.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ export type SemiAlwaysOptions = ['always'?, SemiAlwaysConfig?];
1919
* Never Config.
2020
*/
2121
export interface SemiNeverConfig {
22+
// eslint-disable-next-line jsdoc/match-description
2223
/**
2324
* - `'any'` - Ignores semicolons (or lacking semicolon) at the end of statements if the next line starts with `[`, `(`, `/`, `+`, or `-`.
2425
* - `'always'` - Requires semicolons at the end of statements if the next line starts with `[`, `(`, `/`, `+`, or `-`.

0 commit comments

Comments
 (0)