feat: first tool base

This commit is contained in:
Corentin Thomasset 2021-02-06 11:14:28 +01:00
parent b0e232bc77
commit 02dafd6a2f
No known key found for this signature in database
GPG key ID: DBD997E935996158
15 changed files with 326 additions and 168 deletions

View file

@ -10,6 +10,8 @@ module.exports = {
],
// add your custom rules here
rules: {
'space-before-function-paren': 'off'
'space-before-function-paren': 'off',
'object-curly-spacing': 'off',
'no-undef': 'off' // will be catch by the tsc compiler
}
}