Skip to content

Commit

Permalink
Merge pull request #5 from otovo/mortnod/move-peer-dependencies
Browse files Browse the repository at this point in the history
Move dependencies from peerDependencies to dependencies
  • Loading branch information
rix1 authored Sep 1, 2020
2 parents cf754ca + c522a9b commit 8f4e5da
Show file tree
Hide file tree
Showing 3 changed files with 2,193 additions and 793 deletions.
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,23 +22,23 @@
"url": "https://github.com/otovo/eslint-config-otovo/issues"
},
"homepage": "https://github.com/otovo/eslint-config-otovo#readme",
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"babel-eslint": "^10.0.2",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-flowtype": "^3.11.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.2",
"prettier": "^1.18.2"
},
"devDependencies": {
"np": "^5.0.3"
"np": "^6.5.0"
},
"dependencies": {}
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
}
}
12 changes: 11 additions & 1 deletion typescript/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@ module.exports = {
],
rules: {
'@typescript-eslint/indent': ['error', 2],
'@typescript-eslint/camelcase': false,
'@typescript-eslint/camelcase': 'off',
'import/extensions': [
'error',
'ignorePackages',
{
'js': 'never',
'jsx': 'never',
'ts': 'never',
'tsx': 'never'
}
]
},
settings: {
'import/resolver': {
Expand Down
Loading

0 comments on commit 8f4e5da

Please sign in to comment.