-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added
no-duplicate-imports
rule (#19)
* Added `no-duplicate-imports` rule * Update eslint.config.mjs * Update eslint.config.mjs Co-authored-by: Max Hauser <moritz.heusinger@gmail.com> --------- Co-authored-by: Max Hauser <moritz.heusinger@gmail.com>
- Loading branch information
1 parent
072bd72
commit df07e1b
Showing
3 changed files
with
44 additions
and
40 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
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,42 +1,42 @@ | ||
{ | ||
"name": "@iobroker/eslint-config", | ||
"version": "0.1.7", | ||
"description": "Eslint config of ioBroker", | ||
"homepage": "https://github.com/ioBroker/ioBroker.eslint-config", | ||
"main": "eslint.config.mjs", | ||
"author": { | ||
"name": "foxriver76", | ||
"url": "www.moritz-heusinger.de", | ||
"email": "info@moritz-heusinger.de" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"files": [ | ||
"eslint.config.mjs", | ||
"prettier.config.mjs", | ||
"README.md" | ||
], | ||
"peerDependencies": { | ||
"@eslint/eslintrc": "^3.1.0", | ||
"@eslint/js": "^9.10.0", | ||
"@typescript-eslint/eslint-plugin": "^8.4.0", | ||
"@typescript-eslint/parser": "^8.4.0", | ||
"eslint": ">=9.10.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-jsdoc": "^50.2.2", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"eslint-plugin-react": "^7.36.0", | ||
"eslint-plugin-react-hooks": "^5.1.0-rc.0", | ||
"eslint-plugin-unicorn": "^55.0.0", | ||
"globals": "^15.9.0", | ||
"prettier": "^3.3.3", | ||
"typescript-eslint": "^8.5.0" | ||
}, | ||
"devDependencies": { | ||
"@alcalzone/release-script": "^3.8.0" | ||
}, | ||
"scripts": { | ||
"release": "release-script -y --noPush" | ||
} | ||
"name": "@iobroker/eslint-config", | ||
"version": "0.1.7", | ||
"description": "Eslint config of ioBroker", | ||
"homepage": "https://github.com/ioBroker/ioBroker.eslint-config", | ||
"main": "eslint.config.mjs", | ||
"author": { | ||
"name": "foxriver76", | ||
"url": "www.moritz-heusinger.de", | ||
"email": "info@moritz-heusinger.de" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"files": [ | ||
"eslint.config.mjs", | ||
"prettier.config.mjs", | ||
"README.md" | ||
], | ||
"peerDependencies": { | ||
"@eslint/eslintrc": "^3.1.0", | ||
"@eslint/js": "^9.10.0", | ||
"@typescript-eslint/eslint-plugin": "^8.4.0", | ||
"@typescript-eslint/parser": "^8.4.0", | ||
"eslint": ">=9.10.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-jsdoc": "^50.2.2", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"eslint-plugin-react": "^7.36.0", | ||
"eslint-plugin-react-hooks": "^5.1.0-rc.0", | ||
"eslint-plugin-unicorn": "^55.0.0", | ||
"globals": "^15.9.0", | ||
"prettier": "^3.3.3", | ||
"typescript-eslint": "^8.5.0" | ||
}, | ||
"devDependencies": { | ||
"@alcalzone/release-script": "^3.8.0" | ||
}, | ||
"scripts": { | ||
"release": "release-script -y --noPush" | ||
} | ||
} |