Skip to content

Commit

Permalink
Merge pull request #93 from devinit/development
Browse files Browse the repository at this point in the history
v1.1.0
  • Loading branch information
edwinmp authored Aug 17, 2018
2 parents 2aa8338 + 94637a5 commit 4d1583d
Show file tree
Hide file tree
Showing 66 changed files with 15,954 additions and 7,951 deletions.
9 changes: 9 additions & 0 deletions .cache
Original file line number Diff line number Diff line change
Expand Up @@ -214,3 +214,12 @@ SELECT value FROM fact.gni_usd_2015 WHERE di_id = 'IT' AND year = 2015:dw
country-profile/flow-type.csv:cms
SELECT flow_name, year,flow_type,direction,value FROM data_series.intl_flows_donors WHERE di_id = 'IT' AND year >= 2000 AND year <= 2015 AND value > 0 GROUP BY flow_name,year,flow_type,direction,value:dw
SELECT flow_name, year,flow_type,direction,value FROM data_series.intl_flows_donors WHERE di_id = 'IT' AND year = 2015 AND direction = 'out' AND value > 0 GROUP BY flow_name,year,flow_type,direction,value:dw
SELECT * FROM data_series.2013_p20_population WHERE year = 2013 AND value IS NOT NULL:dw
SELECT * FROM data_series."2013_p20_population" WHERE year >= 1990 AND year <= 2013 AND value IS NOT NULL:dw
SELECT * FROM data_series."2013_p20_population" WHERE year = 2013 AND value IS NOT NULL:dw
SELECT * FROM "data_series".“2013_p20_population” WHERE year = 2013 AND value IS NOT NULL:dw
SELECT * FROM data_series.“2013_p20_population” WHERE year = 2013 AND value IS NOT NULL:dw
SELECT * FROM "data_series"."2013_p20_population" WHERE year = 2013 AND value IS NOT NULL:dw
SELECT * FROM "data_series"."depth_of_extreme_poverty_190" WHERE year = 2013 AND value IS NOT NULL:dw
SELECT * FROM "data_series"."poverty_310" WHERE year >= 1981 AND year <= 2013 AND value IS NOT NULL:dw
SELECT * FROM "spotlight_on_uganda_2017"."uganda_life_expectancy" WHERE year = 2014 AND value IS NOT NULL:dw
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
charset=utf-8
end_of_line=lf
trim_trailing_whitespace = true
insert_final_newline = true
indent_style=space
indent_size=2
10 changes: 10 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"printWidth": 100,
"parser": "typescript",
"semi": true,
"singleQuote": true,
"jsxBracketSameLine": true,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "avoid"
}
11 changes: 7 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
language: node_js
node_js:
- v9
before_install:
- npm i -g npm
- npm --version
install:
- yarn
- npm install
script:
- npm run lint
- npm run build
- npm run gqlToTs
cache:
yarn: true
directories:
- node_modules
sudo: false
notifications:
slack: devinitorg:TFrmOb61t4X0PRFdZyHBU04F
slack: devinitorg:TFrmOb61t4X0PRFdZyHBU04F
1 change: 0 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"recommendations": [
"egamma.TSLint",
"kumar-harsh.graphql-for-vscode"
]
}
7 changes: 4 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules":true,
"**/node_modules": true,
"**/lib": false,
"**/coverage": true
}
},
"tslint.configFile": "./tslint.strict.json"
}
Loading

0 comments on commit 4d1583d

Please sign in to comment.