-
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore]: port to official
@iobroker/eslint-config
config (#2898)
* port to official eslint config * cleanup * move jszip in correct package * try to fix build * pack lock update * update tsd * move tsd to global pack as dev dep * fix tsd and ignore build for eslint * fix build * fix type tests * upgrade to 0.1.4 * update to 0.1.5 * fix rest of lint errors * fix install without override
- Loading branch information
1 parent
10b9973
commit 4e8189a
Showing
132 changed files
with
23,708 additions
and
22,273 deletions.
There are no files selected for viewing
This file was deleted.
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
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import config, { esmConfig } from '@iobroker/eslint-config'; | ||
|
||
export default [ | ||
{ | ||
ignores: ['**/build/*'], | ||
}, | ||
...config, | ||
...esmConfig, | ||
{ | ||
files: ['**/*.test-d.ts'], | ||
rules: { | ||
'@typescript-eslint/no-unused-vars': 'off', | ||
'@typescript-eslint/no-base-to-string': 'off', | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.