-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #212 from mjmlio/2.8.0
2.8.0
- Loading branch information
Showing
142 changed files
with
3,599 additions
and
5,593 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,20 @@ | ||
{ | ||
"presets": [ | ||
["env", { "targets": { "node": 6 }, "useBuiltIns": true }], | ||
"es2015", | ||
"stage-0", | ||
"react" | ||
], | ||
"plugins": [ | ||
"add-module-exports", | ||
"transform-decorators-legacy", | ||
[ | ||
"module-resolver", | ||
"env", | ||
{ | ||
"root": [ | ||
"app" | ||
] | ||
"loose": true, | ||
"modules": "commonjs", | ||
"targets": { | ||
"electron": "1.8", | ||
"node": "current" | ||
} | ||
} | ||
], | ||
"react", | ||
"stage-0" | ||
], | ||
"env": { | ||
"production": { | ||
"presets": ["react-optimize"], | ||
"plugins": ["babel-plugin-dev-expression"] | ||
}, | ||
"development": { | ||
"plugins": [], | ||
"presets": ["react-hmre"] | ||
}, | ||
"test": { | ||
"plugins": [ | ||
["webpack-loaders", { "config": "webpack.config.test.js", "verbose": false }] | ||
] | ||
} | ||
} | ||
"plugins": [ | ||
["module-resolver", { "root": ["src"] }] | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,57 @@ | ||
{ | ||
"extends": [ | ||
"zavatta", | ||
"zavatta-react", | ||
"prettier", | ||
"prettier/react" | ||
], | ||
"env": { | ||
"browser": true, | ||
"node": true | ||
}, | ||
"parser": "babel-eslint", | ||
"extends": ["airbnb", "prettier", "prettier/react"], | ||
"globals": { | ||
"Promise": false, | ||
"dataLayer": false, | ||
"fetch": false, | ||
"Image": false, | ||
"window": false, | ||
"document": false, | ||
"__MJML_APP_VERSION__": false, | ||
"__MJML_VERSION__": false, | ||
}, | ||
"rules": { | ||
"no-undefined": 0, | ||
"camelcase": 0, | ||
"global-require": 0, | ||
"import/no-extraneous-dependencies": 0, | ||
"import/no-named-as-default": 0, | ||
"import/prefer-default-export": 0, | ||
"jsx-a11y/anchor-is-valid": 0, | ||
"jsx-a11y/label-has-for": 0, | ||
"new-cap": 0, | ||
"no-nested-ternary": 0, | ||
"no-bitwise": 0, | ||
"no-param-reassign": 0, | ||
"no-plusplus": 0, | ||
"no-return-assign": 0, | ||
"no-shadow": 0, | ||
"no-underscore-dangle": 0, | ||
"no-use-before-define": 0, | ||
"no-await-in-loop": 0, | ||
"no-void": 0, | ||
"no-unused-expressions": 0, | ||
"no-case-declarations": 0, | ||
"id-length": 0, | ||
"no-useless-escape": 0, | ||
"consistent-return": 0, | ||
"react/no-multi-comp": 0, | ||
"react/forbid-prop-types": 0, | ||
"react/jsx-curly-brace-presence": 0, | ||
"react/jsx-filename-extension": 0, | ||
"react/jsx-no-target-blank": 0, | ||
"react/prefer-stateless-function": 0, | ||
"react/prop-types": 0, | ||
"react/sort-comp": 0, | ||
"jsx-a11y/iframe-has-title": 0, | ||
"jsx-a11y/no-autofocus": 0, | ||
"jsx-a11y/no-noninteractive-tabindex": 0, | ||
"jsx-a11y/click-events-have-key-events": 0, | ||
"jsx-a11y/no-static-element-interactions": 0, | ||
"jsx-a11y/mouse-events-have-key-events": 0, | ||
"jsx-a11y/alt-text": 0, | ||
"import/first": 0, | ||
"arrow-body-style": 0, | ||
}, | ||
"plugins": [ | ||
"react" | ||
], | ||
"parserOptions": { | ||
"sourceType": "module", | ||
"settings": { | ||
"import/resolver": { | ||
"babel-module": {}, | ||
}, | ||
}, | ||
} |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,4 @@ | ||
# Logs | ||
logs | ||
*.log | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Compiled binary addons (http://nodejs.org/api/addons.html) | ||
build/Release | ||
.eslintcache | ||
|
||
# Dependency directory | ||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git | ||
node_modules | ||
app/node_modules | ||
|
||
# OSX | ||
.DS_Store | ||
|
||
# App packaged | ||
release | ||
app/main.js | ||
app/main.js.map | ||
app/bundle.js | ||
app/bundle.js.map | ||
app/style.css | ||
app/style.css.map | ||
dist | ||
main.js | ||
main.js.map | ||
|
||
.idea | ||
dist/ | ||
node_modules/ | ||
thumbs.db |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
printWidth: 100 | ||
semi: false | ||
singleQuote: true | ||
trailingComma: all |
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
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
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
Empty file.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.