Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move from Make to Furipota #148

Merged
merged 13 commits into from
Jul 23, 2017
Merged
3 changes: 2 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"max-len": ["warn", 120],
"prefer-reflect": "off",
"no-undef": "error",
"no-shadow": ["error", { "allow": ["_"] }]
"no-shadow": ["error", { "allow": ["_"] }],
"linebreak-style": "off"
}
}
11 changes: 11 additions & 0 deletions .eslintrc.travis.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"extends": "origamitower",
"rules": {
"no-trailing-spaces": "off",
"new-cap": "off",
"max-len": ["warn", 120],
"prefer-reflect": "off",
"no-undef": "error",
"no-shadow": ["error", { "allow": ["_"] }]
}
}
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
[submodule "metamagical"]
path = metamagical
url = https://github.com/origamitower/metamagical.git
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: node_js
node_js:
- "6"
- "8"
- "7"
env:
global:
- NODE_ENV=test
script:
- make travis-tests
- npm run travis
161 changes: 0 additions & 161 deletions Makefile

This file was deleted.

Loading