Last active
July 22, 2018 12:49
-
-
Save rogaldh/4a4d1f8d3328acb3ed985b23a5298516 to your computer and use it in GitHub Desktop.
[Flow project](https://gitlab.com/rogaldh/flow-scaffold)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"presets": ["flow"] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root = true | |
[*] | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": [ | |
"strict-flowtype" | |
], | |
"plugins": [ | |
"flowtype-errors" | |
], | |
"rules": { | |
"flowtype-errors/show-errors": 2, | |
"flowtype-errors/enforce-min-coverage": [2, 50] | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ignore] | |
[include] | |
[libs] | |
[lints] | |
[options] | |
[strict] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "flow-project", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "", | |
"license": "MIT", | |
"dependencies": {}, | |
"devDependencies": { | |
"babel-preset-flow": "^6.23.0", | |
"eslint": "^4.13.1", | |
"eslint-config-strict-flowtype": "^2.0.0", | |
"eslint-plugin-flowtype-errors": "^3.3.6", | |
"flow-bin": "^0.61.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment