File tree 6 files changed +52
-3
lines changed
6 files changed +52
-3
lines changed Original file line number Diff line number Diff line change
1
+
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " solium:all" ,
3
+ "rules" : {
4
+ "imports-on-top" : [" error" ],
5
+ "variable-declarations" : [" error" ],
6
+ "array-declarations" : [" error" ],
7
+ "operator-whitespace" : [" error" ],
8
+ "lbrace" : [" error" ],
9
+ "mixedcase" : 0 ,
10
+ "camelcase" : [" error" ],
11
+ "uppercase" : 0 ,
12
+ "no-empty-blocks" : [" error" ],
13
+ "no-unused-vars" : [" error" ],
14
+ "quotes" : [" error" ],
15
+ "indentation" : 0 ,
16
+ "whitespace" : [" error" ],
17
+ "deprecated-suicide" : [" error" ],
18
+ "arg-overflow" : [" error" , 8 ],
19
+ "pragma-on-top" : [" error" ],
20
+ "security/enforce-explicit-visibility" : [" error" ],
21
+ "error-reason" : 0
22
+ }
23
+ }
Original file line number Diff line number Diff line change 15
15
"bootstrap:ci" : " npm run bootstrap -- --no-ci" ,
16
16
"clean" : " git clean -fdxi apps" ,
17
17
"test" : " npm run test:all" ,
18
- "test:all" : " lerna run --scope=@aragonone/apps-* --scope=@aragonone/voting-connectors- * --concurrency=1 --stream test" ,
18
+ "test:all" : " lerna run --scope=@aragonone/* --concurrency=1 --stream test" ,
19
19
"test:token-wrapper" : " lerna run --scope=@aragonone/apps-token-wrapper --stream test" ,
20
20
"test:voting-aggregator" : " lerna run --scope=@aragonone/apps-voting-aggregator --stream test" ,
21
21
"test:shared" : " lerna run --scope=@aragonone/voting-connectors-* --stream test" ,
22
22
"coverage" : " npm run coverage:all" ,
23
- "coverage:all" : " lerna run --scope=@aragonone/apps-* --scope=@aragonone/voting-connectors- * --concurrency=1 --stream coverage" ,
23
+ "coverage:all" : " lerna run --scope=@aragonone/* --concurrency=1 --stream coverage" ,
24
24
"coverage:token-wrapper" : " lerna run --scope=@aragonone/apps-token-wrapper --stream coverage" ,
25
25
"coverage:voting-aggregator" : " lerna run --scope=@aragonone/apps-voting-aggregator --stream coverage" ,
26
26
"coverage:shared" : " lerna run --scope=@aragonone/voting-connectors-* --stream coverage" ,
27
- "lint" : " lerna run --scope=@aragonone/apps- * lint"
27
+ "lint" : " lerna run --scope=@aragonone/* lint"
28
28
}
29
29
}
Original file line number Diff line number Diff line change
1
+
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " solium:all" ,
3
+ "rules" : {
4
+ "imports-on-top" : [" error" ],
5
+ "variable-declarations" : [" error" ],
6
+ "array-declarations" : [" error" ],
7
+ "operator-whitespace" : [" error" ],
8
+ "lbrace" : [" error" ],
9
+ "mixedcase" : 0 ,
10
+ "camelcase" : [" error" ],
11
+ "uppercase" : 0 ,
12
+ "no-empty-blocks" : [" error" ],
13
+ "no-unused-vars" : [" error" ],
14
+ "quotes" : [" error" ],
15
+ "indentation" : 0 ,
16
+ "whitespace" : [" error" ],
17
+ "deprecated-suicide" : [" error" ],
18
+ "arg-overflow" : [" error" , 8 ],
19
+ "pragma-on-top" : [" error" ],
20
+ "security/enforce-explicit-visibility" : [" error" ],
21
+ "error-reason" : 0
22
+ }
23
+ }
Original file line number Diff line number Diff line change 13
13
],
14
14
"scripts" : {
15
15
"compile" : " truffle compile" ,
16
+ "lint" : " solium --dir ./contracts" ,
16
17
"test" : " TRUFFLE_TEST=true npm run ganache-cli:test" ,
17
18
"coverage" : " SOLIDITY_COVERAGE=true npm run ganache-cli:test" ,
18
19
"ganache-cli:test" : " ./node_modules/@aragon/test-helpers/ganache-cli.sh" ,
You can’t perform that action at this time.
0 commit comments