Skip to content

Commit

Permalink
parent changes
Browse files Browse the repository at this point in the history
  • Loading branch information
TateB committed Aug 31, 2022
1 parent 6dfe291 commit de4d529
Show file tree
Hide file tree
Showing 3 changed files with 1,066 additions and 270 deletions.
57 changes: 29 additions & 28 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,31 @@
{
"root": true,
"extends": [
"airbnb",
"airbnb-typescript",
"prettier",
"plugin:prettier/recommended"
],
"plugins": ["@typescript-eslint", "prettier", "jest"],
"parser": "@typescript-eslint/parser",
"overrides": [
{
"files": ["**/*.spec.ts"],
"env": { "jest/globals": true },
"globals": {
"context": "readonly"
},
"plugins": ["jest"],
"extends": ["plugin:jest/recommended"]
}
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"no-console": "off",
"prettier/prettier": "error",
"import/prefer-default-export": "off"
"root": true,
"extends": [
"airbnb-base",
"airbnb-typescript/base",
"prettier",
"plugin:prettier/recommended"
],
"plugins": ["@typescript-eslint", "prettier", "jest"],
"parser": "@typescript-eslint/parser",
"overrides": [
{
"files": ["**/*.spec.ts"],
"env": { "jest/globals": true },
"globals": {
"context": "readonly"
},
"plugins": ["jest"],
"extends": ["plugin:jest/recommended"]
}
}
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"no-console": "off",
"prettier/prettier": "error",
"import/prefer-default-export": "off",
"import/extensions": ["off"]
}
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
"typescript": "^4.7.4"
},
"resolutions": {
"@nomiclabs/hardhat-ethers": "npm:[email protected]"
Expand Down
Loading

0 comments on commit de4d529

Please sign in to comment.