Skip to content

Commit 102c229

Browse files
committed
Merge ignition repo into hardhat
2 parents 0469eb2 + e7813b1 commit 102c229

File tree

677 files changed

+110265
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

677 files changed

+110265
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
extends: [`${__dirname}/../../config/eslint/eslintrc.js`],
3+
parserOptions: {
4+
project: `${__dirname}/tsconfig.json`,
5+
sourceType: "module",
6+
},
7+
ignorePatterns: [".eslintrc.js", "./dist/**/*", "./node_modules/**/*"],
8+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist/
2+
etc/
3+
temp/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"require": ["ts-node/register/transpile-only"],
3+
"file": "./test/setup.ts",
4+
"timeout": 25000,
5+
"exclude": [
6+
"./test/helpers/**/*",
7+
"./test-integrations/fixture-projects/**/*",
8+
"./test-integrations/helpers/**/*"
9+
]
10+
}
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
coverage/
2+
.nyc_output/
3+
*.tsbuildinfo
4+
**/.eslintrc.js
5+
.mocharc.json
6+
.nycrc
7+
.prettierignore
8+
.prettierrc
9+
src/
10+
!dist
11+
!dist/src
12+
dist/test
13+
dist/test-integrations
14+
test/
15+
temp
16+
test-integrations/

packages/hardhat-ignition-core/.nycrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"extends": "@istanbuljs/nyc-config-typescript",
3+
"check-coverage": true,
4+
"statements": 75,
5+
"branches": 65,
6+
"functions": 70,
7+
"lines": 75,
8+
"all": true,
9+
"include": ["src/**/*.ts"],
10+
"reporter": ["html", "lcov", "text", "text-summary"],
11+
"report-dir": "coverage"
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/node_modules
2+
/dist
3+
/coverage
4+
/.nyc_output
5+
/temp
6+
/test-integrations/fixture-projects/*/artifacts
7+
/test-integrations/fixture-projects/*/cache
8+
/test/mocks/*
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)