Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias <ilovemilk@wusa.io>2020-12-02 22:10:48 +0300
committerGitHub <noreply@github.com>2020-12-02 22:10:48 +0300
commit401060f86709ad2ddf878e40d769d2b0ec451be3 (patch)
tree9226a7fb10a6366e1885f1cbb55dce95b4709173 /.eslintrc.js
parent22a21e4fd20c8c973d8f85d181e60b36e019f1c7 (diff)
parentedd1a957fc3c031ee1245702820bbd4d7c5348d9 (diff)
Merge pull request #35 from undo-ransomware/feature/rework-ui
Rework UI with VueJS
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js13
1 files changed, 13 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000..a1690d0
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,13 @@
+module.exports = {
+ plugins: ['@babel/plugin-syntax-dynamic-import'],
+ presets: [
+ [
+ '@babel/preset-env',
+ {
+ targets: {
+ browsers: ['last 2 versions', 'ie >= 11']
+ }
+ }
+ ]
+ ]
+}