aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-05-10 21:22:13 +0800
committerFabio Berger <me@fabioberger.com>2018-05-10 21:22:13 +0800
commit28e83c21e239ff790c8a9844ee1c23542c8c6c3f (patch)
treeb9ca9628ed6349873e87b9bbc09184f5f10e6a85
parent33ed5cd43760cf7e0baac493a780bdba4110f046 (diff)
downloaddexon-sol-tools-28e83c21e239ff790c8a9844ee1c23542c8c6c3f.tar
dexon-sol-tools-28e83c21e239ff790c8a9844ee1c23542c8c6c3f.tar.gz
dexon-sol-tools-28e83c21e239ff790c8a9844ee1c23542c8c6c3f.tar.bz2
dexon-sol-tools-28e83c21e239ff790c8a9844ee1c23542c8c6c3f.tar.lz
dexon-sol-tools-28e83c21e239ff790c8a9844ee1c23542c8c6c3f.tar.xz
dexon-sol-tools-28e83c21e239ff790c8a9844ee1c23542c8c6c3f.tar.zst
dexon-sol-tools-28e83c21e239ff790c8a9844ee1c23542c8c6c3f.zip
Remove uneeded tslint config
-rw-r--r--packages/abi-gen/package.json2
-rw-r--r--packages/fill-scenarios/package.json2
-rw-r--r--packages/migrations/package.json2
-rw-r--r--packages/monorepo-scripts/package.json2
-rw-r--r--packages/sol-cov/package.json2
-rw-r--r--packages/testnet-faucets/package.json2
-rw-r--r--packages/types/package.json2
-rw-r--r--packages/utils/package.json2
-rw-r--r--packages/web3-wrapper/package.json2
9 files changed, 9 insertions, 9 deletions
diff --git a/packages/abi-gen/package.json b/packages/abi-gen/package.json
index 0ee7e1979..c1f5060af 100644
--- a/packages/abi-gen/package.json
+++ b/packages/abi-gen/package.json
@@ -6,7 +6,7 @@
"types": "lib/index.d.ts",
"scripts": {
"build:watch": "tsc -w",
- "lint": "tslint --project . 'src/**/*.ts'",
+ "lint": "tslint --project .,
"clean": "shx rm -rf lib scripts",
"build": "tsc && copyfiles -u 2 './lib/monorepo_scripts/**/*' ./scripts",
"manual:postpublish": "yarn build; node ./scripts/postpublish.js"
diff --git a/packages/fill-scenarios/package.json b/packages/fill-scenarios/package.json
index bb2bcef13..12e307aa4 100644
--- a/packages/fill-scenarios/package.json
+++ b/packages/fill-scenarios/package.json
@@ -10,7 +10,7 @@
"generate_contract_wrappers": "node ../abi-gen/lib/index.js --abis 'src/compact_artifacts/@(Exchange|Token|TokenTransferProxy|EtherToken).json' --template ../contract_templates/contract.handlebars --partials '../contract_templates/partials/**/*.handlebars' --output src/generated_contract_wrappers --backend ethers && prettier --write 'src/generated_contract_wrappers/**.ts'",
"build": "tsc && copyfiles -u 2 './src/compact_artifacts/**/*.json' ./lib/compact_artifacts && copyfiles -u 3 './lib/src/monorepo_scripts/**/*' ./scripts",
"clean": "shx rm -rf lib scripts",
- "lint": "tslint --project . 'src/**/*.ts'",
+ "lint": "tslint --project .,
"manual:postpublish": "yarn build; node ./scripts/postpublish.js"
},
"license": "Apache-2.0",
diff --git a/packages/migrations/package.json b/packages/migrations/package.json
index 8c85aa337..2da5b7572 100644
--- a/packages/migrations/package.json
+++ b/packages/migrations/package.json
@@ -8,7 +8,7 @@
"build:watch": "tsc -w",
"build": "tsc",
"clean": "shx rm -rf lib",
- "lint": "tslint --project . 'src/**/*.ts'",
+ "lint": "tslint --project .,
"migrate": "run-s build compile script:migrate",
"script:migrate": "node ./lib/migrate.js",
"copy_artifacts": "copyfiles 'src/artifacts/**/*' ./lib",
diff --git a/packages/monorepo-scripts/package.json b/packages/monorepo-scripts/package.json
index a6b6f2d15..b1b3efc57 100644
--- a/packages/monorepo-scripts/package.json
+++ b/packages/monorepo-scripts/package.json
@@ -6,7 +6,7 @@
"types": "lib/index.d.ts",
"scripts": {
"build:watch": "tsc -w",
- "lint": "tslint --project . 'src/**/*.ts'",
+ "lint": "tslint --project .,
"clean": "shx rm -rf lib",
"build": "tsc",
"test:publish": "run-s build script:publish",
diff --git a/packages/sol-cov/package.json b/packages/sol-cov/package.json
index 4eb1147d7..004cc5f54 100644
--- a/packages/sol-cov/package.json
+++ b/packages/sol-cov/package.json
@@ -6,7 +6,7 @@
"types": "lib/src/index.d.ts",
"scripts": {
"build:watch": "tsc -w",
- "lint": "tslint --project . 'src/**/*.ts'",
+ "lint": "tslint --project .,
"test": "run-s clean build compile_test run_mocha",
"test:coverage": "nyc npm run test --all && yarn coverage:report:lcov",
"coverage:report:lcov": "nyc report --reporter=text-lcov > coverage/lcov.info",
diff --git a/packages/testnet-faucets/package.json b/packages/testnet-faucets/package.json
index 481770310..0f5682626 100644
--- a/packages/testnet-faucets/package.json
+++ b/packages/testnet-faucets/package.json
@@ -9,7 +9,7 @@
"build": "node ../../node_modules/gulp/bin/gulp.js build",
"dev": "node ../../node_modules/gulp/bin/gulp.js run",
"start": "node ./bin/server.js",
- "lint": "tslint --project . 'src/**/*.ts'",
+ "lint": "tslint --project .,
"clean": "shx rm -rf bin"
},
"author": "Fabio Berger",
diff --git a/packages/types/package.json b/packages/types/package.json
index 0971f424e..77650afae 100644
--- a/packages/types/package.json
+++ b/packages/types/package.json
@@ -8,7 +8,7 @@
"build:watch": "tsc -w",
"build": "tsc && copyfiles -u 2 './lib/monorepo_scripts/**/*' ./scripts",
"clean": "shx rm -rf lib scripts",
- "lint": "tslint --project . 'src/**/*.ts'",
+ "lint": "tslint --project .,
"manual:postpublish": "yarn build; node ./scripts/postpublish.js"
},
"license": "Apache-2.0",
diff --git a/packages/utils/package.json b/packages/utils/package.json
index 496ea1fb0..2b47a688b 100644
--- a/packages/utils/package.json
+++ b/packages/utils/package.json
@@ -8,7 +8,7 @@
"build:watch": "tsc -w",
"build": "tsc && copyfiles -u 2 './lib/monorepo_scripts/**/*' ./scripts",
"clean": "shx rm -rf lib scripts",
- "lint": "tslint --project . 'src/**/*.ts'",
+ "lint": "tslint --project .,
"manual:postpublish": "yarn build; node ./scripts/postpublish.js"
},
"license": "Apache-2.0",
diff --git a/packages/web3-wrapper/package.json b/packages/web3-wrapper/package.json
index 3ee9631cc..b75bf8a56 100644
--- a/packages/web3-wrapper/package.json
+++ b/packages/web3-wrapper/package.json
@@ -8,7 +8,7 @@
"build:watch": "tsc -w",
"build": "tsc && copyfiles -u 3 './lib/src/monorepo_scripts/**/*' ./scripts",
"clean": "shx rm -rf lib scripts",
- "lint": "tslint --project . 'src/**/*.ts'",
+ "lint": "tslint --project .,
"test": "run-s clean build run_mocha",
"test:circleci": "yarn test:coverage",
"run_mocha": "mocha lib/test/**/*_test.js --bail --exit",