initial github commit

This commit is contained in:
2017-12-21 11:51:55 +01:00
commit 9936a38843
413 changed files with 12623 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module'
},
extends: 'eslint:recommended',
env: {
browser: true
},
globals: {
moment: true,
t: true,
is_translation_path: true
},
rules: {
'no-cond-assign': 0
}
};