-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(eslint-config-kodefox): update eslint to latest deps (#717)
* update deps * update to latest eslint and prettier * update supporting deps * update eslint rules * fix(eslint-config-kodefox): remove node from eslint base rule * chore(eslint-config-kodefox): ignore vscode settings * chore(eslint-config-kodefox): set parserOptions ecmaVersion explicitly * feat(eslint-config-kodefox): add node.js eslint rule * chore(eslint-config-kodefox): update package version
- Loading branch information
Showing
5 changed files
with
1,283 additions
and
1,145 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/node_modules | ||
.vscode |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
extends: 'kodefox', | ||
env: { | ||
node: true, | ||
}, | ||
}; |
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,35 +1,36 @@ | ||
{ | ||
"name": "eslint-config-kodefox", | ||
"version": "1.2.0", | ||
"version": "2.0.0", | ||
"repository": "github:kodefox/infra", | ||
"main": "index.js", | ||
"files": [ | ||
"index.js", | ||
"react.js", | ||
"react-native.js" | ||
"react-native.js", | ||
"node.js" | ||
], | ||
"author": "[email protected]", | ||
"license": "MIT", | ||
"peerDependencies": { | ||
"eslint": ">=7.30.0", | ||
"prettier": ">=2.3.2" | ||
"eslint": ">=8.56.0", | ||
"prettier": ">=3.1.1" | ||
}, | ||
"optionalDependencies": { | ||
"eslint-plugin-react": "^7.21.5", | ||
"eslint-plugin-react-hooks": "^4.2.0", | ||
"eslint-plugin-react-native": "^3.10.0" | ||
"eslint-plugin-react": "^7.33.2", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"eslint-plugin-react-native": "^4.1.0" | ||
}, | ||
"dependencies": { | ||
"@typescript-eslint/eslint-plugin": "^4.28.2", | ||
"@typescript-eslint/parser": "^4.28.0", | ||
"eslint-config-prettier": "^6.15.0", | ||
"@typescript-eslint/eslint-plugin": "^6.18.1", | ||
"@typescript-eslint/parser": "^6.18.1", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-eslint-comments": "^3.2.0", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-prettier": "^3.1.4" | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-prettier": "^5.1.3" | ||
}, | ||
"devDependencies": { | ||
"eslint": "^7.30.0", | ||
"prettier": "^2.3.2" | ||
"eslint": "^8.56.0", | ||
"prettier": "^3.1.1" | ||
}, | ||
"prettier": { | ||
"bracketSpacing": true, | ||
|
Oops, something went wrong.