Skip to content

Commit

Permalink
add: layout bot ui
Browse files Browse the repository at this point in the history
  • Loading branch information
DOANDUYDAT authored and juzser committed Dec 24, 2019
1 parent 873cf8c commit f2ba7bf
Show file tree
Hide file tree
Showing 22 changed files with 15,946 additions and 21 deletions.
7 changes: 4 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
root = true

[*]
[*.{js,jsx,ts,tsx,vue}]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*]
charset = utf-8

[*.md]
trim_trailing_whitespace = false
14 changes: 7 additions & 7 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
},
extends: [
'plugin:vue/essential',
'@vue/standard',
'@vue/standard'
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
Expand All @@ -17,14 +17,14 @@ module.exports = {
overrides: [
{
files: [
'**/__tests__/*.{j,t}s?(x)',
'**/__tests__/*.{j,t}s?(x)'
],
env: {
jest: true,
},
},
],
};
jest: true
}
}
]
}

// "plugin:vue/recommended",
// "eslint:recommended",
Expand Down
4 changes: 2 additions & 2 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
presets: [["@vue/app", { useBuiltIns: false }]]
};
presets: [['@vue/app', { useBuiltIns: false }]]
}
4 changes: 2 additions & 2 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
extends: ["@commitlint/config-conventional"]
};
extends: ['@commitlint/config-conventional']
}
Loading

0 comments on commit f2ba7bf

Please sign in to comment.