Updated ESLint

This commit is contained in:
squidfunk 2018-12-27 21:36:22 +01:00
parent f145c14e4d
commit 18221a7d1f
6 changed files with 2344 additions and 2315 deletions

View File

@ -30,6 +30,10 @@ end_of_line = lf
insert_final_newline = true insert_final_newline = true
trim_trailing_whitespace = true trim_trailing_whitespace = true
# Makefiles
[*.py]
indent_size = 4
# Makefiles # Makefiles
[Makefile] [Makefile]
indent_style = tab indent_style = tab

View File

@ -18,6 +18,9 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE. # IN THE SOFTWARE.
# Python
/venv
# Files generated by build # Files generated by build
/build /build
/material /material

View File

@ -97,6 +97,7 @@
"no-array-constructor": 2, "no-array-constructor": 2,
"no-alert": 2, "no-alert": 2,
"no-caller": 2, "no-caller": 2,
"no-cond-assign": 0,
"no-confusing-arrow": [2, { "no-confusing-arrow": [2, {
"allowParens": false "allowParens": false
}], }],

View File

@ -2,7 +2,7 @@
**MIT License** **MIT License**
Copyright © 2016 - 2017 Martin Donath Copyright © 2016 - 2018 Martin Donath
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to of this software and associated documentation files (the "Software"), to

4647
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -48,7 +48,7 @@
"custom-event-polyfill": "^1.0.6", "custom-event-polyfill": "^1.0.6",
"customizr": "^1.0.0-alpha", "customizr": "^1.0.0-alpha",
"escape-string-regexp": "^1.0.5", "escape-string-regexp": "^1.0.5",
"eslint": "^4.3.0", "eslint": "^5.11.1",
"event-hooks-webpack-plugin": "^1.0.0", "event-hooks-webpack-plugin": "^1.0.0",
"expose-loader": "^0.7.4", "expose-loader": "^0.7.4",
"extract-text-webpack-plugin": "^3.0.2", "extract-text-webpack-plugin": "^3.0.2",